*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#000;
}

/* HEADER */

.top-header{
    height:70px;
    width:100%;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:0 18px;

    position:sticky;
    top:0;
    z-index:9999;

    background-color:#080808;

    background-image:
    repeating-linear-gradient(
        -45deg,
        rgba(255,255,255,0.03) 0px,
        rgba(255,255,255,0.03) 6px,
        transparent 6px,
        transparent 14px
    );

    border-bottom:1px solid #8a2be2;

    box-shadow:
        0 2px 15px rgba(0,0,0,.6),
        0 0 12px rgba(138,43,226,.25);

    backdrop-filter:blur(8px);
}

.top-header.scrolled{
    background-color:rgba(5,5,5,.96);

    border-bottom:1px solid #b000ff;

    box-shadow:
        0 5px 20px rgba(0,0,0,.7),
        0 0 20px rgba(176,0,255,.35);
}

/* LOGO */

.logo-area{
    display:flex;
    align-items:center;
}

.logo-area img{
    height: 65px;
    width:auto;
    object-fit:contain;
}

/* RIGHT SIDE */

.header-right{
    display:flex;
    align-items:center;
    gap:10px;
}

/* BALANCE */

.balance-box{

text-decoration:none;

cursor:pointer;

min-width:55px;
height:38px;

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

color:#fff;
font-size:16px;
font-weight:700;

background:#000;
border-radius:20px;

border:2px solid #222;

transition:.3s;
}

.balance-box:hover{

border-color:#8a2be2;

box-shadow:
0 0 12px rgba(138,43,226,.4);

transform:translateY(-2px);
}

/* PLUS BUTTON */

.plus-btn{
    width:38px;
    height:38px;

    border:none;
    cursor:pointer;

    border-radius:50%;

    background:
    linear-gradient(
    180deg,
    #1f5eff,
    #0d35a8
    );

    color:white;
    font-size:18px;

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

    box-shadow:
    0 0 12px rgba(38,102,255,.6);
}

/* PROFILE */

.profile-btn{
    width:46px;
    height:46px;

    border-radius:50%;
    overflow:hidden;

    border:3px solid #ff7a2f;

    box-shadow:
    0 0 12px rgba(255,122,47,.5);
}

.profile-btn img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* MOBILE */

@media(max-width:768px){

    .top-header{
        height:60px;
        padding:0 10px;
    }

    .logo-area img{
        height:55px;
    }

    .balance-box{
        min-width:48px;
        height:34px;
        font-size:14px;
    }

    .plus-btn{
        width:34px;
        height:34px;
        font-size:15px;
    }

    .profile-btn{
        width:40px;
        height:40px;
    }
}

/* banner  */


/* ==========================
   PREMIUM GAME BANNER
========================== */

.hero-banner{
    width:100%;
    background:#050505;
    overflow:hidden;
    position:relative;

    border-top:1px solid #1a4fff;
    border-bottom:1px solid #1a4fff;

    box-shadow:
    0 0 15px rgba(0,80,255,.15);
}

.hero-banner img{
    width:100%;
    height:320px;
    display:block;

    object-fit:cover;
    object-position:center center;
}

/* Large Desktop */
@media(min-width:1400px){

    .hero-banner img{
        height:420px;
    }

}

/* Laptop */
@media(max-width:1200px){

    .hero-banner img{
        height:300px;
    }

}

/* Tablet */
@media(max-width:768px){

    .hero-banner{
        background:#000;
        padding:5px;
    }

    .hero-banner img{
        height:auto;
        width:100%;

        object-fit:contain;
        border-radius:8px;
    }

}

/* Mobile */
@media(max-width:576px){

    .hero-banner{
        padding:4px;
    }

    .hero-banner img{
        width:100%;
        height:auto;

        object-fit:contain;

        border-radius:6px;
    }

}

/* Very Small Mobile */
@media(max-width:360px){

    .hero-banner img{
        width:100%;
        height:auto;
    }

}

