body{
    margin:0;
    background:#07162d;
    color:#fff;
    font-family:'Poppins',sans-serif;
}

.container{
    width:90%;
    margin:auto;
}

.navbar{

    position:fixed;
    top:0;
    left:0;

    width:100%;

    background:#07162d;

    border-bottom:1px solid rgba(255,255,255,.08);

    z-index:999;
}

.navbar .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 0;
}

.login-logo-image {
    width: 72px;
    height: 72px;
    object-fit: contain;
    display: block;
    margin: 0 auto 12px;
}

.nav-menu{

    list-style:none;

    display:flex;

    gap:35px;
}

.nav-menu a{

    color:white;

    text-decoration:none;

    font-weight:500;
}

.connect-btn{

    background:linear-gradient(45deg,#FFD700,#FFC107);

    color:#111;

    padding:12px 24px;

    border-radius:40px;

    text-decoration:none;

    font-weight:600;
}



.hero{

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;
}

.hero-logo{

    width:180px;

    margin-bottom:25px;
}

.hero h1{

    font-size:58px;

    margin-bottom:15px;
}

.hero h2{

    color:#FFD700;

    margin-bottom:20px;
}

.hero p{

    font-size:22px;

    margin-bottom:35px;
}

.hero-btn{

    background:#FFD700;

    color:#111;

    padding:16px 38px;

    border-radius:50px;

    text-decoration:none;

    font-size:18px;

    font-weight:600;
}

.about-sft{
    padding:100px 0;
    background:#0a1d38;
}

.section-heading{
    text-align:center;
    max-width:750px;
    margin:0 auto 60px;
}

.section-label{
    color:#ffd700;
    font-size:14px;
    font-weight:600;
    letter-spacing:3px;
}

.section-heading h2{
    font-size:42px;
    margin:15px 0;
}

.section-heading p{
    color:#b8c4d6;
    font-size:17px;
    line-height:1.8;
}

.section-heading h3{
    color:#ffd700;
    font-size:22px;
    margin-top:20px;
}

.about-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.about-card{
    padding:35px 25px;
    text-align:center;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:18px;
    transition:0.3s;
}

.about-card:hover{
    transform:translateY(-8px);
    border-color:rgba(255,215,0,0.4);
}

.about-card i{
    font-size:38px;
    color:#ffd700;
    margin-bottom:20px;
}

.about-card h3{
    font-size:22px;
    margin-bottom:12px;
}

.about-card p{
    color:#aebbd0;
    line-height:1.7;
}

.why-sft{
    padding:100px 0;
    background:#07162d;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.why-card{
    padding:40px 30px;
    text-align:center;

    background:rgba(255,255,255,0.035);

    border:1px solid rgba(255,255,255,0.08);

    border-radius:20px;

    transition:all 0.3s ease;
}

.why-card:hover{
    transform:translateY(-8px);

    border-color:rgba(255,215,0,0.45);

    box-shadow:0 15px 40px rgba(0,0,0,0.25);
}

.why-icon{
    width:70px;
    height:70px;

    margin:0 auto 22px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:18px;

    background:rgba(255,215,0,0.08);

    border:1px solid rgba(255,215,0,0.2);
}

.why-icon i{
    font-size:30px;
    color:#ffd700;
}

.why-card h3{
    font-size:22px;
    margin-bottom:14px;
}

.why-card p{
    color:#aebbd0;
    line-height:1.7;
}


@media(max-width:768px){

    .why-grid{
        grid-template-columns:1fr;
    }

    .why-sft{
        padding:70px 20px;
    }

}

.roadmap-section{
    padding:100px 0;
    background:#0a1d38;
}

.roadmap{
    max-width:900px;
    margin:0 auto;
    position:relative;
}

.roadmap::before{
    content:"";
    position:absolute;
    left:40px;
    top:0;
    bottom:0;
    width:2px;
    background:rgba(255,215,0,0.25);
}

.roadmap-item{
    position:relative;
    display:flex;
    gap:35px;
    margin-bottom:45px;
}

.roadmap-number{
    position:relative;
    z-index:2;

    min-width:80px;
    height:80px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#07162d;

    border:2px solid #ffd700;

    color:#ffd700;

    font-size:20px;
    font-weight:700;

    box-shadow:0 0 20px rgba(255,215,0,0.15);
}

.roadmap-content{
    flex:1;

    padding:28px 30px;

    background:rgba(255,255,255,0.035);

    border:1px solid rgba(255,255,255,0.08);

    border-radius:18px;

    transition:all 0.3s ease;
}

.roadmap-content:hover{
    transform:translateX(8px);

    border-color:rgba(255,215,0,0.4);
}

.roadmap-status{
    color:#ffd700;

    font-size:12px;

    font-weight:700;

    letter-spacing:2px;
}

.roadmap-content h3{
    font-size:23px;

    margin:10px 0 12px;
}

.roadmap-content p{
    color:#aebbd0;

    line-height:1.7;

    margin:0;
}


@media(max-width:768px){

    .roadmap-section{
        padding:70px 20px;
    }

    .roadmap::before{
        left:30px;
    }

    .roadmap-item{
        gap:20px;
    }

    .roadmap-number{
        min-width:60px;
        width:60px;
        height:60px;

        font-size:16px;
    }

    .roadmap-content{
        padding:22px;
    }

    .roadmap-content h3{
        font-size:20px;
    }

}

.faq-section{
    padding:100px 0;
    background:#07162d;
}

.faq-list{
    max-width:850px;
    margin:0 auto;
}

.faq-item{
    margin-bottom:15px;

    border:1px solid rgba(255,255,255,0.08);

    border-radius:15px;

    background:rgba(255,255,255,0.035);

    overflow:hidden;
}

.faq-question{
    width:100%;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:22px 25px;

    border:0;

    background:transparent;

    color:#fff;

    font-family:inherit;

    font-size:16px;

    font-weight:600;

    text-align:left;

    cursor:pointer;
}

.faq-question i{
    color:#ffd700;

    transition:transform 0.3s ease;
}

.faq-answer{
    max-height:0;

    overflow:hidden;

    transition:max-height 0.35s ease;
}

.faq-answer p{
    margin:0;

    padding:0 25px 22px;

    color:#aebbd0;

    line-height:1.7;
}

.faq-item.active{
    border-color:rgba(255,215,0,0.35);
}

.faq-item.active .faq-question i{
    transform:rotate(180deg);
}

.faq-item.active .faq-answer{
    max-height:200px;
}

.contact-section{
    padding:100px 0;
    background:#0a1d38;
}

.contact-card{
    max-width:650px;
    margin:0 auto;

    padding:50px 30px;

    text-align:center;

    background:rgba(255,255,255,0.04);

    border:1px solid rgba(255,255,255,0.09);

    border-radius:22px;

    box-shadow:0 20px 60px rgba(0,0,0,0.2);
}

.contact-icon{
    width:75px;
    height:75px;

    margin:0 auto 25px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:rgba(255,215,0,0.08);

    border:1px solid rgba(255,215,0,0.25);
}

.contact-icon i{
    font-size:32px;
    color:#ffd700;
}

.contact-card h3{
    font-size:25px;
    margin-bottom:12px;
}

.contact-card p{
    color:#aebbd0;
    line-height:1.7;
}

.contact-email{
    display:block;

    margin:18px 0 28px;

    color:#ffd700;

    font-size:19px;
    font-weight:600;

    text-decoration:none;
}

.contact-email:hover{
    text-decoration:underline;
}

.contact-btn{
    display:inline-flex;

    align-items:center;
    gap:10px;

    padding:14px 28px;

    border-radius:40px;

    background:#ffd700;

    color:#111;

    text-decoration:none;

    font-weight:600;

    transition:0.3s;
}

.contact-btn:hover{
    transform:translateY(-3px);

    box-shadow:0 10px 25px rgba(255,215,0,0.2);
}


@media(max-width:768px){

    .contact-section{
        padding:70px 20px;
    }

    .contact-card{
        padding:40px 20px;
    }

    .contact-email{
        font-size:16px;
    }

}

.site-footer{
    padding:70px 0 25px;
    background:#050f21;
    border-top:1px solid rgba(255,255,255,0.08);
}

.footer-main{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:50px;
    padding-bottom:50px;
}

.footer-brand h2{
    color:#ffd700;
    font-size:28px;
    margin-bottom:8px;
}

.footer-brand p{
    color:#ffffff;
    margin-bottom:12px;
}

.footer-brand span{
    color:#ffd700;
    font-size:14px;
    font-weight:600;
}

.footer-links h3,
.footer-contact h3{
    color:#ffffff;
    margin-bottom:20px;
}

.footer-links a,
.footer-contact a{
    display:block;
    color:#aebbd0;
    text-decoration:none;
    margin-bottom:12px;
    transition:0.3s;
}

.footer-links a:hover,
.footer-contact a:hover{
    color:#ffd700;
}

.footer-bottom{
    padding-top:25px;

    border-top:1px solid rgba(255,255,255,0.08);

    display:flex;
    justify-content:space-between;
    gap:20px;

    color:#7f8da3;

    font-size:13px;
}

.footer-bottom p{
    margin:0;
}


@media(max-width:768px){

    .site-footer{
        padding:55px 20px 25px;
    }

    .footer-main{
        grid-template-columns:1fr;
        gap:35px;
    }

    .footer-bottom{
        flex-direction:column;
        text-align:center;
    }

}

/* ==============================
   SFTSHOPS LOGIN PAGE
   ============================== */

.login-page{
    min-height:100vh;

    margin:0;

    display:flex;

    align-items:center;

    justify-content:center;

    background:
        radial-gradient(
            circle at center,
            rgba(35,80,180,0.25),
            transparent 55%
        ),
        #050f21;

    color:#fff;

    font-family:'Poppins',sans-serif;
}


.login-container{
    width:100%;

    max-width:520px;

    padding:30px;
}


.login-card{

    background:
        linear-gradient(
            145deg,
            rgba(20,45,85,0.95),
            rgba(5,20,42,0.98)
        );

    border:1px solid rgba(255,215,0,0.15);

    border-radius:25px;

    padding:45px 40px;

    box-shadow:
        0 25px 80px rgba(0,0,0,0.45);

    text-align:center;
}


.login-logo{
    margin-bottom:35px;
}


.login-logo-mark{

    width:75px;
    height:75px;

    margin:0 auto 15px;

    display:flex;

    align-items:center;
    justify-content:center;

    border-radius:22px;

    background:
        linear-gradient(
            135deg,
            #ffd700,
            #b77b00
        );

    color:#07162d;

    font-size:42px;

    font-weight:800;

    box-shadow:
        0 0 35px rgba(255,215,0,0.25);
}


.login-logo h1{

    margin:0;

    color:#ffd700;

    font-size:30px;

    letter-spacing:1px;
}


.login-logo p{

    margin:6px 0 0;

    color:#aebbd0;

    font-size:13px;
}


.login-label{

    color:#ffd700;

    font-size:12px;

    font-weight:700;

    letter-spacing:3px;
}


.login-content h2{

    margin:12px 0 10px;

    font-size:30px;
}


.login-description{

    max-width:390px;

    margin:0 auto 30px;

    color:#aebbd0;

    line-height:1.7;
}


.wallet-connect-main{

    width:100%;

    padding:17px 25px;

    border:0;

    border-radius:50px;

    background:
        linear-gradient(
            90deg,
            #ffd700,
            #ffb800
        );

    color:#111;

    font-size:17px;

    font-weight:700;

    cursor:pointer;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    transition:all 0.3s ease;
}


.wallet-connect-main:hover{

    transform:translateY(-3px);

    box-shadow:
        0 12px 30px rgba(255,215,0,0.25);
}


.wallet-connect-main i{

    font-size:19px;
}


.wallet-info{

    margin-top:18px;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:8px;

    color:#8f9db2;

    font-size:12px;
}


.wallet-info i{

    color:#ffd700;
}


.login-divider{

    display:flex;

    align-items:center;

    gap:15px;

    margin:30px 0;

    color:#64748b;

    font-size:12px;
}


.login-divider::before,
.login-divider::after{

    content:"";

    flex:1;

    height:1px;

    background:rgba(255,255,255,0.08);
}


.signup-text{

    color:#8f9db2;

    font-size:14px;
}


.signup-text a{

    color:#ffd700;

    font-weight:600;

    text-decoration:none;
}


.signup-text a:hover{

    text-decoration:underline;
}


.login-footer{

    margin-top:30px;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,0.07);

    display:flex;

    flex-direction:column;

    gap:12px;

    font-size:12px;
}


