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

body{
    background:#070b14;
    color:#fff;
    font-family:'Rajdhani','Roboto',Arial,sans-serif;
    letter-spacing:.2px;
}

a{
    text-decoration:none;
}

.app{
    max-width:480px;
    margin:0 auto;
    min-height:100vh;
    background:#090d18;
}

.header{
    background:#0d1320;
}

.header-top{
    height:68px;
    padding:0 14px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    position:relative;
    overflow: hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size: 22px;
    font-weight: 900;
}

.logo img{
    position:relative;
    max-height:48px;
    max-width:180px;
}

/* SHINE EFFECT 
.logo::before{
    content:"";

    position:absolute;

    top:0;
    left:-60px;

    width:30px;
    height:100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.8),
            transparent
        );

    transform:skewX(-20deg);

    animation:logoShine 4s infinite;

    pointer-events:none;
}
*/
/* GLOW 

.logo::after{
    content:"";
    position:absolute;
    width:auto;
    height:30px;
    bottom:-12px;
    border-radius:50%;
    background:
        radial-gradient(
            ellipse,
            rgba(255,255,255,.15),
            transparent 70%
        );

    filter:blur(10px);
    z-index:-1;
}
*/

/* FLOAT */

@keyframes logoFloat{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-3px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* SHINE */
@keyframes logoShine{

    0%{
        left:-60px;
    }

    25%{
        left:100%;
    }

    100%{
        left:100%;
    }

}
/*
.logo img{
    filter:
        drop-shadow(0 4px 10px rgba(0,0,0,.45))
        drop-shadow(0 0 10px var(--primary))
        drop-shadow(0 0 18px var(--primary));
}
*/

.header-btn{
    display:flex;
    gap:8px;
}

.btn-login,
.btn-register{
    position:relative;
    overflow:hidden;
    min-width:82px;
    height:40px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:15px;
    font-weight:900;
    letter-spacing:.7px;
    text-transform:uppercase;
    color:#fff;
    border:1px solid rgba(255,255,255,.16);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.25),
        0 8px 18px rgba(0,0,0,.35);
}

.btn-login{
    background:
        linear-gradient(180deg,#334155,#111827);
}

.btn-register{
    color:#fff;
    background:
        linear-gradient(180deg,var(--primary),#7f0909);
    border-color:rgba(255,255,255,.22);
}

.btn-login::before,
.btn-register::before{
    content:"";
    position:absolute;
    top:-60%;
    left:-80%;
    width:45%;
    height:220%;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.75),
        transparent
    );
    transform:rotate(25deg);
    animation:shineButton 2.8s infinite;
}

.btn-register::before{
    animation-delay:.4s;
}

@keyframes shineButton{
    0%{
        left:-90%;
    }
    45%{
        left:130%;
    }
    100%{
        left:130%;
    }
}

.running-text{
    height:36px;
    padding:0 12px;
    display:flex;
    align-items:center;
    gap:10px;
    font-family:'Roboto',Arial,sans-serif;
    font-size:13px;
    font-weight:500;
    color:#fff;
    overflow:hidden;
}

.running-text i{
    color:var(--primary);
}

/* ===============================
   GAMING HERO SLIDER
================================ */

.hero-slider{
    position:relative;
    height:190px;
    overflow:hidden;
    background:#070b14;
    border-bottom:1px solid rgba(255,255,255,.1);
    box-shadow:0 14px 32px rgba(0,0,0,.55);
}

.slider-wrapper{
    position:relative;
    width:100%;
    height:100%;
}

.slider-item{
    position:absolute;
    inset:0;
    opacity:0;
    visibility:hidden;
    transform:scale(1.02);
    transition:all .55s ease;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.slider-item.active{
    opacity:1;
    visibility:visible;
    transform:scale(1);
}

.slider-item::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(0,0,0,.35) 0%,
        rgba(0,0,0,.15) 35%,
        rgba(0,0,0,.05) 100%
    );
    z-index:1;
}

.slider-item::after{
    display:none;
}

.slider-content{
    position:relative;
    z-index:2;
    width:74%;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:16px 18px;
}

.slider-badge{
    width:max-content;
    max-width:100%;
    display:inline-flex;
    align-items:center;
    gap:6px;
    padding:5px 11px;
    border-radius:999px;
    background:linear-gradient(135deg,var(--primary),#ffda75);
    color:#111;
    font-size:10px;
    font-weight:900;
    letter-spacing:.8px;
    text-transform:uppercase;
    box-shadow:0 6px 16px rgba(184,134,11,.35);
}

.slider-badge::before{
    content:"★";
    font-size:9px;
}

.slider-content h2{
    margin:9px 0 6px;
    color:#fff;
    font-size:24px;
    line-height:1;
    font-weight:900;
    text-transform:uppercase;
    text-shadow:0 4px 12px rgba(0,0,0,.65);
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.slider-content p{
    margin:0 0 12px;
    color:rgba(255,255,255,.88);
    font-size:12px;
    line-height:1.45;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.slider-btn{
    position:relative;
    overflow:hidden;
    width:max-content;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:33px;
    padding:0 16px;
    border-radius:12px;
    background:#fff;
    color:#111827;
    font-size:12px;
    font-weight:900;
    text-transform:uppercase;
    box-shadow:0 9px 18px rgba(0,0,0,.35);
}

.slider-btn::before{
    content:"";
    position:absolute;
    top:-80%;
    left:-90%;
    width:45%;
    height:260%;
    background:linear-gradient(90deg,transparent,rgba(255,255,255,.95),transparent);
    transform:rotate(25deg);
    animation:shineButton 3s infinite;
}

.slider-control{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    z-index:5;
    width:32px;
    height:32px;
    border:1px solid rgba(255,255,255,.18);
    border-radius:50%;
    background:rgba(0,0,0,.45);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    backdrop-filter:blur(8px);
}

.slider-control.prev{left:8px}
.slider-control.next{right:8px}

.slider-dots{
    position:absolute;
    left:18px;
    bottom:11px;
    z-index:5;
    display:flex;
    align-items:center;
    gap:6px;
}

.slider-dots button{
    width:7px;
    height:7px;
    padding:0;
    border:0;
    border-radius:999px;
    background:rgba(255,255,255,.45);
    transition:.25s ease;
}

.slider-dots button.active{
    width:24px;
    background:linear-gradient(135deg,var(--primary),#fff2a8);
    box-shadow:0 0 12px rgba(255,213,106,.75);
}

@media(max-width:380px){
    .hero-slider{
        height:175px;
    }

    .slider-content{
        width:78%;
        padding:14px 16px;
    }

    .slider-content h2{
        font-size:21px;
    }

    .slider-content p{
        font-size:11px;
    }
}

/* Content */
.main-content{
    padding-bottom:86px;
}


.jackpot-card{
    position:relative;
    margin:0;
    padding:0;
    border-radius:18px;
    overflow:hidden;
    background:transparent;
    box-shadow:0 8px 22px rgba(0,0,0,.35);
}

.jackpot-image{
    width:100%;
    display:block;
    border-radius:18px;
}

.jackpot-card::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );
    opacity:.12;
    mix-blend-mode:soft-light;
    pointer-events:none;
}

.section-head{
    margin:18px 12px 10px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.section-subtitle{
    display:block;
    font-size:11px;
    font-weight:700;
    text-transform:uppercase;
    color:var(--primary);
    letter-spacing:.8px;
    margin-bottom:2px;
}

.section-head h3{
    font-size:20px;
    font-weight:900;
    color:var(--text);
    text-transform:uppercase;
}

.section-head > i{
    width:38px;
    height:38px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.06);
    color:var(--primary);
}

.section-link{
    height:34px;
    padding:0 16px;
    border-radius:12px;
    display:flex;
    align-items:center;
    background:var(--primary);
    color:#fff;
    font-size:13px;
    font-weight:900;
    text-transform:uppercase;
}

.category-scroll{
    display:flex;
    gap:10px;
    overflow-x:auto;
    padding:0 12px 8px;
    scroll-snap-type:x mandatory;
}

.category-scroll::-webkit-scrollbar{
    display:none;
}

.category-card{
    min-width:82px;
    height:82px;
    border:1px solid rgba(255,255,255,.09);
    border-radius:20px;
    background:
        linear-gradient(180deg,#151b2b,#0d1320);
    color:var(--text);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:8px;
    scroll-snap-align:start;
    box-shadow:0 8px 20px rgba(0,0,0,.25);
}

.category-icon{
    width:34px;
    height:34px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.06);
    color:var(--primary);
    font-size:17px;
}

.category-name{
    font-size:12px;
    font-weight:800;
}

.category-card.active{
    background:
        linear-gradient(180deg,var(--primary),var(--secondary));
    border-color:rgba(255,255,255,.2);
}

.category-card.active .category-icon{
    background:rgba(255,255,255,.18);
    color:#fff;
}

/* GRID PROVIDER */
.provider-slider-wrapper{
    position:relative;
    padding:0 12px;
}

.provider-slider{
    display:flex;
    gap:12px;
    overflow-x:auto;
    scroll-behavior:smooth;
    scrollbar-width:none;
    padding-bottom:5px;
}

.provider-slider::-webkit-scrollbar{
    display:none;
}

.provider-card{
    flex:0 0 145px;
    min-width:145px;
    max-width:145px;

    position:relative;
    border-radius:20px;
    overflow:hidden;

    background:
        linear-gradient(
            180deg,
            #151b2b,
            #0b101b
        );

    border:1px solid rgba(255,255,255,.08);

    box-shadow:
        0 10px 24px rgba(0,0,0,.32);
}

.provider-badge{
    position:absolute;
    top:8px;
    right:8px;
    z-index:2;
    padding:4px 8px;
    border-radius:999px;
    background:var(--primary);
    color:#fff;
    font-size:10px;
    font-weight:900;
}

.provider-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    z-index:10;

    width:34px;
    height:34px;

    border:none;
    border-radius:50%;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.12),
            rgba(255,255,255,.05)
        );

    color:#fff;

    backdrop-filter:blur(10px);

    box-shadow:
        0 4px 12px rgba(0,0,0,.35);

    display:flex;
    align-items:center;
    justify-content:center;
}