/* LOGING RESITER SECTION  */

/* =========================
   AVIATOR CARD
========================= */

.aviator-card{
    margin:15px;
    padding:20px;

    background:#161c35;
    border-radius:20px;

    text-align:center;

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

    box-shadow:
    0 10px 30px rgba(0,0,0,.4);
}

.aviator-card h2{
    color:#fff;
    font-size:36px;
    font-weight:800;
    margin-bottom:10px;
}

.aviator-card p{
    color:#bcbcbc;
    margin-bottom:20px;
}

.game-banner{
    position:relative;
    overflow:hidden;
    border-radius:18px;
}

.game-banner img{
    width:100%;
    display:block;
    border-radius:18px;
}

.game-overlay{
    position:absolute;
    inset:0;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:15px;
}

.login-btn,
.register-btn{

    width:260px;
    max-width:85%;

    padding:14px;

    border-radius:40px;

    text-decoration:none;

    font-weight:700;

    text-align:center;

    color:#fff;

    transition:all .3s ease;

    border:none;
}

/* LOGIN BUTTON */

.login-btn{

    background:
    linear-gradient(
        90deg,
        #7b2cff,
        #b000ff
    );

    box-shadow:
        0 0 15px rgba(176,0,255,.45),
        0 0 25px rgba(176,0,255,.25);
}

.login-btn:hover{

    transform:translateY(-2px);

    box-shadow:
        0 0 20px rgba(176,0,255,.6),
        0 0 35px rgba(176,0,255,.35);
}

/* REGISTER BUTTON */

.register-btn{

    background:
    linear-gradient(
        90deg,
        #2b1c4d,
        #4a2a8a
    );

    border:1px solid rgba(176,0,255,.4);

    box-shadow:
        0 0 12px rgba(176,0,255,.15);
}

.register-btn:hover{

    transform:translateY(-2px);

    border-color:#b000ff;

    box-shadow:
        0 0 18px rgba(176,0,255,.35);
}

.login-btn:hover{
    transform:translateY(-2px);
}

.more-games{
    padding:18px 16px 25px;
    background:#171b2a;
}

.section-title{
    color:#a7adbd;
    font-size:18px;
    font-weight:900;
    letter-spacing:2px;
    margin-bottom:18px;
    text-transform:uppercase;
}

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

.game-box{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    background:#090f1d;
    border:2px solid rgba(255,255,255,.08);
    box-shadow:0 12px 28px rgba(0,0,0,.35);
    transition:.3s ease;
}

.game-box.blue{
    border-color:#123d90;
}

.game-box.gold{
    border-color:#7d5418;
}

.game-box:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 40px rgba(0,0,0,.55);
}

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

.game-box::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    top:0;
    height:230px;
    background:linear-gradient(
        to bottom,
        rgba(0,0,0,0) 45%,
        rgba(6,10,22,.75) 100%
    );
    pointer-events:none;
}

.lock-icon{
    position:absolute;
    top:18px;
    right:18px;
    z-index:5;
    width:38px;
    height:38px;
    border-radius:50%;
    background:rgba(0,0,0,.55);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:17px;
    border:1px solid rgba(255,255,255,.18);
}

.game-badge{
    position:absolute;
    left:16px;
    top:205px;
    z-index:6;
    padding:7px 14px;
    border-radius:20px;
    color:#fff;
    font-size:13px;
    font-weight:900;
    background:rgba(16,55,140,.85);
    border:1px solid rgba(90,145,255,.7);
    box-shadow:0 0 15px rgba(40,100,255,.35);
}

.game-box.gold .game-badge{
    background:rgba(116,61,18,.9);
    border-color:#c48128;
    color:#ffd86b;
}

.game-info{
    position:relative;
    z-index:4;
    background:#090f1d;
    padding:15px 18px 20px;
    text-align:center;
}