.login-footer span{

    color:#ffd700;

    font-weight:600;
}


.login-footer a{

    color:#8f9db2;

    text-decoration:none;
}


.login-footer a:hover{

    color:#fff;
}


@media(max-width:600px){

    .login-container{

        padding:20px;
    }

    .login-card{

        padding:35px 25px;
    }

    .login-content h2{

        font-size:25px;
    }

}
/* ==========================================
   TRANSACTIONS PAGE
   ========================================== */

.transactions-section{
    margin-top:30px;

    background:rgba(255,255,255,0.03);

    border:1px solid rgba(255,255,255,0.08);

    border-radius:20px;

    overflow:hidden;
}

.transactions-header{
    padding:25px 30px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:20px;

    border-bottom:1px solid rgba(255,255,255,0.08);
}

.transactions-header h2{
    margin:0 0 6px;

    font-size:22px;
}

.transactions-header p{
    margin:0;

    color:#8f9db2;
}

.transaction-count{
    color:#ffd700;

    font-size:14px;

    font-weight:600;
}

.transactions-table-wrapper{
    width:100%;

    overflow-x:auto;
}

.transactions-table{
    width:100%;

    border-collapse:collapse;

    min-width:950px;
}

.transactions-table th{
    padding:18px 20px;

    text-align:left;

    color:#8f9db2;

    font-size:12px;

    text-transform:uppercase;

    letter-spacing:.5px;

    background:rgba(255,255,255,0.02);
}

