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

html{
    scroll-behavior:smooth;
}

body{
    min-height:100vh;
    background:
        radial-gradient(circle at 20% 0%, rgba(255,206,58,.16), transparent 28%),
        radial-gradient(circle at 80% 20%, rgba(118,35,255,.35), transparent 35%),
        linear-gradient(180deg,#090313 0%,#1b0642 45%,#07020e 100%);
    font-family:Arial, Helvetica, sans-serif;
    color:#fff;
}

a{
    text-decoration:none;
}

.vip-page{
    width:100%;
    min-height:100vh;
    padding-bottom:30px;
}

/* HEADER */

.vip-header{
    position:sticky;
    top:0;
    z-index:100;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:16px 28px;
    background:rgba(8,3,18,.92);
    backdrop-filter:blur(16px);
    border-bottom:1px solid rgba(255,255,255,.08);
}

.vip-header-left{
    display:flex;
    align-items:center;
    gap:18px;
}

.menu-toggle{
    width:54px;
    height:54px;
    border:none;
    border-radius:18px;
    background:rgba(255,255,255,.08);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:6px;
    cursor:pointer;
}

.menu-toggle span{
    width:24px;
    height:3px;
    border-radius:20px;
    background:#fff;
    transition:.25s;
}

.menu-toggle.active span:nth-child(1){
    transform:translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2){
    opacity:0;
}

.menu-toggle.active span:nth-child(3){
    transform:translateY(-9px) rotate(-45deg);
}

.brand-area{
    display:flex;
    align-items:center;
    gap:14px;
    color:#ffd84f;
}

.brand-area img{
    width:62px;
    height:62px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid #ffd84f;
    box-shadow:0 0 20px rgba(255,216,79,.25);
}

.brand-area h1,
.brand-area h2{
    font-family:Georgia, serif;
    letter-spacing:10px;
    line-height:1;
    font-weight:900;
    color:#ffe066;
    text-shadow:0 2px 12px rgba(255,211,60,.2);
}

.brand-area h1{
    font-size:26px;
}

.brand-area h2{
    font-size:26px;
}

.vip-header-actions{
    display:flex;
    align-items:center;
    gap:12px;
}

.btn-login-main,
.btn-signup-main{
    min-width:120px;
    height:56px;
    border-radius:18px;
    border:1px solid rgba(255,216,79,.65);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:15px;
    font-weight:1000;
    letter-spacing:.5px;
    cursor:pointer;
}

.btn-login-main{
    background:linear-gradient(135deg,#ffe066,#ff9f0a);
    color:#140900;
    border:none;
    box-shadow:0 8px 24px rgba(255,171,0,.25);
}

.btn-signup-main{
    background:rgba(255,255,255,.04);
    color:#fff;
}

/* MOBILE MENU */

.mobile-menu{
    position:fixed;
    top:92px;
    left:18px;
    right:18px;
    z-index:99;
    display:none;
    grid-template-columns:1fr;
    gap:8px;
    padding:14px;
    border-radius:22px;
    background:rgba(12,5,28,.96);
    border:1px solid rgba(255,255,255,.1);
    backdrop-filter:blur(18px);
    box-shadow:0 18px 45px rgba(0,0,0,.35);
}

.mobile-menu.show{
    display:grid;
}

.mobile-menu a{
    color:#fff;
    padding:14px;
    border-radius:16px;
    background:rgba(255,255,255,.06);
    font-weight:800;
}

/* HERO */

.hero-section{
    width:min(1180px, calc(100% - 44px));
    margin:18px auto 0;
}

.hero-card{
    min-height:430px;
    position:relative;
    overflow:hidden;
    border-radius:0;
    background:
        radial-gradient(circle at 73% 45%, rgba(255,167,0,.25), transparent 30%),
        linear-gradient(100deg, rgba(10,3,22,.98) 0%, rgba(37,8,85,.96) 48%, rgba(77,18,150,.78) 100%);
    border:1px solid rgba(255,255,255,.07);
    box-shadow:0 25px 70px rgba(0,0,0,.35);
    display:grid;
    grid-template-columns:1.1fr .9fr;
    align-items:center;
    padding:42px;
}

.hero-card:before{
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(90deg, rgba(0,0,0,.45), transparent),
        radial-gradient(circle at 85% 20%, rgba(255,225,80,.18), transparent 28%);
    pointer-events:none;
}

.hero-content{
    position:relative;
    z-index:2;
}

.hero-badge{
    font-size:23px;
    letter-spacing:3px;
    color:#fff;
    opacity:.95;
    margin-bottom:10px;
}

.hero-content h2{
    font-family:Georgia, serif;
    font-size:60px;
    letter-spacing:3px;
    color:#ffe066;
    text-shadow:0 0 26px rgba(255,210,64,.25);
    margin-bottom:16px;
}

.hero-content p{
    max-width:420px;
    color:rgba(255,255,255,.82);
    font-size:19px;
    line-height:1.45;
    margin-bottom:26px;
}

.hero-play-btn{
    border:none;
    min-width:210px;
    height:62px;
    border-radius:16px;
    background:linear-gradient(135deg,#ffe066,#ff9900);
    color:#160900;
    font-size:20px;
    font-weight:1000;
    cursor:pointer;
    box-shadow:0 12px 28px rgba(255,171,0,.28);
}

.hero-dots{
    display:flex;
    gap:10px;
    margin-top:28px;
}

.hero-dots span{
    width:13px;
    height:13px;
    border-radius:50%;
    background:rgba(255,255,255,.28);
}

.hero-dots span.active{
    background:#ffe066;
}

.hero-visual{
    position:relative;
    z-index:2;
    height:300px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.hero-visual img{
    width:270px;
    height:270px;
    object-fit:cover;
    border-radius:50%;
    border:4px solid #ffe066;
    box-shadow:0 0 45px rgba(255,216,79,.30);
}

/* PROMO CASH IN */

.promo-cashin{
    width:min(1180px, calc(100% - 44px));
    margin:24px auto 0;
    position:relative;
    overflow:hidden;
    padding:24px;
    border-radius:28px;
    background:
        radial-gradient(circle at 15% 10%, rgba(255,224,102,.20), transparent 30%),
        radial-gradient(circle at 85% 20%, rgba(141,68,255,.35), transparent 32%),
        linear-gradient(135deg,#0b0717 0%,#211047 48%,#4a168b 100%);
    border:1px solid rgba(255,224,102,.32);
    box-shadow:0 18px 45px rgba(0,0,0,.38);
}

.promo-cashin:before{
    content:"";
    position:absolute;
    top:-80px;
    left:-120px;
    width:180px;
    height:260px;
    background:linear-gradient(90deg,transparent,rgba(255,255,255,.18),transparent);
    transform:rotate(25deg);
    animation:promoShine 3.5s linear infinite;
}

@keyframes promoShine{
    0%{left:-180px;}
    100%{left:120%;}
}

.promo-title{
    position:relative;
    z-index:2;
    text-align:center;
    margin-bottom:18px;
}

.promo-title span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:#111;
    background:linear-gradient(135deg,#ffe066,#ffb000);
    padding:8px 14px;
    border-radius:999px;
    font-size:12px;
    font-weight:1000;
    letter-spacing:1.5px;
    box-shadow:0 8px 18px rgba(255,176,0,.25);
}

.promo-title h2{
    margin:12px 0 8px;
    font-family:Georgia, serif;
    font-size:36px;
    letter-spacing:1px;
    color:#ffe066;
    text-shadow:0 0 22px rgba(255,216,79,.22);
}

.promo-title p{
    color:rgba(255,255,255,.78);
    font-size:15px;
}

.promo-grid{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
}

.promo-box{
    position:relative;
    overflow:hidden;
    min-height:102px;
    padding:18px 14px;
    border-radius:20px;
    text-align:center;
    background:rgba(255,255,255,.07);
    border:1px solid rgba(255,255,255,.12);
    box-shadow:inset 0 0 20px rgba(255,255,255,.04);
}

.promo-box:after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(135deg,rgba(255,224,102,.14),transparent 45%);
    pointer-events:none;
}

.promo-box strong{
    position:relative;
    z-index:2;
    display:block;
    font-size:28px;
    color:#fff;
    margin-bottom:8px;
}

.promo-box span{
    position:relative;
    z-index:2;
    display:inline-flex;
    color:#111;
    background:linear-gradient(135deg,#ffe066,#ffae00);
    padding:7px 12px;
    border-radius:999px;
    font-size:14px;
    font-weight:1000;
}

.promo-btn{
    position:relative;
    z-index:2;
    width:100%;
    margin-top:18px;
    border:none;
    border-radius:18px;
    padding:16px;
    font-size:17px;
    font-weight:1000;
    cursor:pointer;
    background:linear-gradient(135deg,#ffe066,#ff9f0a);
    color:#130900;
    box-shadow:0 12px 26px rgba(255,171,0,.28);
    animation:pulseBonus 1.3s infinite;
}

@keyframes pulseBonus{
    0%{transform:scale(1);}
    50%{transform:scale(1.025);}
    100%{transform:scale(1);}
}

/* GAMES */

.games-section{
    width:min(1180px, calc(100% - 44px));
    margin:34px auto 0;
}

.section-head{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:18px;
    margin-bottom:22px;
}

.section-head h2{
    font-family:Georgia, serif;
    font-size:44px;
    letter-spacing:1px;
    color:#fff;
    text-shadow:0 4px 22px rgba(0,0,0,.35);
}

.section-head p{
    margin-top:8px;
    font-size:20px;
    letter-spacing:9px;
    color:rgba(255,255,255,.48);
}

.see-all-link{
    white-space:nowrap;
    color:#ffe066;
    font-size:20px;
    font-weight:1000;
}

.games-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.game-card{
    position:relative;
    overflow:hidden;
    border-radius:28px;
    background:linear-gradient(180deg,#172237,#080d15);
    border:1px solid rgba(255,255,255,.10);
    box-shadow:
        0 16px 35px rgba(0,0,0,.38),
        0 0 28px rgba(125,57,255,.12);
}

.game-card:hover{
    transform:translateY(-4px);
    transition:.25s;
}

.game-badge{
    position:absolute;
    top:14px;
    left:14px;
    z-index:2;
    padding:10px 18px;
    border-radius:14px;
    background:linear-gradient(135deg,#00d977,#00bd6f);
    color:#fff;
    font-size:14px;
    font-weight:1000;
    box-shadow:0 8px 18px rgba(0,210,120,.25);
}

.game-thumb{
    width:100%;
    aspect-ratio:1/1;
    background:#101010;
    overflow:hidden;
}

.game-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.fallback-thumb{
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:64px;
    background:linear-gradient(135deg,#220942,#08020f);
}

.game-info{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:10px;
    padding:16px;
}

.game-info h3{
    color:#fff;
    font-size:16px;
    line-height:1.2;
    max-width:155px;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.game-info p{
    color:rgba(255,255,255,.55);
    font-size:12px;
    margin-top:4px;
    font-weight:700;
}

.game-info button{
    border:none;
    border-radius:12px;
    background:linear-gradient(135deg,#ffe066,#ff9900);
    color:#160900;
    padding:10px 14px;
    font-weight:1000;
    cursor:pointer;
}

.empty-games{
    text-align:center;
    padding:42px 20px;
    border-radius:24px;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08);
}

.empty-games div{
    font-size:44px;
}

.empty-games h3{
    color:#ffe066;
    margin:10px 0;
}

/* TRUST STRIP */

.trust-strip{
    width:min(1180px, calc(100% - 44px));
    margin:34px auto 0;
    padding:24px;
    border-radius:28px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:16px;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 14px 38px rgba(0,0,0,.22);
}

.trust-strip div{
    text-align:center;
}

.trust-strip strong{
    display:block;
    color:#ffe066;
    font-size:18px;
    margin-bottom:8px;
}

.trust-strip span{
    color:rgba(255,255,255,.75);
    font-size:14px;
}

/* LOGIN MODAL */

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

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

.login-box{
    width:min(430px,100%);
    position:relative;
    padding:28px;
    border-radius:30px;
    background:
        radial-gradient(circle at top, rgba(255,216,79,.16), transparent 28%),
        linear-gradient(180deg,#1d0836,#08030f);
    border:1px solid rgba(255,255,255,.10);
    box-shadow:0 24px 70px rgba(0,0,0,.5);
}

.close-btn{
    position:absolute;
    right:16px;
    top:16px;
    width:38px;
    height:38px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    color:#fff;
    font-size:25px;
    cursor:pointer;
}

.login-logo{
    display:block;
    width:86px;
    height:86px;
    object-fit:cover;
    border-radius:50%;
    border:3px solid #ffe066;
    margin:0 auto 14px;
}

.login-box h2{
    text-align:center;
    color:#ffe066;
    font-size:25px;
    margin-bottom:4px;
}

.login-subtitle{
    text-align:center;
    color:rgba(255,255,255,.62);
    margin-bottom:18px;
}

.login-box label{
    display:block;
    color:rgba(255,255,255,.8);
    font-size:13px;
    font-weight:800;
    margin-bottom:12px;
}

.login-box input{
    width:100%;
    margin-top:7px;
    border:none;
    outline:none;
    border-radius:16px;
    padding:15px;
    background:rgba(255,255,255,.08);
    color:#fff;
    border:1px solid rgba(255,255,255,.10);
    font-size:15px;
}

.login-box input:focus{
    border-color:rgba(255,216,79,.8);
    box-shadow:0 0 0 3px rgba(255,216,79,.12);
}

.login-box input::placeholder{
    color:rgba(255,255,255,.45);
}

.error-msg{
    background:rgba(255,37,88,.15);
    border:1px solid rgba(255,37,88,.35);
    color:#fff;
    padding:11px;
    border-radius:14px;
    text-align:center;
    margin-bottom:14px;
    font-size:13px;
    font-weight:800;
}

.submit-btn{
    width:100%;
    height:52px;
    border:none;
    border-radius:16px;
    background:linear-gradient(135deg,#ffe066,#ff9900);
    color:#160900;
    font-weight:1000;
    font-size:15px;
    cursor:pointer;
    margin-top:4px;
}

.register-btn{
    display:flex;
    justify-content:center;
    align-items:center;
    width:100%;
    height:50px;
    margin-top:12px;
    border-radius:16px;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.10);
    color:#fff;
    font-weight:900;
}

/* RESPONSIVE */

@media(max-width:1000px){
    .games-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .promo-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .hero-card{
        grid-template-columns:1fr;
    }

    .hero-visual{
        display:none;
    }
}

@media(max-width:700px){
    .vip-header{
        padding:14px 12px;
    }

    .vip-header-left{
        gap:10px;
    }

    .menu-toggle{
        width:50px;
        height:50px;
        border-radius:15px;
    }

    .brand-area{
        gap:10px;
    }

    .brand-area img{
        width:58px;
        height:58px;
    }

    .brand-area h1,
    .brand-area h2{
        font-size:23px;
        letter-spacing:7px;
    }

    .vip-header-actions{
        gap:8px;
    }

    .btn-login-main,
    .btn-signup-main{
        min-width:auto;
        width:92px;
        height:52px;
        font-size:14px;
        border-radius:17px;
    }

    .hero-section,
    .games-section,
    .trust-strip,
    .promo-cashin{
        width:calc(100% - 24px);
    }

    .hero-card{
        min-height:310px;
        padding:28px 20px;
    }

    .hero-badge{
        font-size:15px;
    }

    .hero-content h2{
        font-size:38px;
    }

    .hero-content p{
        font-size:15px;
    }

    .hero-play-btn{
        min-width:165px;
        height:54px;
        font-size:16px;
    }

    .promo-cashin{
        padding:20px 14px;
        border-radius:24px;
    }

    .promo-title h2{
        font-size:28px;
    }

    .promo-title p{
        font-size:14px;
    }

    .promo-grid{
        grid-template-columns:repeat(2,1fr);
        gap:11px;
    }

    .promo-box{
        min-height:92px;
        padding:15px 10px;
        border-radius:17px;
    }

    .promo-box strong{
        font-size:23px;
    }

    .promo-box span{
        font-size:12px;
        padding:7px 9px;
    }

    .section-head h2{
        font-size:32px;
    }

    .section-head p{
        font-size:15px;
        letter-spacing:6px;
    }

    .see-all-link{
        font-size:16px;
    }

    .games-grid{
        grid-template-columns:repeat(2,1fr);
        gap:14px;
    }

    .game-card{
        border-radius:22px;
    }

    .game-badge{
        top:10px;
        left:10px;
        font-size:12px;
        padding:8px 14px;
    }

    .game-info{
        padding:12px;
    }

    .game-info h3{
        max-width:95px;
        font-size:13px;
    }

    .game-info button{
        padding:9px 11px;
        font-size:12px;
    }

    .trust-strip{
        grid-template-columns:repeat(2,1fr);
        padding:18px;
    }
}

@media(max-width:430px){
    .brand-area img{
        width:50px;
        height:50px;
    }

    .brand-area h1,
    .brand-area h2{
        font-size:20px;
        letter-spacing:6px;
    }

    .btn-login-main,
    .btn-signup-main{
        width:78px;
        height:48px;
        font-size:12px;
    }

    .menu-toggle{
        width:46px;
        height:46px;
    }

    .section-head h2{
        font-size:27px;
    }

    .section-head p{
        font-size:12px;
        letter-spacing:5px;
    }

    .hero-content h2{
        font-size:34px;
    }

    .promo-title h2{
        font-size:25px;
    }

    .promo-box strong{
        font-size:21px;
    }

    .promo-btn{
        font-size:15px;
        padding:14px;
    }
}