.game-info h3{
    margin:0 0 14px;
    color:#fff;
    font-size:18px;
    font-weight:900;
    letter-spacing:1.5px;
    text-transform:uppercase;
    text-shadow:0 2px 6px rgba(0,0,0,.6);
}

.game-btn{
    width:210px;
    max-width:90%;
    height:48px;
    margin:0 auto;
    border-radius:28px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:14px;
    font-weight:900;
    letter-spacing:1px;
    color:#7fb5ff;
    background:rgba(10,20,45,.75);
    border:2px solid #194da9;
    box-shadow:
        inset 0 0 18px rgba(40,100,255,.15),
        0 0 12px rgba(0,80,255,.20);
    transition:.25s ease;
}

.game-box.gold .game-btn{
    color:#ffb31a;
    border-color:#8a5b18;
    background:rgba(35,25,10,.75);
    box-shadow:
        inset 0 0 18px rgba(255,170,0,.12),
        0 0 12px rgba(255,170,0,.18);
}

.game-btn:hover{
    transform:translateY(-2px);
    filter:brightness(1.2);
}

/* TABLET */
@media(max-width:768px){
    .games-grid{
        gap:12px;
    }

    .game-box img,
    .game-box::after{
        height:170px;
    }

    .game-badge{
        top:145px;
        font-size:11px;
        padding:6px 11px;
    }

    .game-info h3{
        font-size:15px;
    }

    .game-btn{
        width:170px;
        height:42px;
        font-size:12px;
    }
}

/* MOBILE */
@media(max-width:480px){
    .more-games{
        padding:12px 10px 20px;
    }

    .section-title{
        font-size:15px;
        margin-bottom:12px;
    }

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

    .game-box{
        border-radius:14px;
    }

    .game-box img,
    .game-box::after{
        height:115px;
    }

    .lock-icon{
        width:28px;
        height:28px;
        top:10px;
        right:10px;
        font-size:13px;
    }

    .game-badge{
        left:8px;
        top:92px;
        font-size:9px;
        padding:4px 8px;
    }

    .game-info{
        padding:10px 8px 12px;
    }

    .game-info h3{
        font-size:12px;
        margin-bottom:9px;
        letter-spacing:.8px;
    }

    .game-btn{
        width:100%;
        height:36px;
        font-size:10px;
        border-radius:20px;
    }
}


.game-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
}

.game-btn i{
    font-size:13px;
}

/* live payours css   */

/* =========================
   LIVE PAYOUTS
========================= */

.live-payouts{

    background:
    linear-gradient(
        180deg,
        #191b34,
        #111425
    );

    border-radius:22px;

    padding:18px;

    border:1px solid rgba(173,73,255,.25);

    box-shadow:
    0 10px 35px rgba(0,0,0,.45),
    0 0 25px rgba(173,73,255,.12);

    overflow:hidden;
}

/* Heading */

.payout-title{

    text-align:center;

    color:#b75cff;

    font-size:28px;

    font-weight:800;

    letter-spacing:1px;

    margin-bottom:18px;

    text-transform:uppercase;

    text-shadow:
    0 0 10px rgba(183,92,255,.4);
}

/* Rows */

.payout-row{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:10px;

    padding:14px 16px;

    margin-bottom:12px;

    border-radius:14px;

    background:
    linear-gradient(
        90deg,
        #10162a,
        #171d36
    );

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

    transition:.3s;
}

.payout-row:hover{

    transform:translateY(-2px);

    border-color:rgba(183,92,255,.4);

    box-shadow:
    0 0 15px rgba(183,92,255,.18);
}

/* User */

.user-name{

    color:#ffffff;

    font-size:15px;

    font-weight:600;

    white-space:nowrap;

    overflow:hidden;

    text-overflow:ellipsis;
}

/* Amount */

.win-amount{

    color:#00ff99;

    font-size:20px;

    font-weight:800;

    text-shadow:
    0 0 8px rgba(0,255,153,.25);
}