.transactions-table td{
    padding:20px;

    border-top:1px solid rgba(255,255,255,0.06);

    color:#dce5f2;

    font-size:14px;
}

.transactions-table td small{
    display:block;

    margin-top:4px;

    color:#7f8da3;

    font-size:11px;
}

.transactions-table tbody tr:hover{
    background:rgba(255,255,255,0.025);
}

.transaction-type,
.transaction-status{
    display:inline-block;

    padding:6px 10px;

    border-radius:20px;

    font-size:11px;

    font-weight:700;
}

.transaction-type{
    background:rgba(255,215,0,0.08);

    color:#ffd700;
}

.transaction-status{
    background:rgba(255,255,255,0.06);

    color:#cbd5e1;
}

.status-completed{
    color:#22c55e;

    background:rgba(34,197,94,0.10);
}

.status-pending{
    color:#f59e0b;

    background:rgba(245,158,11,0.10);
}

.status-failed{
    color:#ef4444;

    background:rgba(239,68,68,0.10);
}

.empty-transactions{
    padding:80px 30px;

    text-align:center;
}

.empty-icon{
    width:70px;
    height:70px;

    margin:0 auto 20px;

    display:flex;

    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:rgba(255,215,0,0.08);

    color:#ffd700;

    font-size:28px;
}