.provider-arrow.left{
    left:3px;
}

.provider-arrow.right{
    right:3px;
}

.provider-arrow i{
    font-size:12px;
}

.provider-image{
    height:105px;
    background:var(--primary);
    padding:0px;
}

.provider-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.provider-info{
    padding:10px;
}

.provider-info h4{
    min-height:34px;
    font-size:15px;
    font-weight:900;
    line-height:1.1;
    color:#fff;
}

.provider-play{
    position:relative;
    overflow:hidden;
    margin-top:9px;
    height:34px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(180deg,var(--primary),var(--secondary));
    color:#fff;
    font-size:13px;
    font-weight:900;
    text-transform:uppercase;
}

.provider-play::before{
    content:"";
    position:absolute;
    top:-70%;
    left:-80%;
    width:42%;
    height:240%;
    background:linear-gradient(90deg,transparent,rgba(255,255,255,.8),transparent);
    transform:rotate(25deg);
    animation:shineButton 3s infinite;
}


/* GRID BANK */
.bank-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;
    padding:0 12px;
}

.bank-card{
    min-height:88px;
    padding:10px;
    border-radius:18px;
    background:#101827;
    border:1px solid rgba(255,255,255,.08);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.bank-card img{
    max-width:70px;
    max-height:28px;
    object-fit:contain;
    margin-bottom:8px;
}

.bank-placeholder{
    width:42px;
    height:32px;
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--primary);
    color:#fff;
    font-weight:900;
    margin-bottom:8px;
}

.bank-card span{
    font-size:12px;
    font-weight:800;
    color:#fff;
}

.bank-card small{
    margin-top:4px;
    font-size:10px;
    color:#22c55e;
    font-weight:700;
}

.bank-card small i{
    font-size:6px;
    margin-right:4px;
}

.seo-area{
    margin:18px 12px 0;
    padding:16px;
    border-radius:20px;
    background:#101827;
    border:1px solid rgba(255,255,255,.08);
}

.seo-area h1{
    font-size:20px;
    line-height:1.2;
    color:var(--text);
    margin-bottom:10px;
}

.seo-content{
    font-family:'Roboto',Arial,sans-serif;
    font-size:13px;
    line-height:1.7;
    color:var(--muted);
}

@media(max-width:380px){
    .provider-grid{
        gap:10px;
    }

    .provider-image{
        height:82px;
    }

    .jackpot-card-number{
        font-size:24px;
    }
}

/* Bottom Nav */
.footer-space{
    height:88px;
}

.bottom-menu{
    position:fixed;
    left:50%;
    bottom:0;
    transform:translateX(-50%);
    z-index:9999;
    width:100%;
    max-width:480px;
    height:72px;
    display:grid;
    grid-template-columns:1fr 1fr 1.15fr 1fr 1fr;
    align-items:center;
    padding:8px 8px 10px;
    background:
        linear-gradient(180deg,#1b2436,#080c16);
    border-top:1px solid rgba(255,255,255,.12);
    box-shadow:
        0 -10px 28px rgba(0,0,0,.55),
        inset 0 1px 0 rgba(255,255,255,.08);
}

.bottom-item,
.bottom-center{
    color:var(--muted);
    font-size:11px;
    font-weight:800;
    text-align:center;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:5px;
}

.bottom-icon{
    width:34px;
    height:30px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:
        linear-gradient(180deg,#263246,#101827);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.12),
        0 5px 10px rgba(0,0,0,.35);
}

.bottom-icon i{
    font-size:15px;
}

.bottom-item.active{
    color:var(--primary);
}

.bottom-item.active .bottom-icon{
    color:#fff;
    background:
        linear-gradient(180deg,var(--primary),var(--secondary));
}

.bottom-center{
    position:relative;
    margin-top:-34px;
    color:#fff;
}

.center-button{
    position:relative;
    overflow:hidden;
    width:62px;
    height:62px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:
        radial-gradient(circle at 30% 20%,rgba(255,255,255,.45),transparent 20%),
        linear-gradient(180deg,var(--primary),var(--secondary));
    border:4px solid #0b101b;
    box-shadow:
        0 10px 22px rgba(0,0,0,.55),
        inset 0 2px 0 rgba(255,255,255,.35),
        inset 0 -5px 12px rgba(0,0,0,.28);
}

.center-button i{
    font-size:24px;
    color:#fff;
    text-shadow:0 2px 6px rgba(0,0,0,.4);
}

.center-button::before{
    content:"";
    position:absolute;
    top:-70%;
    left:-90%;
    width:45%;
    height:240%;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.9),
        transparent
    );
    transform:rotate(25deg);
    animation:shineButton 3s infinite;
}

.bottom-center span:last-child{
    margin-top:2px;
    font-size:11px;
    font-weight:900;
    text-transform:uppercase;
    color:#fff;
}

@media(max-width:360px){
    .bottom-menu{
        height:68px;
        padding-left:5px;
        padding-right:5px;
    }

    .bottom-item,
    .bottom-center{
        font-size:10px;
    }

    .center-button{
        width:58px;
        height:58px;
    }
}

/* MODAL LOGIN */
.login-modal{
    position:fixed;
    inset:0;
    z-index:99999;
    display:none;
    align-items:center;
    justify-content:center;
    padding:18px;
    background:rgba(0,0,0,.72);
    backdrop-filter:blur(8px);
}

.login-modal.show{
    display:flex;
}