/* Animation */

.payout-row{

    animation:slideIn .4s ease;
}

@keyframes slideIn{

    from{
        opacity:0;
        transform:translateY(-10px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* =========================
   TABLET
========================= */

@media(max-width:768px){

    .live-payouts{
        padding:15px;
        border-radius:18px;
    }

    .payout-title{
        font-size:22px;
        margin-bottom:14px;
    }

    .payout-row{
        padding:12px;
        margin-bottom:10px;
    }

    .user-name{
        font-size:14px;
    }

    .win-amount{
        font-size:17px;
    }

}

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

@media(max-width:480px){

    .live-payouts{
        padding:12px;
        border-radius:16px;
    }

    .payout-title{
        font-size:20px;
    }

    .payout-row{
        padding:10px 12px;
        border-radius:12px;
    }

    .user-name{
        font-size:13px;
    }

    .win-amount{
        font-size:16px;
    }

}

/* Small Phones */

@media(max-width:360px){

    .payout-title{
        font-size:18px;
    }

    .user-name{
        font-size:12px;
    }

    .win-amount{
        font-size:14px;
    }

}

/* instructions css  */


/* =========================
   DIGITAL EDGE
========================= */

.digital-edge{

    background:
    linear-gradient(
        180deg,
        #17192f,
        #111423
    );

    border-radius:22px;

    padding:22px;

    border:1px solid rgba(176,0,255,.18);

    box-shadow:
    0 15px 40px rgba(0,0,0,.45),
    0 0 25px rgba(176,0,255,.10);

    margin-top:20px;
}

/* Title */

.edge-title{

    text-align:center;

    color:#b75cff;

    font-size:30px;

    font-weight:800;

    margin-bottom:25px;

    letter-spacing:1px;

    text-transform:uppercase;

    text-shadow:
    0 0 15px rgba(183,92,255,.35);
}

/* Grid */

.edge-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:20px;
}

/* Card */

.edge-card{

    background:
    linear-gradient(
        180deg,
        #1b1f39,
        #161a30
    );

    border-radius:18px;

    padding:28px 20px;

    text-align:center;

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

    transition:.3s ease;
}

.edge-card:hover{

    transform:translateY(-5px);

    border-color:
    rgba(183,92,255,.45);

    box-shadow:
    0 0 25px rgba(183,92,255,.18);
}

/* Icon */

.edge-icon{

    font-size:34px;

    margin-bottom:15px;

    color:#b75cff;

    text-shadow:
    0 0 15px rgba(183,92,255,.4);
}

/* Heading */

.edge-card h3{

    color:#ffffff;

    font-size:22px;

    margin-bottom:12px;

    font-weight:700;
}

/* Description */

.edge-card p{

    color:#aeb4d0;

    line-height:1.6;

    font-size:15px;
}

/* Tablet */

@media(max-width:991px){

    .edge-grid{

        grid-template-columns:1fr;
    }

    .edge-title{

        font-size:24px;
    }

}

/* Mobile */

@media(max-width:480px){

    .digital-edge{

        padding:15px;
        border-radius:18px;
    }

    .edge-title{

        font-size:20px;
        margin-bottom:18px;
    }

    .edge-card{

        padding:20px 15px;
    }

    .edge-card h3{

        font-size:18px;
    }

    .edge-card p{

        font-size:14px;
    }

    .edge-icon{

        font-size:28px;
    }
}




/* =========================
   PREMIUM FOOTER
========================= */

.site-footer{

    margin:20px 15px;

    padding:18px 15px;

    text-align:center;

    border-radius:18px;

    background:
    linear-gradient(
        135deg,
        #5a00b8,
        #8a2be2,
        #b000ff
    );

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

    box-shadow:
        0 10px 25px rgba(0,0,0,.35),
        0 0 25px rgba(176,0,255,.25);

    color:#fff;
}

.site-footer p{

    margin:0;

    font-size:20px;

    font-weight:700;

    letter-spacing:.5px;
}

.site-footer span{

    display:block;

    margin-top:8px;

    color:rgba(255,255,255,.85);

    font-size:14px;
}

/* Mobile */

@media(max-width:768px){

    .site-footer{

        margin:15px 10px;
        padding:16px 12px;
        border-radius:16px;
    }

    .site-footer p{

        font-size:15px;
        line-height:1.5;
    }

    .site-footer span{

        font-size:12px;
    }

}




.header-right .login-btn,
.header-right .register-btn{
width:auto;
padding:10px 20px;
font-size:14px;
}










.vip-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.72);
    backdrop-filter:blur(8px);

    display:none;
    align-items:center;
    justify-content:center;

    z-index:999999;
    padding:18px;
}