.empty-transactions h3{
    margin-bottom:8px;
}

.empty-transactions p{
    color:#8f9db2;
}


@media(max-width:768px){

    .transactions-header{
        align-items:flex-start;

        flex-direction:column;

        padding:22px 20px;
    }

    .transactions-table th,
    .transactions-table td{
        padding:15px;
    }

}

/* ==================================================
   SFTSHOPS DASHBOARD - SIDEBAR DESIGN
   ================================================== */

.dashboard-page {
    margin: 0;
    background: #07162d;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.dashboard-wrapper {
    min-height: 100vh;
    display: flex;
}

/* SIDEBAR */

.dashboard-sidebar {
    width: 255px;
    min-height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    background:
        linear-gradient(
            180deg,
            #081a35 0%,
            #061329 100%
        );
    border-right: 1px solid rgba(255,255,255,0.08);
    box-shadow: 10px 0 35px rgba(0,0,0,0.18);
    z-index: 1000;
}

/* ACTIVE MENU */

.dashboard-nav-link.active {
    background:
        linear-gradient(
            90deg,
            rgba(255,215,0,0.16),
            rgba(80,70,180,0.12)
        );
    color: #fff;
    border: 1px solid rgba(255,215,0,0.18);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.dashboard-nav-link.active i {
    color: #ffd700;
}

/* SEPARATOR */

.dashboard-nav-separator {
    height: 1px;
    margin: 12px 10px;
    background: rgba(255,255,255,0.07);
}

/* SIDEBAR BOTTOM */

.dashboard-sidebar-bottom {
    padding: 14px 12px 18px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

/* CONNECTED WALLET */

.sidebar-wallet {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    padding: 12px;
    border-radius: 11px;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.06);
}

.sidebar-wallet > i {
    color: #22c55e;
    font-size: 13px;
}

.sidebar-wallet small {
    display: block;
    color: #7f8da3;
    font-size: 9px;
    margin-bottom: 3px;
}

.sidebar-wallet strong {
    display: block;
    color: #dce5f2;
    font-size: 11px;
}

/* LOGOUT */

.logout-link {
    color: #aebbd0;
}

.logout-link i {
    color: #ef4444;
}

.logout-link:hover {
    background: rgba(239,68,68,0.08);
    color: #fff;
}

.logout-link:hover i {
    color: #ef4444;
}

/* MAIN CONTENT POSITION */

.dashboard-main {
    width: calc(100% - 255px);
    margin-left: 255px;
    min-height: 100vh;
    padding: 30px;
    background:
        radial-gradient(
            circle at 80% 10%,
            rgba(65,50,180,0.12),
            transparent 35%
        ),
        #07162d;
}

/* MOBILE */

@media (max-width: 900px) {

    .dashboard-sidebar {
        width: 220px;
    }

    .dashboard-main {
        width: calc(100% - 220px);
        margin-left: 220px;
        padding: 20px;
    }
}

@media (max-width: 700px) {

    .dashboard-sidebar {
        position: relative;
        width: 100%;
        min-height: auto;
    }

    .dashboard-wrapper {
        display: block;
    }

    .dashboard-main {
        width: 100%;
        margin-left: 0;
        padding: 18px;
    }

    .dashboard-nav {
        max-height: none;
    }
}


/* LOGOUT */

.logout-link {
    color: #aebbd0;
}

.logout-link i {
    color: #ef4444;
}

.logout-link:hover {
    background: rgba(239,68,68,0.08);
    color: #fff;
}

.logout-link:hover i {
    color: #ff6666;
}
/* =========================================================
   SFTSHOPS DASHBOARD - PREMIUM DESIGN
   Dashboard visual layer only
   PHP / database / Web3 logic untouched
   ========================================================= */

.dashboard-page {
    background:
        radial-gradient(circle at 75% 15%, rgba(47, 91, 255, 0.16), transparent 30%),
        radial-gradient(circle at 70% 80%, rgba(0, 180, 255, 0.08), transparent 28%),
        #07162d;
    color: #ffffff;
    min-height: 100vh;
}

/* Main dashboard area */
.dashboard-page .dashboard-main {
    background: transparent;
    min-height: 100vh;
}

/* =========================================================
   TOP BAR
   ========================================================= */

.dashboard-page .dashboard-topbar {
    background: rgba(7, 22, 45, 0.88);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
}

.dashboard-page .dashboard-topbar h1 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: -0.5px;
}