.login-modal-box{
    position:relative;
    width:100%;
    max-width:390px;
    border-radius:28px;
    padding:24px;
    background:
        radial-gradient(circle at top, rgba(255,255,255,.10), transparent 28%),
        linear-gradient(180deg,#172033,#070b14);
    border:1px solid rgba(255,255,255,.12);
    box-shadow:
        0 22px 50px rgba(0,0,0,.65),
        inset 0 1px 0 rgba(255,255,255,.14);
    animation:modalPop .22s ease;
}

@keyframes modalPop{
    from{
        opacity:0;
        transform:scale(.92) translateY(20px);
    }
    to{
        opacity:1;
        transform:scale(1) translateY(0);
    }
}

.login-modal-close{
    position:absolute;
    top:-14px;
    right:-10px;
    width:42px;
    height:42px;
    border:0;
    border-radius:50%;
    color:#fff;
    background:linear-gradient(180deg,var(--primary),var(--secondary));
    box-shadow:
        0 8px 18px rgba(0,0,0,.55),
        inset 0 2px 0 rgba(255,255,255,.35),
        inset 0 -5px 10px rgba(0,0,0,.3);
    font-size:18px;
}

.login-modal-head{
    text-align:center;
    margin-bottom:20px;
}

.login-modal-icon{
    width:62px;
    height:62px;
    margin:0 auto 12px;
    border-radius:50%;
    display:grid;
    place-items:center;
    background:linear-gradient(180deg,var(--primary),var(--secondary));
    box-shadow:
        0 12px 24px rgba(0,0,0,.45),
        inset 0 2px 0 rgba(255,255,255,.35);
}

.login-modal-icon i{
    font-size:26px;
    color:#fff;
}

.login-modal-head h3{
    margin:0;
    font-size:26px;
    font-weight:900;
    text-transform:uppercase;
    color:#fff;
}

.login-modal-head p{
    margin:5px 0 0;
    font-size:13px;
    color:var(--muted);
}

.login-form{
    display:grid;
    gap:14px;
}

.login-form-group label{
    display:block;
    margin-bottom:7px;
    font-size:13px;
    font-weight:800;
    color:#cbd5e1;
}

.login-input{
    height:48px;
    border-radius:16px;
    display:flex;
    align-items:center;
    gap:10px;
    padding:0 14px;
    background:#0b1220;
    border:1px solid rgba(255,255,255,.10);
    box-shadow:inset 0 1px 0 rgba(255,255,255,.06);
}

.login-input i{
    color:var(--primary);
}

.login-input input{
    width:100%;
    border:0;
    outline:0;
    background:transparent;
    color:#fff;
    font-size:14px;
}

.captcha-row{
    display:flex;
    gap:10px;
    margin-bottom:10px;
}

.captcha-img-box{
    flex:1;
    height:48px;
    border-radius:14px;
    overflow:hidden;
    background:#fff;
}

.captcha-img-box img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.captcha-refresh{
    width:50px;
    height:48px;
    border:0;
    border-radius:14px;
    color:#fff;
    background:linear-gradient(180deg,#263246,#101827);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.15),
        0 6px 14px rgba(0,0,0,.35);
}

.login-submit{
    position:relative;
    overflow:hidden;
    height:50px;
    border:0;
    border-radius:18px;
    color:#fff;
    font-size:15px;
    font-weight:900;
    text-transform:uppercase;
    background:linear-gradient(180deg,var(--primary),var(--secondary));
    box-shadow:
        0 12px 24px rgba(0,0,0,.45),
        inset 0 2px 0 rgba(255,255,255,.35);
}

.login-submit::before{
    content:"";
    position:absolute;
    top:-70%;
    left:-90%;
    width:45%;
    height:240%;
    background:linear-gradient(90deg,transparent,rgba(255,255,255,.85),transparent);
    transform:rotate(25deg);
    animation:shineButton 3s infinite;
}

.login-extra{
    text-align:center;
    font-size:13px;
    color:var(--muted);
}

.login-extra a{
    color:var(--primary);
    font-weight:900;
}

/* REGISTER */
.register-page{
    padding:16px 12px 92px;
}

.register-card{
    border-radius:28px;
    padding:22px;
    background:
        radial-gradient(circle at top, rgba(255,255,255,.10), transparent 30%),
        linear-gradient(180deg,#172033,#070b14);
    border:1px solid rgba(255,255,255,.12);
    box-shadow:0 18px 40px rgba(0,0,0,.5);
}

.register-head{
    text-align:center;
    margin-bottom:22px;
}

.register-icon{
    width:66px;
    height:66px;
    margin:0 auto 12px;
    border-radius:50%;
    display:grid;
    place-items:center;
    background:linear-gradient(180deg,var(--primary),var(--secondary));
    box-shadow:
        0 12px 24px rgba(0,0,0,.45),
        inset 0 2px 0 rgba(255,255,255,.35);
}

.register-icon i{
    font-size:28px;
    color:#fff;
}

.register-head h1{
    margin:0;
    font-size:28px;
    font-weight:900;
    text-transform:uppercase;
    color:#fff;
}

.register-head p{
    margin:6px 0 0;
    color:var(--muted);
    font-size:13px;
}

.register-form{
    display:grid;
    gap:14px;
}

.form-section-title{
    margin-top:8px;
    padding:10px 12px;
    border-radius:14px;
    background:rgba(255,255,255,.05);
    color:var(--primary);
    font-weight:900;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:.8px;
}

.form-section-title i{
    margin-right:6px;
}

.form-group label{
    display:block;
    margin-bottom:7px;
    font-size:13px;
    font-weight:800;
    color:#cbd5e1;
}

.register-select{
    height:48px;
    border-radius:16px;
    display:flex;
    align-items:center;
    gap:10px;
    padding:0 14px;
    background:#0b1220;
    border:1px solid rgba(255,255,255,.10);
}

.register-select i{
    color:var(--primary);
}

.register-select select{
    width:100%;
    border:0;
    outline:0;
    background:transparent;
    color:#fff;
    font-size:14px;
}

.register-select option,
.register-select optgroup{
    background:#111827;
    color:#fff;
}

.terms-check{
    display:flex;
    gap:10px;
    align-items:flex-start;
    padding:13px;
    border-radius:16px;
    background:#0b1220;
    border:1px solid rgba(255,255,255,.1);
    color:var(--muted);
    font-size:12px;
    line-height:1.5;
}

.terms-check input{
    margin-top:3px;
    accent-color:var(--primary);
}

.register-submit{
    position:relative;
    overflow:hidden;
    height:52px;
    border:0;
    border-radius:18px;
    color:#fff;
    font-size:16px;
    font-weight:900;
    text-transform:uppercase;
    background:linear-gradient(180deg,var(--primary),var(--secondary));
    box-shadow:
        0 12px 24px rgba(0,0,0,.45),
        inset 0 2px 0 rgba(255,255,255,.35);
}

.register-submit::before{
    content:"";
    position:absolute;
    top:-70%;
    left:-90%;
    width:45%;
    height:240%;
    background:linear-gradient(90deg,transparent,rgba(255,255,255,.85),transparent);
    transform:rotate(25deg);
    animation:shineButton 3s infinite;
}

.register-login-text{
    text-align:center;
    color:var(--muted);
    font-size:13px;
}

.register-login-text a{
    color:var(--primary);
    font-weight:900;
}

.field-status{
    display:block;
    margin-top:6px;
    min-height:18px;
    font-size:12px;
    font-weight:700;
}

.field-status.success{
    color:#22c55e;
}

.field-status.error{
    color:#ef4444;
}

.field-status.loading{
    color:#f59e0b;
}

.password-input{
    position:relative;
}

.password-input input{
    padding-right:38px;
}

.toggle-password{
    border:0;
    background:transparent;
    color:var(--muted);
    font-size:15px;
    padding:5px;
}

.toggle-password.active{
    color:var(--primary);
}

.password-strength{
    margin-top:8px;
    height:7px;
    border-radius:999px;
    background:#1f2937;
    overflow:hidden;
}

.password-strength span{
    display:block;
    width:0%;
    height:100%;
    border-radius:999px;
    transition:.25s ease;
}

.password-strength.low span{
    width:33%;
    background:#ef4444;
}

.password-strength.medium span{
    width:66%;
    background:#f59e0b;
}

.password-strength.strong span{
    width:100%;
    background:#22c55e;
}

.register-alert{
    display:flex;
    align-items:flex-start;
    gap:10px;

    padding:14px;

    border-radius:16px;

    margin-bottom:16px;

    font-size:13px;
    line-height:1.6;
}

.register-alert i{
    margin-top:2px;
    font-size:16px;
}

.register-alert-error{
    background:
        rgba(239,68,68,.12);

    border:
        1px solid rgba(239,68,68,.25);

    color:#fecaca;
}

.register-alert-success{
    background:
        rgba(34,197,94,.12);

    border:
        1px solid rgba(34,197,94,.25);

    color:#bbf7d0;
}

.member-toggle{
    width:44px;
    height:44px;
    border:0;
    border-radius:15px;
    color:#fff;
    background:linear-gradient(180deg,var(--primary),var(--secondary));
    box-shadow:
        0 8px 18px rgba(0,0,0,.45),
        inset 0 2px 0 rgba(255,255,255,.28),
        inset 0 -5px 10px rgba(0,0,0,.25);
    font-size:20px;
}

.member-sidebar-overlay{
    position:fixed;
    inset:0;
    z-index:99998;
    background:rgba(0,0,0,.65);
    backdrop-filter:blur(5px);
    opacity:0;
    visibility:hidden;
    transition:.25s ease;
}

.member-sidebar-overlay.show{
    opacity:1;
    visibility:visible;
}

.member-sidebar{
    position:fixed;
    top:0;
    right:-320px;
    z-index:99999;
    width:300px;
    max-width:86%;
    height:100vh;
    padding:22px 16px;
    overflow-y:auto;
    background:
        radial-gradient(circle at top, rgba(255,255,255,.10), transparent 28%),
        linear-gradient(180deg,#172033,#070b14);
    border-left:1px solid rgba(255,255,255,.12);
    box-shadow:-18px 0 40px rgba(0,0,0,.55);
    transition:.28s ease;
}

.member-sidebar.show{
    right:0;
}

.member-sidebar-close{
    position:absolute;
    top:14px;
    right:14px;
    width:38px;
    height:38px;
    border:0;
    border-radius:50%;
    color:#fff;
    background:linear-gradient(180deg,var(--primary),var(--secondary));
    box-shadow:
        0 8px 18px rgba(0,0,0,.45),
        inset 0 2px 0 rgba(255,255,255,.35);
}

.member-box{
    display:flex;
    align-items:center;
    gap:12px;
    margin-top:40px;
    padding:14px;
    border-radius:20px;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.10);
}

.member-avatar{
    width:48px;
    height:48px;
    border-radius:16px;
    display:grid;
    place-items:center;
    background:linear-gradient(180deg,var(--primary),var(--secondary));
    color:#fff;
    font-size:21px;
}

.member-info span{
    display:block;
    color:var(--muted);
    font-size:12px;
    font-weight:700;
}

.member-info strong{
    color:#fff;
    font-size:18px;
    font-weight:900;
}

.balance-box{
    margin-top:14px;
    padding:16px;
    border-radius:22px;
    background:linear-gradient(135deg,var(--secondary),var(--primary));
    box-shadow:0 12px 28px rgba(0,0,0,.38);
}

.balance-box span{
    display:block;
    font-size:12px;
    color:rgba(255,255,255,.8);
    font-weight:800;
}

.balance-box strong{
    display:block;
    margin-top:5px;
    font-size:24px;
    color:#fff;
    font-weight:900;
}

.balance-actions{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:8px;
    margin-top:14px;
}

.balance-actions a{
    height:36px;
    border-radius:13px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:6px;
    background:rgba(0,0,0,.28);
    color:#fff;
    font-size:12px;
    font-weight:900;
}

.sidebar-section-title{
    margin:20px 4px 10px;
    color:var(--primary);
    font-size:12px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:1px;
}

.sidebar-menu,
.sidebar-provider-menu{
    display:grid;
    gap:8px;
}

.sidebar-menu a,
.sidebar-provider-menu a{
    height:44px;
    padding:0 13px;
    border-radius:15px;
    display:flex;
    align-items:center;
    gap:10px;
    color:#cbd5e1;
    background:#0b1220;
    border:1px solid rgba(255,255,255,.08);
    font-size:13px;
    font-weight:800;
}

.sidebar-menu a i,
.sidebar-provider-menu a i{
    width:22px;
    color:var(--primary);
    text-align:center;
}

.section-icon-btn{
    width:38px;
    height:38px;
    border:0;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.06);
    color:var(--primary);
}

.category-card{
    text-decoration:none;
}

.empty-box{
    min-width:220px;
    padding:22px;
    border-radius:18px;
    background:#101827;
    color:var(--muted);
    text-align:center;
}

.top-game-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;
    padding:0 12px;
}

.top-game-card{
    border-radius:18px;
    overflow:hidden;
    background:#101827;
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 8px 18px rgba(0,0,0,.28);
}

.top-game-img{
    height:82px;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
}

.top-game-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.top-game-img i{
    color:#111827;
    font-size:24px;
}

.top-game-info{
    padding:9px;
}

.top-game-info strong{
    display:block;
    color:#fff;
    font-size:12px;
    font-weight:900;
    line-height:1.2;
    height:30px;
    overflow:hidden;
}

.top-game-info span{
    display:block;
    margin-top:5px;
    color:var(--muted);
    font-size:10px;
}

.join-source{
    display:none;
}

.join-modal{
    position:fixed;
    inset:0;
    z-index:99999;
    display:none;
    align-items:flex-end;
    background:rgba(0,0,0,.72);
    backdrop-filter:blur(7px);
}

.join-modal.show{
    display:flex;
}

.join-modal-box{
    position:relative;
    width:100%;
    max-width:480px;
    margin:0 auto;
    max-height:78vh;
    overflow:auto;
    border-radius:26px 26px 0 0;
    background:
        radial-gradient(circle at top, rgba(255,255,255,.10), transparent 28%),
        linear-gradient(180deg,#172033,#070b14);
    border:1px solid rgba(255,255,255,.12);
    padding:22px 16px 18px;
    animation:joinUp .24s ease;
}

@keyframes joinUp{
    from{transform:translateY(100%);}
    to{transform:translateY(0);}
}

.join-close{
    position:absolute;
    top:12px;
    right:12px;
    width:40px;
    height:40px;
    border:0;
    border-radius:50%;
    color:#fff;
    background:linear-gradient(180deg,var(--primary),var(--secondary));
    box-shadow:
        0 8px 18px rgba(0,0,0,.45),
        inset 0 2px 0 rgba(255,255,255,.35);
}

.join-modal-head{
    padding-right:48px;
    margin-bottom:16px;
}

.join-modal-head h3{
    margin:0;
    font-size:24px;
    font-weight:900;
    color:#fff;
}

.join-modal-head p{
    margin:4px 0 0;
    color:var(--muted);
    font-size:13px;
}

.join-modal-list{
    display:grid;
    gap:9px;
}

.join-provider-item{
    display:flex;
    align-items:center;
    gap:12px;
    padding:10px;
    border-radius:16px;
    background:#0b1220;
    border:1px solid rgba(255,255,255,.08);
    color:#fff;
}

.join-provider-item img,
.join-provider-fallback{
    width:58px;
    height:44px;
    border-radius:12px;
    background:#fff;
    object-fit:contain;
    padding:5px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#111827;
}

.join-provider-item div{
    flex:1;
    min-width:0;
}

.join-provider-item strong{
    display:block;
    font-size:14px;
    font-weight:900;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.join-provider-item span{
    display:block;
    margin-top:3px;
    color:var(--muted);
    font-size:11px;
}

.join-provider-item > i{
    color:var(--primary);
}

@media(max-width:380px){
    .top-game-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

.game-page{
    padding:14px 12px 96px;
}

.game-top{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:14px;
}

.game-back{
    width:42px;
    height:42px;
    border-radius:14px;
    background:#101827;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    border:1px solid rgba(255,255,255,.08);
}

.game-search-box{
    height:48px;
    border-radius:18px;
    background:#0b1220;
    border:1px solid rgba(255,255,255,.1);
    display:flex;
    align-items:center;
    gap:10px;
    padding:0 14px;
    margin-bottom:12px;
}

.game-search-box i{
    color:var(--primary);
}

.game-search-box input{
    width:100%;
    border:0;
    outline:0;
    background:transparent;
    color:#fff;
    font-size:14px;
}

.game-subtype-tabs{
    display:flex;
    gap:8px;
    overflow-x:auto;
    padding-bottom:10px;
    margin-bottom:12px;
    scrollbar-width:none;
}

.game-subtype-tabs::-webkit-scrollbar{
    display:none;
}

.game-subtab{
    white-space:nowrap;
    border:0;
    border-radius:999px;
    padding:10px 13px;
    background:#101827;
    color:var(--muted);
    font-weight:900;
    border:1px solid rgba(255,255,255,.08);
}

.game-subtab span{
    margin-left:5px;
    color:#fff;
    opacity:.7;
}

.game-subtab.active{
    background:linear-gradient(180deg,var(--primary),var(--secondary));
    color:#fff;
}

.game-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;
}

.game-card{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    background:#101827;
    border:1px solid rgba(255,255,255,.08);
    min-height:168px;
    box-shadow:0 8px 18px rgba(0,0,0,.25);
}

.game-badge{
    position:absolute;
    top:7px;
    left:7px;
    z-index:3;
    padding:4px 7px;
    border-radius:999px;
    background:linear-gradient(180deg,var(--primary),var(--secondary));
    color:#fff;
    font-size:9px;
    font-weight:900;
}

.game-fav{
    position:absolute;
    top:7px;
    right:7px;
    z-index:4;
    width:28px;
    height:28px;
    border:0;
    border-radius:50%;
    background:rgba(0,0,0,.45);
    color:#fff;
}

.game-fav.active{
    color:#ffd56a;
}

.game-img-wrap{
    height:106px;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
}

.game-img-wrap img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.game-img-wrap i{
    color:#111827;
    font-size:26px;
}

.game-card-info{
    padding:8px;
}

.game-card-info span{
    display:block;
    height:30px;
    overflow:hidden;
    color:#fff;
    font-size:12px;
    line-height:1.2;
    font-weight:900;
}

.game-card-info small{
    display:block;
    margin-top:4px;
    color:var(--muted);
    font-size:10px;
}

.game-play-btn{
    position:absolute;
    inset:auto 8px 8px 8px;
    height:34px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:12px;
    font-weight:900;
    background:linear-gradient(180deg,var(--primary),var(--secondary));
    transform:translateY(55px);
    opacity:0;
    transition:.25s ease;
}

.game-card.show-play .game-play-btn,
.game-card:hover .game-play-btn{
    transform:translateY(0);
    opacity:1;
}

@media(max-width:380px){
    .game-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

.play-error{
    margin:18px 12px 100px;
    padding:22px;
    border-radius:22px;
    background:#101827;
    border:1px solid rgba(255,255,255,.1);
    text-align:center;
    color:#fff;
}

.play-error h3{
    margin:0 0 10px;
    font-size:22px;
    font-weight:900;
}

.play-error p{
    color:var(--muted);
    line-height:1.6;
}

.play-error a{
    display:inline-flex;
    margin-top:12px;
    padding:11px 18px;
    border-radius:14px;
    background:linear-gradient(180deg,var(--primary),var(--secondary));
    color:#fff;
    font-weight:900;
}

.wallet-transfer-box{
    margin:12px 0 16px;
    padding:14px;
    border-radius:18px;
    background:#101827;
    border:1px solid rgba(255,255,255,.1);
}

.wallet-title{
    display:flex;
    align-items:center;
    gap:8px;
    margin-bottom:12px;
    color:#fff;
    font-size:14px;
    font-weight:900;
}

.wallet-title i{
    color:var(--primary);
}

.wallet-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:8px;
    margin-bottom:8px;
}

.wallet-row select,
.wallet-row input{
    width:100%;
    height:42px;
    border-radius:13px;
    border:1px solid rgba(255,255,255,.1);
    background:#0b1220;
    color:#fff;
    padding:0 12px;
    outline:none;
}

.wallet-row button{
    border:0;
    border-radius:13px;
    background:linear-gradient(180deg,var(--primary),var(--secondary));
    color:#fff;
    font-weight:900;
}

#walletTransferResult{
    margin-top:8px;
    font-size:12px;
    font-weight:800;
}

#walletTransferResult.success{
    color:#22c55e;
}

#walletTransferResult.error{
    color:#ef4444;
}