.vip-overlay.show{
    display:flex;
}

.vip-modal{
    width:100%;
    max-width:420px;

    background:
        linear-gradient(135deg,#101010,#1a1030);

    border:1px solid rgba(138,43,226,.8);
    border-radius:28px;

    padding:30px 24px;

    text-align:center;
    color:#fff;

    box-shadow:
        0 25px 80px rgba(0,0,0,.65),
        0 0 30px rgba(176,0,255,.35);

    position:relative;

    animation:vipPop .25s ease;
}

@keyframes vipPop{
    from{
        transform:scale(.9);
        opacity:0;
    }
    to{
        transform:scale(1);
        opacity:1;
    }
}

.vip-close{
    position:absolute;
    top:14px;
    right:14px;

    width:34px;
    height:34px;

    border:none;
    border-radius:50%;

    background:rgba(255,255,255,.08);
    color:#fff;

    font-size:22px;
    cursor:pointer;
}

.vip-icon{
    width:78px;
    height:78px;

    margin:0 auto 18px;

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

    border-radius:24px;

    background:linear-gradient(135deg,#f59e0b,#facc15);

    font-size:38px;

    box-shadow:0 0 28px rgba(250,204,21,.45);
}

.vip-modal h2{
    font-size:28px;
    margin-bottom:12px;
}

.vip-modal p{
    color:#d6d0df;
    line-height:1.6;
    font-size:15px;
    margin-bottom:22px;
}

.vip-modal strong{
    color:#facc15;
}

.vip-deposit-btn{
    width:100%;
    height:52px;

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

    border-radius:18px;

    background:linear-gradient(135deg,#6f2dff,#b000ff);
    color:#fff;

    text-decoration:none;
    font-size:17px;
    font-weight:900;

    box-shadow:0 12px 28px rgba(176,0,255,.35);
}

.vip-later-btn{
    width:100%;
    height:46px;

    margin-top:12px;

    border:none;
    border-radius:16px;

    background:rgba(255,255,255,.08);
    color:#cbd5e1;

    font-size:15px;
    font-weight:700;

    cursor:pointer;
}

@media(max-width:480px){
    .vip-modal{
        padding:26px 18px;
        border-radius:24px;
    }

    .vip-icon{
        width:68px;
        height:68px;
        font-size:32px;
    }

    .vip-modal h2{
        font-size:24px;
    }

    .vip-modal p{
        font-size:14px;
    }
}


.actions{
display:flex;
flex-direction:column;
gap:8px;
min-width:140px;
}

.approve-btn{
width:100%;
height:42px;
border:none;
cursor:pointer;
border-radius:10px;
font-weight:700;
background:#16a34a;
color:#fff;
}

.reject-btn{
width:100%;
height:42px;
border:none;
cursor:pointer;
border-radius:10px;
font-weight:700;
background:#dc2626;
color:#fff;
}

.processed-badge{
padding:8px 12px;
border-radius:20px;
background:#334155;
color:#fff;
font-size:13px;
font-weight:700;
}