.dashboard-page .dashboard-topbar p {
    color: rgba(255, 255, 255, 0.68);
}

/* =========================================================
   DASHBOARD CARDS
   ========================================================= */

.dashboard-page .dashboard-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 25px;
}

.dashboard-page .dashboard-card {
    position: relative;
    min-height: 150px;
    padding: 22px;
    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(32, 64, 135, 0.62),
            rgba(10, 27, 60, 0.82)
        );

    border: 1px solid rgba(120, 170, 255, 0.16);

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);

    backdrop-filter: blur(12px);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.dashboard-page .dashboard-card:hover {
    transform: translateY(-4px);

    border-color: rgba(80, 150, 255, 0.45);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.30),
        0 0 25px rgba(40, 110, 255, 0.10);
}

/* Card icon */
.dashboard-page .card-icon {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background: linear-gradient(
        135deg,
        rgba(60, 130, 255, 0.95),
        rgba(40, 76, 180, 0.85)
    );

    color: #ffffff;

    font-size: 19px;

    margin-bottom: 15px;

    box-shadow:
        0 7px 20px rgba(20, 80, 200, 0.25);
}

/* Card text */
.dashboard-page .card-content span {
    display: block;

    color: rgba(255, 255, 255, 0.67);

    font-size: 13px;
    font-weight: 500;

    margin-bottom: 7px;
}

.dashboard-page .card-content h2 {
    margin: 0;

    color: #ffffff;

    font-size: 25px;
    line-height: 1.2;

    font-weight: 700;

    letter-spacing: -0.4px;
}

.dashboard-page .card-content small {
    display: block;

    margin-top: 8px;

    color: rgba(255, 255, 255, 0.48);

    font-size: 11px;
}

/* SFT History Cards */
.sft-history-card {
    position: relative;
    overflow: hidden;
}

.sft-history-card .card-content {
    position: relative;
    z-index: 2;
}

.sft-history-card h2 {
    margin: 10px 0 5px;
    font-size: 32px;
    font-weight: 700;
}

.sft-history-card small {
    opacity: 0.85;
    font-size: 14px;
}

.sft-history-card .card-icon {
    margin-bottom: 10px;
}

/* =========================================================
   SPECIAL CARD - FETCHED BALANCE
   ========================================================= */