.header-btn{
    display:flex;
    align-items:center;
    gap:8px;
}

.header-wallet-btn{
    height:42px;
    max-width:165px;
    border:0;
    border-radius:15px;
    padding:0 10px;
    display:flex;
    align-items:center;
    gap:6px;
    background:linear-gradient(180deg,var(--primary),var(--secondary));
    color:#fff;
    font-weight:900;
    font-size:12px;
    box-shadow:
        0 8px 18px rgba(0,0,0,.45),
        inset 0 2px 0 rgba(255,255,255,.28);
}

.header-wallet-btn span{
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.refresh-mini{
    font-size:11px;
    opacity:.85;
}

.wallet-modal{
    position:fixed;
    inset:0;
    z-index:99999;
    display:none;
    align-items:flex-end;
    background:rgba(0,0,0,.72);
    backdrop-filter:blur(7px);
}

.wallet-modal.show{
    display:flex;
}

.wallet-modal-box{
    width:100%;
    max-width:480px;
    margin:0 auto;
    max-height:82vh;
    overflow:auto;
    border-radius:28px 28px 0 0;
    padding:22px 14px 18px;
    background:
        radial-gradient(circle at top, rgba(255,255,255,.10), transparent 28%),
        linear-gradient(180deg,#172033,#070b14);
    border:1px solid rgba(255,255,255,.12);
}

.wallet-modal-close{
    position:absolute;
    right:14px;
    top:14px;
    width:40px;
    height:40px;
    border:0;
    border-radius:50%;
    color:#fff;
    background:linear-gradient(180deg,var(--primary),var(--secondary));
}

.wallet-modal-head{
    padding-right:50px;
    margin-bottom:14px;
}

.wallet-modal-head h3{
    margin:0;
    color:#fff;
    font-size:24px;
    font-weight:900;
}

.wallet-modal-head p{
    margin:3px 0 0;
    color:var(--muted);
    font-size:13px;
}

.wallet-main-card{
    padding:15px;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    background:linear-gradient(135deg,var(--secondary),var(--primary));
    margin-bottom:16px;
}

.wallet-main-card span{
    display:block;
    color:rgba(255,255,255,.8);
    font-size:12px;
    font-weight:800;
}

.wallet-main-card strong{
    display:block;
    margin-top:4px;
    color:#fff;
    font-size:22px;
    font-weight:900;
}

.wallet-main-card i{
    font-size:30px;
    color:#fff;
}

.wallet-group{
    margin-top:14px;
}

.wallet-group-title{
    margin:0 0 8px;
    color:var(--primary);
    font-size:12px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.8px;
}

.wallet-provider-item{
    display:flex;
    align-items:center;
    gap:10px;
    padding:10px;
    border-radius:16px;
    background:#0b1220;
    border:1px solid rgba(255,255,255,.08);
    margin-bottom:8px;
}

.wallet-provider-item img{
    width:54px;
    height:40px;
    object-fit:contain;
    background:#fff;
    border-radius:10px;
    padding:4px;
}

.wallet-provider-info{
    flex:1;
    min-width:0;
}

.wallet-provider-info strong{
    display:block;
    color:#fff;
    font-size:13px;
    font-weight:900;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.wallet-provider-info span{
    display:block;
    color:var(--muted);
    font-size:11px;
}

.wallet-provider-balance{
    display:flex;
    align-items:center;
    gap:6px;
}

.wallet-provider-balance b{
    color:#fff;
    font-size:12px;
}

.wallet-provider-balance button{
    width:30px;
    height:30px;
    border:0;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    color:var(--primary);
}

.deposit-page{
    padding:14px 12px 100px;
}

.deposit-card{
    background:#101827;
    border:1px solid rgba(255,255,255,.1);
    border-radius:24px;
    padding:16px;
}

.deposit-form{
    display:grid;
    gap:14px;
}

.deposit-form label{
    display:block;
    margin-bottom:7px;
    color:#fff;
    font-weight:900;
    font-size:13px;
}

.deposit-form select,
.deposit-form input,
.deposit-form textarea{
    width:100%;
    border:1px solid rgba(255,255,255,.1);
    background:#0b1220;
    color:#fff;
    border-radius:15px;
    padding:13px;
    outline:none;
}

.deposit-form textarea{
    min-height:90px;
    resize:vertical;
}

.deposit-form small{
    display:block;
    margin-top:6px;
    color:var(--muted);
    font-size:12px;
}

.deposit-submit{
    height:48px;
    border:0;
    border-radius:16px;
    background:linear-gradient(180deg,var(--primary),var(--secondary));
    color:#fff;
    font-weight:900;
    text-transform:uppercase;
}

.deposit-alert{
    padding:12px 14px;
    border-radius:14px;
    margin-bottom:14px;
    font-size:13px;
    font-weight:800;
}

.deposit-alert.error{
    background:rgba(239,68,68,.12);
    color:#fecaca;
}

.deposit-alert.success{
    background:rgba(34,197,94,.12);
    color:#bbf7d0;
}

.deposit-bank-detail{
    display:grid;
    gap:10px;
    padding:14px;
    border-radius:18px;
    background:#0b1220;
    border:1px solid rgba(255,255,255,.08);
}

.deposit-bank-detail span{
    display:block;
    color:var(--muted);
    font-size:11px;
}

.deposit-bank-detail strong{
    display:block;
    color:#fff;
    font-size:15px;
}

.deposit-bank-detail button{
    margin-top:6px;
    border:0;
    border-radius:10px;
    padding:8px 12px;
    background:linear-gradient(180deg,var(--primary),var(--secondary));
    color:#fff;
    font-weight:900;
}

.bank-detail-logo img{
    max-width:90px;
    max-height:52px;
    background:#fff;
    border-radius:12px;
    padding:6px;
}

.deposit-modal{
    position:fixed;
    inset:0;
    z-index:99999;
    display:none;
    align-items:flex-end;
    background:rgba(0,0,0,.75);
    backdrop-filter:blur(8px);
}

.deposit-modal.show{
    display:flex;
}

.deposit-modal-box{
    position:relative;
    width:100%;
    max-width:480px;
    margin:0 auto;
    max-height:85vh;
    overflow:auto;
    border-radius:28px 28px 0 0;
    padding:22px 16px;
    background:linear-gradient(180deg,#172033,#070b14);
    border:1px solid rgba(255,255,255,.12);
}

.deposit-modal-close{
    position:absolute;
    top:14px;
    right:14px;
    width:40px;
    height:40px;
    border:0;
    border-radius:50%;
    color:#fff;
    background:linear-gradient(180deg,var(--primary),var(--secondary));
}

.deposit-modal-box h3{
    margin:0 0 16px;
    color:#fff;
    font-size:24px;
    font-weight:900;
}

.deposit-qr-img{
    display:block;
    width:100%;
    max-width:260px;
    margin:0 auto 16px;
    border-radius:18px;
    background:#fff;
    padding:10px;
}

.deposit-detail-list{
    display:grid;
    gap:10px;
}

.deposit-detail-list div{
    background:#0b1220;
    border-radius:14px;
    padding:12px;
}

.deposit-detail-list span{
    display:block;
    color:var(--muted);
    font-size:11px;
}

.deposit-detail-list strong{
    display:block;
    color:#fff;
    margin-top:3px;
}

.withdraw-balance-box{
    margin-bottom:16px;
    padding:16px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    background:linear-gradient(135deg,var(--secondary),var(--primary));
}

.withdraw-balance-box span{
    display:block;
    color:rgba(255,255,255,.8);
    font-size:12px;
    font-weight:800;
}

.withdraw-balance-box strong{
    display:block;
    margin-top:4px;
    color:#fff;
    font-size:24px;
    font-weight:900;
}

.withdraw-balance-box button{
    width:42px;
    height:42px;
    border:0;
    border-radius:50%;
    color:#111;
    background:#fff;
}

.profile-page{
    padding:14px 12px 100px;
}

.profile-card{
    background:#101827;
    border:1px solid rgba(255,255,255,.1);
    border-radius:24px;
    padding:16px;
}

.profile-box{
    display:flex;
    align-items:center;
    gap:12px;
    padding:14px;
    border-radius:18px;
    background:#0b1220;
    margin-bottom:14px;
}

.profile-avatar{
    width:52px;
    height:52px;
    border-radius:50%;
    display:grid;
    place-items:center;
    background:linear-gradient(180deg,var(--primary),var(--secondary));
    color:#fff;
    font-size:22px;
}

.profile-box strong{
    display:block;
    color:#fff;
    font-size:18px;
}

.profile-box span{
    display:block;
    color:var(--muted);
    font-size:13px;
}

.profile-info-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
}

.profile-info-grid div{
    padding:12px;
    border-radius:15px;
    background:#0b1220;
    border:1px solid rgba(255,255,255,.08);
}

.profile-info-grid span{
    display:block;
    color:var(--muted);
    font-size:11px;
}

.profile-info-grid strong{
    display:block;
    margin-top:4px;
    color:#fff;
    font-size:13px;
    word-break:break-word;
}

.profile-actions{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
    margin-top:14px;
}

.profile-actions button,
.referral-box button{
    border:0;
    border-radius:14px;
    padding:12px;
    color:#fff;
    font-weight:900;
    background:linear-gradient(180deg,var(--primary),var(--secondary));
}

.referral-box{
    margin-top:14px;
    padding:14px;
    border-radius:18px;
    background:#0b1220;
    border:1px solid rgba(255,255,255,.08);
}

.referral-box span{
    display:block;
    color:var(--muted);
    font-size:12px;
}

.referral-box strong{
    display:block;
    margin:6px 0 10px;
    color:#ffd56a;
    font-size:22px;
    letter-spacing:1px;
}

.profile-modal{
    position:fixed;
    inset:0;
    z-index:99999;
    display:none;
    align-items:flex-end;
    background:rgba(0,0,0,.75);
    backdrop-filter:blur(8px);
}

.profile-modal.show{
    display:flex;
}

.profile-modal-box{
    position:relative;
    width:100%;
    max-width:480px;
    margin:0 auto;
    max-height:85vh;
    overflow:auto;
    border-radius:28px 28px 0 0;
    padding:22px 16px;
    background:linear-gradient(180deg,#172033,#070b14);
    border:1px solid rgba(255,255,255,.12);
}

.profile-modal-close{
    position:absolute;
    top:14px;
    right:14px;
    width:40px;
    height:40px;
    border:0;
    border-radius:50%;
    color:#fff;
    background:linear-gradient(180deg,var(--primary),var(--secondary));
}

.profile-modal-box h3{
    margin:0 0 16px;
    color:#fff;
    font-size:24px;
}

.kyc-step{
    display:none;
}

.kyc-step.active{
    display:grid;
    gap:14px;
}

.deposit-submit.secondary{
    background:#111827;
    color:#fff;
}

@media(max-width:380px){
    .profile-info-grid,
    .profile-actions{
        grid-template-columns:1fr;
    }
}

.history-page{
    padding:14px 12px 100px;
}

.history-card{
    background:#101827;
    border:1px solid rgba(255,255,255,.1);
    border-radius:24px;
    padding:16px;
}

.history-filter{
    display:grid;
    grid-template-columns:1fr 1fr auto auto;
    gap:8px;
    margin-bottom:14px;
}

.history-filter input{
    height:42px;
    border-radius:13px;
    border:1px solid rgba(255,255,255,.1);
    background:#0b1220;
    color:#fff;
    padding:0 12px;
}

.history-filter button,
.history-filter a{
    height:42px;
    border:0;
    border-radius:13px;
    padding:0 14px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:6px;
    background:linear-gradient(180deg,var(--primary),var(--secondary));
    color:#fff;
    font-weight:900;
}

.history-filter a{
    background:#0b1220;
    border:1px solid rgba(255,255,255,.1);
}

.history-tabs{
    display:flex;
    gap:8px;
    overflow-x:auto;
    padding-bottom:10px;
    margin-bottom:12px;
    scrollbar-width:none;
}

.history-tabs::-webkit-scrollbar{
    display:none;
}

.history-tab{
    flex:0 0 auto;
    height:42px;
    border:0;
    border-radius:999px;
    padding:0 16px;
    background:#0b1220;
    color:var(--muted);
    border:1px solid rgba(255,255,255,.08);
    font-weight:900;
}

.history-tab.active{
    color:#fff;
    background:linear-gradient(180deg,var(--primary),var(--secondary));
}

.history-panel{
    display:none;
}

.history-panel.active{
    display:block;
}

.table-scroll{
    width:100%;
    overflow-x:auto;
}

.history-table{
    width:100%;
    min-width:720px;
    color:#fff;
}

.history-badge{
    display:inline-flex;
    padding:5px 9px;
    border-radius:999px;
    font-size:11px;
    font-weight:900;
    text-transform:uppercase;
}

.history-badge.success{
    background:rgba(34,197,94,.15);
    color:#86efac;
}

.history-badge.warning{
    background:rgba(245,158,11,.15);
    color:#fde68a;
}

.history-badge.danger{
    background:rgba(239,68,68,.15);
    color:#fecaca;
}

.empty-cell{
    text-align:center;
    color:var(--muted);
    padding:24px!important;
}

.kyc-history-box{
    padding:18px;
    border-radius:18px;
    background:#0b1220;
    border:1px solid rgba(255,255,255,.08);
}

.kyc-history-box span,
.kyc-history-grid span{
    display:block;
    color:var(--muted);
    font-size:12px;
}

.kyc-history-box strong{
    display:block;
    margin:6px 0 14px;
    color:#fff;
    font-size:18px;
}

.kyc-history-box a{
    display:inline-flex;
    padding:11px 16px;
    border-radius:14px;
    background:linear-gradient(180deg,var(--primary),var(--secondary));
    color:#fff;
    font-weight:900;
}

.kyc-history-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
}

.kyc-history-grid div{
    padding:13px;
    border-radius:16px;
    background:#0b1220;
    border:1px solid rgba(255,255,255,.08);
}

.kyc-history-grid div.full{
    grid-column:1 / -1;
}

.kyc-history-grid strong{
    display:block;
    margin-top:5px;
    color:#fff;
    font-size:13px;
    word-break:break-word;
}

.referral-history strong{
    color:#ffd56a;
    font-size:22px;
    letter-spacing:1px;
}

.referral-history button{
    margin-top:10px;
    border:0;
    border-radius:13px;
    padding:10px 14px;
    background:linear-gradient(180deg,var(--primary),var(--secondary));
    color:#fff;
    font-weight:900;
}

.dt-container{
    color:#fff;
}

.dt-container .dt-search input,
.dt-container .dt-length select{
    background:#0b1220!important;
    color:#fff!important;
    border:1px solid rgba(255,255,255,.1)!important;
    border-radius:10px!important;
    padding:8px!important;
}

.dt-container .dt-info,
.dt-container label{
    color:var(--muted)!important;
}

.dt-container .dt-paging button{
    background:#0b1220!important;
    color:#fff!important;
    border:1px solid rgba(255,255,255,.08)!important;
    border-radius:9px!important;
}

@media(max-width:420px){
    .history-filter{
        grid-template-columns:1fr 1fr;
    }

    .history-filter button,
    .history-filter a{
        width:100%;
    }

    .kyc-history-grid{
        grid-template-columns:1fr;
    }
}

.promo-page{
    padding:14px 12px 100px;
}

.promo-card-wrap{
    background:#101827;
    border:1px solid rgba(255,255,255,.1);
    border-radius:24px;
    padding:16px;
}

.promo-grid{
    display:grid;
    gap:14px;
}

.promo-item{
    overflow:hidden;
    border-radius:22px;
    background:#0b1220;
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 10px 22px rgba(0,0,0,.25);
}

.promo-banner{
    width:100%;
    height:150px;
    object-fit:cover;
    display:block;
}

.promo-banner-placeholder{
    height:150px;
    display:grid;
    place-items:center;
    background:linear-gradient(135deg,var(--secondary),var(--primary));
    color:#fff;
    font-size:42px;
}

.promo-body{
    padding:14px;
}

.promo-type{
    display:inline-flex;
    margin-bottom:8px;
    padding:5px 10px;
    border-radius:999px;
    background:rgba(255,255,255,.08);
    color:#ffd56a;
    font-size:11px;
    font-weight:900;
    text-transform:uppercase;
}

.promo-body h4{
    margin:0 0 8px;
    color:#fff;
    font-size:19px;
    font-weight:900;
}

.promo-body p{
    margin:0 0 12px;
    color:var(--muted);
    font-size:13px;
    line-height:1.6;
}

.promo-meta{
    display:flex;
    flex-wrap:wrap;
    gap:7px;
    margin-bottom:13px;
}

.promo-meta span{
    padding:6px 9px;
    border-radius:999px;
    background:rgba(184,134,11,.15);
    color:#fde68a;
    font-size:11px;
    font-weight:800;
}

.promo-claim-btn,
.promo-claimed-btn{
    width:100%;
    height:44px;
    border:0;
    border-radius:15px;
    font-weight:900;
    color:#fff;
}

.promo-claim-btn{
    background:linear-gradient(180deg,var(--primary),var(--secondary));
}

.promo-claimed-btn{
    background:#111827;
    color:var(--muted);
    border:1px solid rgba(255,255,255,.08);
}

.coupon-history-box{
    margin-top:18px;
    padding-top:16px;
    border-top:1px solid rgba(255,255,255,.08);
}

.coupon-history-box h3{
    color:#fff;
    margin:0 0 12px;
    font-size:21px;
}

.coupon-list{
    display:grid;
    gap:10px;
}

.coupon-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:10px;
    padding:12px;
    border-radius:16px;
    background:#0b1220;
    border:1px solid rgba(255,255,255,.08);
}

.coupon-item span{
    display:block;
    color:var(--muted);
    font-size:11px;
}

.coupon-item strong{
    display:block;
    color:#fff;
    margin-top:4px;
    font-size:15px;
}

.coupon-item small{
    color:#ffd56a;
    font-weight:900;
}

.coupon-status{
    padding:6px 9px;
    border-radius:999px;
    font-size:11px;
    text-transform:uppercase;
}

.coupon-status.waiting{
    background:rgba(245,158,11,.15);
    color:#fde68a;
}

.coupon-status.winner{
    background:rgba(34,197,94,.15);
    color:#86efac;
}

.coupon-status.lose,
.coupon-status.cancelled{
    background:rgba(239,68,68,.15);
    color:#fecaca;
}

.banking-page{
    padding:14px 12px 100px;
}

.banking-card{
    background:#101827;
    border:1px solid rgba(255,255,255,.1);
    border-radius:24px;
    padding:16px;
}

.banking-info-box{
    display:flex;
    align-items:flex-start;
    gap:10px;
    padding:12px;
    border-radius:16px;
    background:rgba(184,134,11,.12);
    border:1px solid rgba(255,213,106,.2);
    color:#fde68a;
    font-size:13px;
    line-height:1.5;
    margin-bottom:14px;
}

.banking-info-box i{
    margin-top:2px;
    color:#ffd56a;
}

.banking-list{
    display:grid;
    gap:12px;
}

.user-bank-card{
    display:flex;
    gap:12px;
    padding:14px;
    border-radius:20px;
    background:#0b1220;
    border:1px solid rgba(255,255,255,.08);
}

.user-bank-card.primary{
    border-color:rgba(255,213,106,.35);
    box-shadow:0 0 18px rgba(184,134,11,.12);
}

.user-bank-icon{
    width:48px;
    height:48px;
    flex:0 0 48px;
    border-radius:16px;
    display:grid;
    place-items:center;
    background:linear-gradient(180deg,var(--primary),var(--secondary));
    color:#fff;
    font-size:20px;
}

.user-bank-info{
    flex:1;
    min-width:0;
}

.user-bank-top{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:7px;
    margin-bottom:10px;
}

.user-bank-top strong{
    color:#fff;
    font-size:17px;
    font-weight:900;
}

.bank-tag{
    padding:4px 8px;
    border-radius:999px;
    font-size:10px;
    font-weight:900;
    text-transform:uppercase;
}

.bank-tag.primary{
    background:rgba(255,213,106,.18);
    color:#fde68a;
}

.bank-tag.active{
    background:rgba(34,197,94,.15);
    color:#86efac;
}

.bank-tag.pending{
    background:rgba(245,158,11,.15);
    color:#fde68a;
}

.bank-tag.inactive{
    background:rgba(239,68,68,.15);
    color:#fecaca;
}

.bank-detail-row{
    display:grid;
    gap:3px;
    margin-top:8px;
}

.bank-detail-row span{
    color:var(--muted);
    font-size:11px;
}

.bank-detail-row b{
    color:#fff;
    font-size:13px;
    word-break:break-word;
}

.banking-add-btn{
    width:100%;
    margin-top:16px;
    height:46px;
    border:0;
    border-radius:16px;
    background:linear-gradient(180deg,var(--primary),var(--secondary));
    color:#fff;
    font-weight:900;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
}

.pool-area{
    margin:14px 0;
    padding:0 12px;
}

.pool-carousel-wrap{
    position:relative;
}

.pool-carousel{
    display:flex;
    gap:12px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    scrollbar-width:none;
    padding-bottom:10px;
}

.pool-carousel::-webkit-scrollbar{
    display:none;
}

.pool-item{
    flex:0 0 calc(50% - 6px);
    scroll-snap-align:start;
}

.box-pool{
    display:block;
    overflow:hidden;
    border-radius:20px;
    background:linear-gradient(180deg,#151b2b,#0b101b);
    border:1px solid rgba(255,255,255,.1);
    box-shadow:0 10px 24px rgba(0,0,0,.32);
}

.pool-head{
    padding:10px;
    text-align:center;
    background:linear-gradient(180deg,var(--primary),var(--secondary));
    color:#fff;
    font-size:13px;
    font-weight:900;
    text-transform:uppercase;
}

.pool-body{
    padding:18px 8px;
    text-align:center;
}

.pool-number{
    display:inline-flex;
    justify-content:center;
    gap:3px;
    color:#ffd56a;
    font-size:28px;
    font-weight:900;
    letter-spacing:2px;
    text-shadow:0 0 14px rgba(255,213,106,.5);
}

.pool-foot{
    padding:9px;
    text-align:center;
    color:var(--muted);
    font-size:11px;
    border-top:1px solid rgba(255,255,255,.08);
}

.pool-dots{
    display:flex;
    justify-content:center;
    gap:6px;
    margin-top:4px;
}

.pool-dot{
    width:8px;
    height:8px;
    border:0;
    border-radius:999px;
    background:rgba(255,255,255,.25);
}

.pool-dot.active{
    width:22px;
    background:var(--primary);
}

.pool-modal{
    position:fixed;
    inset:0;
    z-index:99999;
    display:none;
    align-items:flex-end;
    background:rgba(0,0,0,.75);
    backdrop-filter:blur(8px);
}

.pool-modal.show{
    display:flex;
}

.pool-modal-box{
    position:relative;
    width:100%;
    max-width:480px;
    margin:0 auto;
    max-height:85vh;
    overflow:auto;
    border-radius:28px 28px 0 0;
    padding:22px 16px;
    background:linear-gradient(180deg,#172033,#070b14);
    border:1px solid rgba(255,255,255,.12);
}

.pool-modal-close{
    position:absolute;
    top:14px;
    right:14px;
    width:40px;
    height:40px;
    border:0;
    border-radius:50%;
    background:linear-gradient(180deg,var(--primary),var(--secondary));
    color:#fff;
    font-size:18px;
}

.pool-modal-box h3{
    margin:0 0 16px;
    color:#fff;
    font-size:22px;
}

.pool-modal-box h3 span{
    color:#ffd56a;
}

.pool-table-wrap{
    overflow-x:auto;
}

.pool-history-table{
    width:100%;
    border-collapse:collapse;
    min-width:420px;
}

.pool-history-table th,
.pool-history-table td{
    padding:11px 9px;
    border-bottom:1px solid rgba(255,255,255,.08);
    color:#fff;
    font-size:13px;
    text-align:left;
}

.pool-history-table th{
    color:#ffd56a;
    background:#0b1220;
}

@media(min-width:520px){
    .pool-item{
        flex-basis:calc(33.333% - 8px);
    }
}

.contact-page{
    padding:14px 12px 100px;
}

.contact-card{
    background:#101827;
    border:1px solid rgba(255,255,255,.1);
    border-radius:24px;
    padding:16px;
}

.contact-notice{
    display:flex;
    align-items:flex-start;
    gap:10px;
    padding:13px;
    border-radius:17px;
    background:rgba(184,134,11,.12);
    border:1px solid rgba(255,213,106,.2);
    color:#fde68a;
    font-size:13px;
    line-height:1.6;
    margin-bottom:14px;
}

.contact-notice i{
    margin-top:3px;
    color:#ffd56a;
}

.contact-grid{
    display:grid;
    gap:12px;
}

.contact-item{
    display:flex;
    align-items:center;
    gap:12px;
    padding:14px;
    border-radius:20px;
    background:#0b1220;
    border:1px solid rgba(255,255,255,.08);
    color:#fff;
}

.contact-item > div:nth-child(2){
    flex:1;
    min-width:0;
}

.contact-item span{
    display:block;
    color:var(--muted);
    font-size:12px;
}

.contact-item strong{
    display:block;
    margin-top:4px;
    color:#fff;
    font-size:14px;
    word-break:break-word;
}

.contact-icon{
    width:48px;
    height:48px;
    flex:0 0 48px;
    border-radius:16px;
    display:grid;
    place-items:center;
    color:#fff;
    font-size:22px;
    background:linear-gradient(180deg,var(--primary),var(--secondary));
}

.contact-icon.whatsapp{
    background:linear-gradient(180deg,#22c55e,#15803d);
}

.contact-icon.telegram{
    background:linear-gradient(180deg,#38bdf8,#0369a1);
}

.contact-icon.email{
    background:linear-gradient(180deg,#f59e0b,#b45309);
}

.contact-info-list{
    display:grid;
    gap:12px;
    margin-top:14px;
}

.contact-info-box{
    display:flex;
    align-items:flex-start;
    gap:12px;
    padding:14px;
    border-radius:20px;
    background:#0b1220;
    border:1px solid rgba(255,255,255,.08);
}

.contact-info-box i{
    width:42px;
    height:42px;
    flex:0 0 42px;
    border-radius:14px;
    display:grid;
    place-items:center;
    background:rgba(184,134,11,.16);
    color:#ffd56a;
}

.contact-info-box span{
    display:block;
    color:var(--muted);
    font-size:12px;
}

.contact-info-box strong{
    display:block;
    margin-top:4px;
    color:#fff;
    font-size:14px;
    line-height:1.5;
}

.social-contact{
    display:flex;
    justify-content:center;
    gap:10px;
    margin-top:16px;
}

.social-contact a{
    width:42px;
    height:42px;
    border-radius:14px;
    display:grid;
    place-items:center;
    color:#fff;
    background:linear-gradient(180deg,var(--primary),var(--secondary));
}

.member-jackpot-area{
    margin:14px 0;
    padding:0 12px;
}

.member-jackpot-box{
    overflow:hidden;
    border-radius:22px;
    background:linear-gradient(180deg,#101827,#070b14);
    border:1px solid rgba(255,255,255,.1);
    box-shadow:0 12px 26px rgba(0,0,0,.3);
}

.member-jackpot-head{
    display:grid;
    grid-template-columns:1.5fr .8fr 1fr;
    gap:8px;
    padding:12px;
    background:linear-gradient(180deg,var(--primary),var(--secondary));
    color:#fff;
    font-size:11px;
    font-weight:900;
    text-transform:uppercase;
}

.member-jackpot-scroll{
    height:310px;
    overflow:hidden;
    position:relative;
}

.member-jackpot-track{
    display:grid;
    animation:memberJackpotUp 22s linear infinite;
}

.member-jackpot-row{
    display:grid;
    grid-template-columns:1.5fr .8fr 1fr;
    gap:8px;
    align-items:center;
    min-height:62px;
    padding:10px 12px;
    border-bottom:1px solid rgba(255,255,255,.07);
}

.member-jackpot-game{
    display:flex;
    align-items:center;
    gap:9px;
    min-width:0;
}

.member-jackpot-img{
    width:42px;
    height:42px;
    flex:0 0 42px;
    border-radius:12px;
    display:grid;
    place-items:center;
    overflow:hidden;
    background:#0b1220;
    color:#ffd56a;
}

.member-jackpot-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.member-jackpot-game strong{
    color:#fff;
    font-size:12px;
    line-height:1.3;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.member-jackpot-user{
    color:#cbd5e1;
    font-size:12px;
    font-weight:800;
}

.member-jackpot-amount{
    color:#ffd56a;
    font-size:12px;
    font-weight:900;
    text-align:right;
    text-shadow:0 0 12px rgba(255,213,106,.35);
}

.member-jackpot-scroll::before,
.member-jackpot-scroll::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    height:35px;
    z-index:2;
    pointer-events:none;
}

.member-jackpot-scroll::before{
    top:0;
    background:linear-gradient(180deg,#101827,transparent);
}

.member-jackpot-scroll::after{
    bottom:0;
    background:linear-gradient(0deg,#070b14,transparent);
}

@keyframes memberJackpotUp{
    0%{
        transform:translateY(0);
    }
    100%{
        transform:translateY(-50%);
    }
}

.checkin-popup{
    position:fixed;
    inset:0;
    z-index:99999;
    background:rgba(0,0,0,.72);
    display:none;
    align-items:center;
    justify-content:center;
    padding:18px;
}

.checkin-popup.show{
    display:flex;
}

.checkin-box{
    position:relative;
    width:100%;
    max-width:360px;
    border-radius:26px;
    padding:20px;
    background:linear-gradient(180deg,#151b2b,#070b14);
    border:1px solid rgba(255,255,255,.12);
    box-shadow:0 20px 45px rgba(0,0,0,.55);
}

.checkin-close{
    position:absolute;
    right:14px;
    top:14px;
    width:34px;
    height:34px;
    border:0;
    border-radius:50%;
    background:var(--gradient);
    color:var(--text);
    font-weight:900;
}

.checkin-head{
    text-align:center;
    margin-bottom:14px;
}

.checkin-head i{
    width:58px;
    height:58px;
    display:grid;
    place-items:center;
    margin:0 auto 10px;
    border-radius:20px;
    background:var(--gradient);
    color:#111;
    font-size:24px;
}

.checkin-head h3{
    margin:0;
    color:#fff;
}

.checkin-head p{
    margin:6px 0 0;
    color:var(--text);
    font-size:13px;
}

.checkin-days{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:9px;
}

.checkin-day{
    padding:11px;
    border-radius:16px;
    background:#0b1220;
    border:1px solid rgba(255,255,255,.08);
}

.checkin-day span{
    display:block;
    color:#cbd5e1;
    font-size:12px;
}

.checkin-day strong{
    display:block;
    color:#ffd56a;
    font-size:13px;
    margin-top:4px;
}

.checkin-submit{
    width:100%;
    margin-top:14px;
    border:0;
    border-radius:10px;
    padding:13px;
    font-weight:900;
    background:var(--gradient);
    color:var(--text);
}

.checkin-draw-link{
    margin-top:10px;
    display:block;
    text-align:center;
    color:var(--text);
    font-size:13px;
    font-weight:900;
    padding: 13px;
    background: var(--gradient);
    border-radius: 10px;
}

/* =========================
   CHECKIN SHORTCUT
========================= */

.checkin-shortcut{
    padding:0 14px;
    margin:14px 0;
}

.checkin-btn{
    position:relative;
    overflow:hidden;
    display:flex;
    align-items:center;
    gap:12px;
    padding:14px;
    border-radius:18px;
    background:linear-gradient(
        135deg,
        #b8860b,
        #ffd56a
    );
    color:#111;
    font-weight:700;
    box-shadow:0 8px 24px rgba(184,134,11,.35);
}

.checkin-btn::before{
    content:'';
    position:absolute;
    top:0;
    left:-120%;
    width:60%;
    height:100%;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.55),
        transparent
    );
    animation:checkinShine 3s infinite;
}

@keyframes checkinShine{
    100%{
        left:160%;
    }
}

.checkin-icon{
    width:48px;
    height:48px;
    flex:0 0 48px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:14px;
    background:rgba(255,255,255,.25);
    font-size:22px;
}

.checkin-text{
    flex:1;
}

.checkin-text strong{
    display:block;
    font-size:15px;
    margin-bottom:2px;
}

.checkin-text small{
    display:block;
    color:#5c4200;
    font-size:12px;
}

.checkin-arrow{
    font-size:18px;
}