*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:
    radial-gradient(
        circle at top,
        #1e3a8a 0%,
        #050816 60%
    );
    color:var(--text);
    min-height:100vh;
    overflow-x:hidden;
}

.sidebar-user h6{
    color:white;
    font-weight:600;
}

.sidebar-user small{
    color:var(--muted) !important;
}

.menu-item i{
    width:22px;
    text-align:center;
    margin-right:10px;
}

.logout-btn:hover{
    color:white;
    box-shadow:
    0 0 20px rgba(239,68,68,.35);
}

.sidebar a{
    text-decoration:none !important;
}

/* =========================
   HERO STREAMER
========================= */

.streamer-hero{
    position:relative;
    background:
    rgba(15,23,42,.88);
    border:
    1px solid var(--border);
    border-radius:25px;
    padding:40px;
    backdrop-filter:blur(15px);
    margin-bottom:30px;
    overflow:hidden;
    box-shadow:
    0 0 25px rgba(37,99,235,.15);
}

.header-logo{
    position:absolute;
    top:20px;
    right:20px;
    width:170px;
    filter:
    drop-shadow(
        0 0 20px rgba(37,99,235,.8)
    )
    drop-shadow(
        0 0 30px rgba(139,92,246,.5)
    );
}

.profile-img{
    width:180px;
    height:180px;
    border-radius:50%;
    object-fit:cover;
    border:
    4px solid var(--secondary);
    box-shadow:
    0 0 30px rgba(139,92,246,.35);
}

.streamer-name{
    font-size:48px;
    font-weight:700;
    color:white;
}

.verified{
    color:#10b981;
    margin-left:10px;
}

.game-text{
    color:var(--muted);
    font-size:20px;
    margin-top:10px;
}

/* =========================
   HERO STATS
========================= */

.hero-stats{
    display:flex;
    gap:20px;
    margin-top:25px;
    flex-wrap:wrap;
}

.hero-stat{
    min-width:180px;
    background:
    rgba(255,255,255,.05);
    border:
    1px solid var(--border);
    border-radius:16px;
    padding:15px 20px;
}

.hero-stat h3{
    margin:0;
    font-size:28px;
    font-weight:700;
}

.hero-stat span{
    color:var(--muted);
}

/* =========================
   BUTTON
========================= */

.action-btn{
    min-width:180px;
    height:55px;
    border-radius:14px;
    font-weight:600;
    display:flex;
    align-items:center;
    justify-content:center;
}

.btn-donasi{
    background:
    linear-gradient(
        90deg,
        var(--primary),
        var(--secondary)
    );
    color:white;
    border:none;
}

.btn-donasi:hover{
    color:white;
    transform:translateY(-2px);
    box-shadow:
    0 0 20px rgba(139,92,246,.35);
}

.share-btn{
    width:55px;
    height:55px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* =========================
   TAB MENU
========================= */

.tab-menu{
    background:
    rgba(15,23,42,.88);
    border:
    1px solid var(--border);
    border-radius:20px;
    padding:10px;
    margin-bottom:25px;
}

.tab-menu .nav-link{
    color:var(--muted);
    font-weight:600;
    border-radius:14px;
    padding:15px;
    transition:.3s;
}

.tab-menu .nav-link:hover{
    color:white;
}

/* =========================
   CONTENT CARD
========================= */

.content-card{
    background:
    rgba(15,23,42,.88);
    border:
    1px solid var(--border);
    border-radius:22px;
    padding:30px;
    color:white;
    backdrop-filter:blur(15px);
    box-shadow:
    0 0 20px rgba(37,99,235,.12);
}

.content-title{
    font-size:28px;
    font-weight:700;
    margin-bottom:20px;
}

/* =========================
   SOCIAL
========================= */

.social-btn{
    width:70px;
    height:70px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    transition:.3s;
}

.social-btn:hover{
    transform:translateY(-4px);
}

/* =========================
   DONATUR
========================= */

.top-donatur{
    list-style:none;
    padding:0;
}

.top-donatur li{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 0;
    border-bottom:
    1px solid rgba(255,255,255,.08);
    font-size:18px;
}

/* =========================
   AUTH CARD
========================= */

.auth-card{
    margin:20px 0;
    padding:18px;
    border-radius:16px;
    background:
    rgba(255,255,255,.04);
    border:
    1px solid rgba(139,92,246,.18);
}

.auth-card h6{
    color:#fff;
    font-weight:700;
    margin-bottom:8px;
}

.auth-card p{
    color:#94a3b8;
    font-size:13px;
    line-height:1.6;
    margin-bottom:15px;
}

.sidebar-login-btn{
    width:100%;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    border-radius:12px;
    font-weight:700;
    color:#fff;
    background:
    linear-gradient(
        135deg,
        #2563eb,
        #8b5cf6
    );
    transition:.3s;
}

.sidebar-login-btn:hover{
    color:#fff;
    transform:translateY(-2px);
    box-shadow:
    0 10px 25px rgba(139,92,246,.35);
}

.sidebar-register-btn{
    width:100%;
    height:48px;
    margin-top:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    border-radius:12px;
    border:1px solid rgba(139,92,246,.35);
    color:#fff;
    background:
    rgba(255,255,255,.03);
    transition:.3s;
}

.sidebar-register-btn:hover{
    color:#fff;
    background:
    rgba(139,92,246,.12);
    border-color:#8b5cf6;
}

.auth-card,
.sidebar-info-card{
    background:
    rgba(255,255,255,.04);
    border:
    1px solid rgba(139,92,246,.18);
    border-radius:18px;
    padding:18px;
    margin-bottom:16px;
    backdrop-filter:blur(12px);
    transition:.3s;
}

.auth-card:hover,
.sidebar-info-card:hover{
    transform:translateY(-2px);
    border-color:#8b5cf6;
    box-shadow:
    0 0 20px rgba(139,92,246,.18);
}

.auth-card h6,
.sidebar-info-card h6{
    color:#fff;
    font-size:18px;
    font-weight:700;
    margin-bottom:10px;
}

.auth-card p,
.sidebar-info-card p{
    color:#a8b3cf;
    font-size:14px;
    line-height:1.7;
    margin-bottom:0;
}

.sidebar-info-card i{
    color:#8b5cf6;
    font-size:20px;
    margin-bottom:10px;
    display:block;
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .streamer-hero{
        padding:20px;
    }

    .header-logo{
        display:none;
    }

    .profile-img{
        width:110px;
        height:110px;
        margin-bottom:15px;
    }

    .streamer-name{
        font-size:26px;
        margin-top:10px;
    }

    .game-text{
        font-size:15px;
    }

    .hero-stats{
        flex-direction:row;
        gap:10px;
    }

    .hero-stat{
        width:100%;
        min-width:unset;
        padding:12px 15px;
    }

    .hero-stat h3{
        font-size:20px;
    }

    .action-btn{
        width:100%;
        height:48px;
        min-width:unset;
    }

    .share-btn{
        width:100%;
        height:48px;
    }

    .tab-menu .nav-link{
        font-size:12px;
        padding:10px 5px;
    }

    .content-card{
        padding:20px;
    }

    .content-title{
        font-size:22px;
    }

    .top-donatur li{
        font-size:15px;
    }

    .social-btn{
        width:55px;
        height:55px;
        font-size:22px;
    }
}