.dashboard-page .fetched-card {
    background:
        linear-gradient(
            145deg,
            rgba(35, 94, 210, 0.72),
            rgba(9, 35, 75, 0.88)
        );

    border-color: rgba(80, 160, 255, 0.30);
}

.dashboard-page .fetched-card .card-icon {
    background:
        linear-gradient(
            135deg,
            #1677ff,
            #1649bd
        );
}

/* =========================================================
   SFTR STATUS
   ========================================================= */

.dashboard-page .status-active {
    color: #54e39b !important;
}

.dashboard-page .status-inactive {
    color: #ff6f7d !important;
}

/* =========================================================
   WELCOME / ACCOUNT AREA
   ========================================================= */

.dashboard-page .dashboard-welcome {
    margin-top: 24px;

    padding: 28px;

    border-radius: 20px;

    background:
        linear-gradient(
            135deg,
            rgba(38, 77, 160, 0.62),
            rgba(10, 28, 62, 0.88)
        );

    border: 1px solid rgba(100, 160, 255, 0.16);

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.20);

    backdrop-filter: blur(12px);
}

.dashboard-page .dashboard-welcome h2 {
    margin: 8px 0 12px;

    font-size: 25px;
    font-weight: 700;

    color: #ffffff;
}

.dashboard-page .dashboard-welcome p {
    color: rgba(255, 255, 255, 0.68);

    line-height: 1.7;

    max-width: 650px;
}

.dashboard-page .dashboard-label {
    display: inline-block;

    color: #65a9ff;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

/* Connected wallet */
.dashboard-page .welcome-wallet {
    margin-top: 20px;

    padding: 14px 17px;

    border-radius: 12px;

    background: rgba(0, 0, 0, 0.18);

    border: 1px solid rgba(255, 255, 255, 0.07);
}

.dashboard-page .welcome-wallet span {
    display: block;

    color: rgba(255, 255, 255, 0.50);

    font-size: 11px;

    margin-bottom: 5px;
}

.dashboard-page .welcome-wallet strong {
    color: #ffffff;

    font-size: 14px;

    word-break: break-all;
}

/* =========================================================
   SIDEBAR - KEEP THE EXISTING STRUCTURE
   ========================================================= */

.dashboard-page .dashboard-sidebar {
    background:
        linear-gradient(
            180deg,
            rgba(8, 25, 54, 0.98),
            rgba(5, 18, 39, 0.98)
        );

    border-right: 1px solid rgba(255, 255, 255, 0.07);

    box-shadow:
        8px 0 30px rgba(0, 0, 0, 0.15);
}

/* Sidebar links */
.dashboard-page .dashboard-sidebar a {
    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.dashboard-page .dashboard-sidebar a:hover {
    background: rgba(60, 120, 255, 0.13);

    color: #ffffff;

    transform: translateX(2px);
}

/* Sidebar menu visibility */
.dashboard-page .dashboard-nav-link {
    color: #c7d2e5;
}

.dashboard-page .dashboard-nav-link i {
    color: #8fb8ff;
}

.dashboard-page .dashboard-nav-link:hover {
    color: #ffffff;
}

.dashboard-page .dashboard-nav-link:hover i {
    color: #ffffff;
}

/* =========================================================
   RESPONSIVE - TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .dashboard-page .dashboard-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

/* =========================================================
   RESPONSIVE - MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .dashboard-page .dashboard-cards {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .dashboard-page .dashboard-card {
        min-height: 130px;
        padding: 18px;
    }

    .dashboard-page .dashboard-topbar h1 {
        font-size: 25px;
    }

    .dashboard-page .dashboard-welcome {
        padding: 21px;
    }

}

/* ============================================================
   SFTSHOPS SIDEBAR - PREMIUM NAVIGATION
   ============================================================ */

.dashboard-page .dashboard-sidebar {
    width: 250px;
    padding: 24px 14px;
    box-sizing: border-box;
}

/* Logo area */
.dashboard-page .dashboard-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 4px 10px 24px;
}

.dashboard-logo-mark {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dashboard-logo-mark img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
}

/* SFTSHOPS name */
.dashboard-page .dashboard-logo strong {
    display: block;

    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Social Fungible Token */
.dashboard-page .dashboard-logo span {
    display: block;

    margin-top: 2px;

    color: rgba(255, 255, 255, 0.45);
    font-size: 9px;
}

/* Navigation */
.dashboard-page .dashboard-nav {
    margin-top: 18px;
}

/* Navigation links */
.dashboard-page .dashboard-nav-link {
    display: flex;
    align-items: center;

    gap: 13px;

    min-height: 44px;
    padding: 10px 13px;
    margin: 5px 0;

    box-sizing: border-box;

    border-radius: 11px;

    color: rgba(255, 255, 255, 0.68);
    text-decoration: none;

    font-size: 14px;
    font-weight: 500;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

/* Icons */
.dashboard-page .dashboard-nav-link i {
    width: 20px;

    text-align: center;

    color: rgba(110, 175, 255, 0.85);

    font-size: 15px;

    transition: color 0.2s ease;
}

/* Hover */
.dashboard-page .dashboard-nav-link:hover {
    background: rgba(60, 125, 255, 0.13);

    color: #ffffff;

    transform: translateX(3px);
}

/* Hover icon */
.dashboard-page .dashboard-nav-link:hover i {
    color: #ffffff;
}

/* Active Dashboard */
.dashboard-page .dashboard-nav-link.active {
    background: linear-gradient(
        135deg,
        rgba(50, 115, 255, 0.32),
        rgba(40, 80, 190, 0.16)
    );

    color: #ffffff;

    box-shadow:
        inset 3px 0 0 #5aa8ff,
        0 6px 18px rgba(0, 0, 0, 0.12);
}

/* Active icon */
.dashboard-page .dashboard-nav-link.active i {
    color: #ffffff;
}

/* Navigation text */
.dashboard-page .dashboard-nav-link span {
    white-space: nowrap;
}

/* ============================================================
   SIDEBAR MOBILE
   ============================================================ */

@media (max-width: 700px) {

    .dashboard-page .dashboard-sidebar {
        width: 100%;
        padding: 16px;
    }

    .dashboard-page .dashboard-logo {
        padding-bottom: 16px;
    }

    .dashboard-page .dashboard-nav {
        margin-top: 10px;
    }

    .dashboard-page .dashboard-nav-link {
        min-height: 46px;
    }
}
@media (max-width: 480px) {

    .dashboard-page .dashboard-card {
        border-radius: 15px;
    }

    .dashboard-page .card-content h2 {
        font-size: 22px;
    }

    .dashboard-page .card-icon {
        width: 42px;
        height: 42px;
        font-size: 17px;
    }

}



/* =========================================================
   DASHBOARD TOP HEADER - FINAL POLISH
   ========================================================= */

.dashboard-page .dashboard-main {
    padding-top: 28px;
}

.dashboard-page .dashboard-topbar {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 25px;

    padding: 22px 28px !important;
    margin-bottom: 8px;

    min-height: 92px;

    background: linear-gradient(
        135deg,
        rgba(18, 43, 88, 0.90),
        rgba(8, 25, 55, 0.82)
    );

    border: 1px solid rgba(100, 160, 255, 0.12);
    border-radius: 18px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);

    backdrop-filter: blur(12px);
}

/* Header title */
.dashboard-page .dashboard-topbar > div:first-child {
    flex: 1;
}

.dashboard-page .dashboard-topbar h1 {
    display: block !important;

    margin: 0 0 6px !important;

    color: #ffffff !important;

    font-size: 30px !important;
    line-height: 1.2;

    font-weight: 700 !important;
}

.dashboard-page .dashboard-topbar p {
    display: block !important;

    margin: 0 !important;

    color: rgba(255, 255, 255, 0.68) !important;

    font-size: 14px;
}

/* User status area */
.dashboard-page .dashboard-user {
    display: flex !important;
    align-items: center;

    gap: 11px;

    padding: 10px 14px;

    min-width: 150px;

    border-radius: 12px;

    background: rgba(255, 255, 255, 0.05);

    border: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-page .dashboard-user-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: rgba(65, 135, 255, 0.20);

    color: #65a9ff;

    font-size: 15px;
}

.dashboard-page .dashboard-user span,
.dashboard-page .dashboard-user small {
    color: rgba(255, 255, 255, 0.62);
}

.dashboard-page .dashboard-user strong {
    color: #ffffff;
}

/* Keep cards nicely separated from header */
.dashboard-page .dashboard-topbar + .dashboard-cards {
    margin-top: 22px;
}

/* Mobile header */
@media (max-width: 700px) {

    .dashboard-page .dashboard-topbar {
        flex-direction: column;
        align-items: flex-start;

        padding: 20px !important;
    }

    .dashboard-page .dashboard-user {
        width: 100%;
    }

}

/* ============================================================
   Dashboard Top Header CSS
   ============================================================ */

.dashboard-page .dashboard-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 26px;
    margin-bottom: 22px;

    background: linear-gradient(
        135deg,
        rgba(30, 78, 216, 0.95),
        rgba(12, 28, 75, 0.95)
    );

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Dashboard title */
.dashboard-page .dashboard-topbar h1 {
    margin: 0 0 5px;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
}

/* Welcome text */
.dashboard-page .dashboard-topbar p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
}

/* User account badge */
.dashboard-page .dashboard-user {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 10px 16px;

    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;

    white-space: nowrap;
}

/* User icon */
.dashboard-page .dashboard-user-icon {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;

    color: #ffffff;
}

/* User ID */
.dashboard-page .dashboard-user strong {
    color: #ffffff;
    font-size: 14px;
}

/* Active/status text */
.dashboard-page .dashboard-user span,
.dashboard-page .dashboard-user small {
    color: rgba(255, 255, 255, 0.65);
}

/* Mobile */
@media (max-width: 700px) {

    .dashboard-page .dashboard-topbar {
        padding: 18px;
        gap: 15px;
        flex-direction: column;
        align-items: flex-start;
    }

    .dashboard-page .dashboard-user {
        width: 100%;
        box-sizing: border-box;
    }

    .dashboard-page .dashboard-topbar h1 {
        font-size: 24px;
    }
}

/* ==========================================
   MOBILE SIDEBAR MENU
   ========================================== */

.mobile-menu-btn {
    display: none;
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 1100;

    width: 44px;
    height: 44px;

    border: none;
    border-radius: 12px;

    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: #ffffff;

    font-size: 20px;
    cursor: pointer;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}


/* Mobile only */

@media (max-width: 768px) {

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .dashboard-sidebar {
        position: fixed;
        top: 0;
        left: 0;

        width: 260px;
        height: 100vh;

        z-index: 1000;

        transform: translateX(-100%);
        transition: transform 0.3s ease;

        overflow-y: auto;
    }

    .dashboard-sidebar.mobile-open {
        transform: translateX(0);
    }

    .dashboard-main {
        width: 100%;
        margin-left: 0;
    }

}

.sftr-token-image {
    width: 260px;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 28px auto;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

/* Compact SFTR Token Card */

.sftr-token-section {
    padding: 28px 30px !important;
}

.sftr-token-image {
    width: 220px;
    margin: 18px auto;
}

/* =========================================
   DASHBOARD USER DETAILS
   ========================================= */

.dashboard-title-area {
    width: 100%;
}

.dashboard-welcome-text {
    margin-bottom: 18px;
}

.dashboard-user-details {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 8px;
}

.wallet-display,
.referral-display {
    background: rgba(15, 23, 42, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 10px 14px;
}

.wallet-display span,
.referral-display span {
    display: block;
    color: #94a3b8;
    font-size: 11px;
    margin-bottom: 5px;
}

.wallet-display strong,
.referral-display strong {
    color: #22c55e;
    font-size: 13px;
    font-weight: 600;
}

.referral-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.copy-referral-btn {
    border: 0;
    border-radius: 7px;
    padding: 6px 10px;
    background: #2563eb;
    color: #ffffff;
    font-size: 11px;
    cursor: pointer;
    transition: 0.2s ease;
}

.copy-referral-btn:hover {
    background: #1d4ed8;
}

.copy-referral-btn i {
    margin-right: 4px;
}

.dashboard-wallet-address {
    margin-top: 6px;
    font-size: 20px;
    color: #64748b;
    word-break: break-all;
}

.dashboard-referral {
    margin-top: 12px;
}

.dashboard-referral > span {
    display: block;
    margin-bottom: 6px;
    font-size: 20px;
    color: #64748b;
}

.referral-row {
    display: flex;
    gap: 8px;
    max-width: 600px;
}

.referral-row input {
    flex: 1;
    min-width: 0;
    padding: 9px 12px;
    border: 1px solid #dbe3ef;
    border-radius: 8px;
    background: #f8fafc;
    color: #334155;
    font-size: 12px;
}

.copy-referral-btn {
    padding: 9px 15px;
    border: none;
    border-radius: 8px;
    background: #2563eb;
    color: #fff;
    cursor: pointer;
    font-size: 12px;
}

.copy-referral-btn:hover {
    opacity: 0.9;
}