/* ========================================
   APHRODITE CASINO - Exact Design Replica
   ======================================== */

*{margin:0;padding:0;box-sizing:border-box}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
:root{
    --bg-main:#0d0e1a;
    --bg-sidebar:#0d0e1a;
    --bg-card:#1a1c2e;
    --bg-card-hover:#222440;
    --bg-feature:#151728;
    --orange:#e8621c;
    --orange-hover:#ff7b35;
    --blue-start:#1e3a8a;
    --blue-end:#3b82f6;
    --gold:#f5c842;
    --text-white:#ffffff;
    --text-gray:#8b8da0;
    --text-muted:#5a5c72;
    --border-subtle:rgba(255,255,255,0.06);
    --sidebar-width:260px;
    --topbar-height:60px;
}
html{scroll-behavior:smooth}
body{
    font-family:'Inter',sans-serif;
    background:var(--bg-main);
    color:var(--text-white);
    line-height:1.6;
    overflow-x:hidden;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;height:auto;display:block}

/* ---- SIDEBAR ---- */
.sidebar{
    position:fixed;
    top:0;
    left:0;
    width:var(--sidebar-width);
    height:100vh;
    background:var(--bg-sidebar);
    border-right:1px solid var(--border-subtle);
    z-index:2000;
    display:flex;
    flex-direction:column;
    overflow-y:auto;
    padding:20px 12px;
    transition:transform 0.3s ease;
}
.sidebar-overlay{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.6);
    z-index:1999;
    opacity:0;
    transition:opacity 0.3s;
}
.sidebar-overlay.open{
    display:block;
    opacity:1;
}
.sidebar-logo{
    padding:0 8px 20px;
    display:flex;
    align-items:center;
}
.sidebar-logo-text{
    font-family:'Cinzel Decorative','Cinzel',serif;
    font-size:26px;
    font-weight:900;
    letter-spacing:3px;
    text-transform:uppercase;
    color:var(--text-white);
}
.sidebar-promo{
    display:flex;
    align-items:center;
    gap:10px;
    background:linear-gradient(135deg,#1e40af,#3b82f6);
    border-radius:12px;
    padding:10px 14px;
    margin-bottom:16px;
    cursor:pointer;
    transition:all 0.3s;
}
.sidebar-promo:hover{opacity:0.9}
.sidebar-promo-icon{font-size:28px}
.sidebar-promo-text{font-size:12px;font-weight:600;line-height:1.3}
.sidebar-promo-text span{display:block;font-size:11px;font-weight:400;color:rgba(255,255,255,0.7)}

.sidebar-nav{
    display:flex;
    flex-direction:column;
    gap:2px;
    margin-bottom:20px;
}
.sidebar-nav a{
    display:flex;
    align-items:center;
    gap:12px;
    padding:12px 14px;
    border-radius:10px;
    font-size:14px;
    font-weight:500;
    color:var(--text-gray);
    transition:all 0.2s;
}
.sidebar-nav a:hover{
    color:var(--text-white);
    background:rgba(255,255,255,0.05);
}
.sidebar-nav a.active{
    background:linear-gradient(135deg,#1e40af,#3b82f6);
    color:var(--text-white);
    border:1px solid rgba(59,130,246,0.5);
    font-weight:600;
}
.sidebar-nav a .nav-icon{
    font-size:18px;
    width:24px;
    text-align:center;
}

.sidebar-section-title{
    font-size:11px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
    color:var(--text-muted);
    padding:12px 14px 8px;
}

.sidebar-games{
    display:flex;
    flex-direction:column;
    gap:4px;
    margin-bottom:16px;
}
.sidebar-game{
    display:flex;
    align-items:center;
    gap:10px;
    padding:8px 10px;
    border-radius:10px;
    background:linear-gradient(135deg,rgba(180,140,80,0.15),rgba(120,80,40,0.1));
    cursor:pointer;
    transition:all 0.2s;
}
.sidebar-game:hover{background:rgba(180,140,80,0.2)}
.sidebar-game img{
    width:36px;
    height:36px;
    border-radius:8px;
    object-fit:cover;
}
.sidebar-game-info{flex:1}
.sidebar-game-name{font-size:13px;font-weight:600;color:var(--text-white)}
.sidebar-game-provider{font-size:10px;color:var(--text-gray)}
.sidebar-game-play{
    width:28px;
    height:28px;
    background:var(--orange);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
    color:#fff;
    flex-shrink:0;
}

.sidebar-bottom{
    margin-top:auto;
    display:flex;
    flex-direction:column;
    gap:2px;
}
.sidebar-bottom a{
    display:flex;
    align-items:center;
    gap:12px;
    padding:10px 14px;
    border-radius:10px;
    font-size:14px;
    font-weight:500;
    color:var(--text-gray);
    transition:all 0.2s;
}
.sidebar-bottom a:hover{
    color:var(--text-white);
    background:rgba(255,255,255,0.05);
}
.sidebar-lang{
    display:flex;
    align-items:center;
    gap:10px;
    padding:10px 14px;
    font-size:13px;
    color:var(--text-gray);
    border-top:1px solid var(--border-subtle);
    margin-top:8px;
    padding-top:16px;
}

/* ---- MAIN CONTENT ---- */
.main{
    margin-left:var(--sidebar-width);
    min-height:100vh;
}

/* ---- MOBILE HEADER (visible ≤768px) ---- */
.mobile-header{
    display:none;
    align-items:center;
    justify-content:space-between;
    padding:10px 16px;
    background:var(--bg-main);
    position:sticky;
    top:0;
    z-index:500;
}
.mobile-header__menu{
    background:none;
    border:none;
    cursor:pointer;
    padding:8px;
    display:flex;
    align-items:center;
    justify-content:center;
}
.mobile-header__menu img{
    width:24px;
    height:24px;
    filter:brightness(0) invert(1);
    opacity:0.8;
}
.mobile-header__logo{display:flex;align-items:center}
.mobile-header__logo img{
    height:36px;
    width:auto;
}
.mobile-header__login{
    background:var(--orange);
    color:#fff;
    padding:8px 16px;
    border-radius:20px;
    font-weight:700;
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:0.5px;
    white-space:nowrap;
}

/* ---- TOP BAR (visible >768px) ---- */
.topbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:12px 24px;
    background:var(--bg-main);
    border-bottom:1px solid var(--border-subtle);
    position:sticky;
    top:0;
    z-index:500;
}
.topbar-search{
    flex:1;
    max-width:400px;
}
.topbar-search input{
    width:100%;
    background:rgba(255,255,255,0.06);
    border:1px solid var(--border-subtle);
    border-radius:10px;
    padding:10px 16px 10px 40px;
    color:var(--text-white);
    font-size:14px;
    font-family:inherit;
    outline:none;
    transition:border-color 0.3s;
}
.topbar-search input::placeholder{color:var(--text-muted)}
.topbar-search input:focus{border-color:rgba(59,130,246,0.5)}
.topbar-search{position:relative}
.topbar-search::before{
    content:'🔍';
    position:absolute;
    left:14px;
    top:50%;
    transform:translateY(-50%);
    font-size:14px;
    pointer-events:none;
}
.topbar-btns{display:flex;align-items:center;gap:12px}
.btn-register{
    background:var(--orange);
    color:#fff;
    padding:10px 24px;
    border-radius:20px;
    font-weight:700;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:0.5px;
    border:none;
    cursor:pointer;
    transition:all 0.3s;
}
.btn-register:hover{background:var(--orange-hover);transform:translateY(-1px)}
.btn-login{
    color:var(--text-white);
    padding:10px 20px;
    font-weight:600;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:0.5px;
    cursor:pointer;
    transition:color 0.3s;
}
.btn-login:hover{color:var(--orange)}

/* ---- HERO BANNER ---- */
.hero-banner{
    position:relative;
    overflow:hidden;
    padding:24px;
}
.hero-banner-inner{
    position:relative;
    border-radius:16px;
    overflow:hidden;
    min-height:380px;
    display:flex;
    align-items:center;
    background:linear-gradient(135deg,#1a0a2e 0%,#0d0e1a 40%,#1a1030 100%);
}
.hero-banner-content{
    position:relative;
    z-index:2;
    padding:40px;
    max-width:500px;
}
.hero-banner-label{
    background:linear-gradient(180deg,#8b0000 0%,#5a0000 100%);
    display:inline-block;
    padding:14px 30px;
    border-radius:4px;
    font-size:14px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:1.5px;
    text-align:center;
    line-height:1.4;
    margin-bottom:12px;
    border:2px solid #c8a050;
    box-shadow:0 8px 20px rgba(0,0,0,0.5),inset 0 1px 0 rgba(255,200,100,0.2);
    position:relative;
}
.hero-banner-percent{
    font-size:clamp(80px,14vw,160px);
    font-weight:900;
    line-height:0.85;
    color:#ffd700;
    text-shadow:3px 3px 0 #b8860b,0 0 30px rgba(255,215,0,0.4);
    margin-bottom:0;
    font-family:'Inter',sans-serif;
    font-style:italic;
}
.hero-banner-amount{
    font-size:clamp(18px,3vw,26px);
    font-weight:800;
    color:var(--text-white);
    margin-bottom:4px;
    text-transform:uppercase;
    letter-spacing:1px;
}
.hero-banner-amount span{color:#ffd700;font-size:clamp(22px,4vw,34px);font-weight:900}
/* Badges container */
.hero-banner-badges{
    position:absolute;
    top:20px;
    right:20px;
    z-index:5;
    display:flex;
    flex-direction:column;
    gap:8px;
    align-items:flex-end;
}
.hero-badge-cashback{
    background:linear-gradient(135deg,#2d5016,#1a3a0a);
    border:2px solid #6b8f4b;
    border-radius:12px;
    padding:10px 14px;
    text-align:center;
    display:flex;
    flex-direction:column;
    align-items:center;
    box-shadow:0 4px 15px rgba(0,0,0,0.4);
    position:relative;
}
.hero-badge-cashback::before{
    content:'';
    position:absolute;
    top:-6px;
    left:50%;
    transform:translateX(-50%);
    width:20px;
    height:12px;
    background:#6b8f4b;
    border-radius:4px 4px 0 0;
}
.hero-badge-cashback-value{
    font-size:28px;
    font-weight:900;
    color:#ffd700;
    line-height:1;
    text-shadow:1px 1px 3px rgba(0,0,0,0.5);
}
.hero-badge-cashback-label{
    font-size:10px;
    font-weight:800;
    color:#fff;
    letter-spacing:2px;
    text-transform:uppercase;
}
.hero-badge-nowager{
    background:linear-gradient(135deg,#8b0000,#cc0000);
    border:2px solid #ff6b35;
    border-radius:50%;
    width:70px;
    height:70px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    box-shadow:0 4px 15px rgba(200,0,0,0.4);
    transform:rotate(-10deg);
}
.hero-badge-nowager-no{
    font-size:16px;
    font-weight:900;
    color:#ffd700;
    line-height:1;
}
.hero-badge-nowager-wager{
    font-size:12px;
    font-weight:800;
    color:#fff;
    line-height:1;
    letter-spacing:1px;
}
.hero-banner-cta{
    display:flex;
    align-items:center;
    justify-content:center;
    padding:16px 40px;
    font-size:15px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:3px;
    background:linear-gradient(180deg,#1a2a6c,#0a1340);
    border:3px solid #c8a050;
    border-radius:8px;
    color:#fff;
    cursor:pointer;
    transition:all 0.3s;
    margin-top:16px;
    box-shadow:0 6px 20px rgba(0,0,0,0.5),inset 0 1px 0 rgba(255,200,100,0.15);
    position:relative;
    text-shadow:0 2px 4px rgba(0,0,0,0.5);
}
.hero-banner-cta:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 30px rgba(0,0,0,0.6);
    border-color:#e8c660;
}
.hero-banner-image{
    position:absolute;
    right:0;
    top:0;
    bottom:0;
    width:55%;
    z-index:1;
}
.hero-banner-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
}
.hero-banner-character{
    display:none;
}
.hero-payment-row{
    display:flex;
    align-items:center;
    gap:24px;
    margin-top:20px;
    flex-wrap:wrap;
}
.hero-payment-icons{
    display:flex;
    align-items:center;
    justify-content:center;
}
.hero-payment-icons img{
    max-width:360px;
    width:90%;
    height:auto;
}
.hero-conditions-text{
    font-size:11px;
    color:var(--text-muted);
    max-width:400px;
    line-height:1.5;
}
.hero-conditions-text strong{color:var(--text-gray)}

/* ---- FEATURE CARDS ---- */
.features-row{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:16px;
    padding:0 24px 24px;
}
.feature-card{
    background:var(--bg-card);
    border-radius:14px;
    padding:20px;
    display:flex;
    align-items:center;
    gap:16px;
    border:1px solid var(--border-subtle);
    transition:all 0.3s;
}
.feature-card:hover{border-color:rgba(232,98,28,0.3)}
.feature-card-text{
    font-size:13px;
    color:var(--text-gray);
    line-height:1.5;
}
.feature-card-icon{
    width:80px;
    height:80px;
    flex-shrink:0;
    border-radius:12px;
    overflow:hidden;
}
.feature-card-icon img{width:100%;height:100%;object-fit:cover}

/* ---- SECTION HEADER ---- */
.section-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:24px 24px 16px;
}
.section-title{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:18px;
    font-weight:700;
}
.section-title .icon{font-size:22px}
.section-actions{display:flex;align-items:center;gap:10px}
.btn-voir-tout{
    background:var(--orange);
    color:#fff;
    padding:8px 20px;
    border-radius:8px;
    font-size:12px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:0.5px;
    border:none;
    cursor:pointer;
    transition:all 0.3s;
}
.btn-voir-tout:hover{background:var(--orange-hover)}
.btn-nav{
    width:32px;
    height:32px;
    border-radius:8px;
    border:1px solid rgba(255,255,255,0.15);
    background:transparent;
    color:var(--text-gray);
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    font-size:14px;
    transition:all 0.2s;
}
.btn-nav:hover{border-color:var(--text-white);color:var(--text-white)}

/* ---- GAME CARDS GRID ---- */
.games-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:16px;
    padding:0 24px 32px;
}
.game-card{
    border-radius:12px;
    overflow:hidden;
    cursor:pointer;
    transition:all 0.3s;
    position:relative;
}
.game-card:hover{
    transform:translateY(-6px);
    box-shadow:0 8px 25px rgba(0,0,0,0.4);
}
.game-card img{
    width:100%;
    aspect-ratio:1/1;
    object-fit:cover;
    border-radius:12px;
}
.game-card-info{
    padding:8px 4px;
    text-align:center;
}
.game-card-name{
    font-size:12px;
    font-weight:600;
    color:var(--text-white);
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}
.game-card-provider{
    font-size:10px;
    color:var(--text-muted);
}

/* ---- SPORTS GRID ---- */
.sports-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:16px;
    padding:0 24px 32px;
}
.sport-card{
    border-radius:14px;
    overflow:hidden;
    cursor:pointer;
    transition:all 0.3s;
    position:relative;
}
.sport-card:hover{
    transform:translateY(-6px);
    box-shadow:0 8px 25px rgba(0,0,0,0.4);
}
.sport-card img{
    width:100%;
    aspect-ratio:3/4;
    object-fit:cover;
}
.sport-card-name{
    text-align:center;
    padding:10px 4px;
    font-size:13px;
    font-weight:600;
}

/* ---- LIVE CASINO GRID ---- */
.live-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:16px;
    padding:0 24px 32px;
}
.live-card{
    border-radius:12px;
    overflow:hidden;
    cursor:pointer;
    transition:all 0.3s;
    position:relative;
    border:2px solid rgba(139,90,43,0.4);
}
.live-card:hover{
    transform:translateY(-6px);
    border-color:var(--orange);
    box-shadow:0 8px 25px rgba(232,98,28,0.2);
}
.live-card img{
    width:100%;
    aspect-ratio:3/4;
    object-fit:cover;
}
.live-card-overlay{
    position:absolute;
    bottom:0;
    left:0;
    right:0;
    padding:12px 8px;
    background:linear-gradient(transparent,rgba(0,0,0,0.85));
    text-align:center;
}
.live-card-name{
    font-size:11px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:0.5px;
}
.live-card-provider{
    font-size:9px;
    color:var(--text-muted);
}

/* ---- COLLECTIONS ---- */
.collections-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:16px;
    padding:0 24px 32px;
}
.collection-card{
    border-radius:16px;
    overflow:hidden;
    cursor:pointer;
    transition:all 0.3s;
    position:relative;
    border:2px solid rgba(100,80,160,0.3);
}
.collection-card:hover{
    transform:translateY(-4px);
    border-color:rgba(139,92,246,0.5);
    box-shadow:0 8px 25px rgba(139,92,246,0.2);
}
.collection-card-image{
    position:relative;
    height:200px;
    overflow:hidden;
}
.collection-card-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.collection-card-badge{
    position:absolute;
    top:12px;
    left:12px;
    background:var(--orange);
    color:#fff;
    padding:4px 12px;
    border-radius:6px;
    font-size:10px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:0.5px;
}
.collection-card-icons{
    position:absolute;
    bottom:10px;
    left:10px;
    display:flex;
    align-items:center;
    gap:4px;
}
.collection-card-icons img{
    width:32px;
    height:32px;
    border-radius:6px;
    border:2px solid rgba(0,0,0,0.3);
}
.collection-card-icons span{
    background:rgba(0,0,0,0.6);
    color:#fff;
    padding:4px 8px;
    border-radius:6px;
    font-size:11px;
    font-weight:600;
}
.collection-card-text{
    padding:14px;
    text-align:center;
}
.collection-card-title{
    font-size:16px;
    font-weight:700;
    font-style:italic;
    margin-bottom:4px;
}
.collection-card-desc{
    font-size:12px;
    color:var(--text-gray);
}

/* ---- PAYMENT/PROVIDERS LOGOS ---- */
.logos-section{
    padding:32px 24px;
    border-top:1px solid var(--border-subtle);
}
.logos-row{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:32px;
    flex-wrap:wrap;
    margin-bottom:24px;
}
.logos-row img{
    height:28px;
    width:auto;
    filter:grayscale(100%) brightness(2);
    opacity:0.5;
    transition:opacity 0.3s;
}
.logos-row img:hover{opacity:0.8}
.logos-row span{
    font-size:14px;
    font-weight:700;
    color:rgba(255,255,255,0.4);
    letter-spacing:1px;
}

/* ---- FOOTER ---- */
.footer{
    padding:32px 24px;
    border-top:1px solid var(--border-subtle);
}
.footer-top{
    display:grid;
    grid-template-columns:1.5fr 1fr 1fr 1fr 1fr;
    gap:32px;
    margin-bottom:32px;
}
.footer-brand-text{
    font-family:'Cinzel Decorative','Cinzel',serif;
    font-size:22px;
    font-weight:900;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:12px;
}
.footer-brand-desc{
    font-size:12px;
    color:var(--text-muted);
    line-height:1.6;
}
.footer-col h4{
    font-size:12px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:14px;
    color:var(--text-white);
}
.footer-col ul{list-style:none}
.footer-col li{margin-bottom:8px}
.footer-col a{
    font-size:13px;
    color:var(--text-muted);
    transition:color 0.3s;
}
.footer-col a:hover{color:var(--text-white)}
.footer-bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding-top:20px;
    border-top:1px solid var(--border-subtle);
}
.footer-18{
    display:flex;
    align-items:center;
    gap:8px;
    font-size:12px;
    color:var(--text-muted);
}
.footer-18-badge{
    width:32px;
    height:32px;
    border:2px solid var(--text-muted);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
    font-weight:700;
}
.footer-copyright{
    font-size:12px;
    color:var(--text-muted);
}

/* ---- MOBILE BOTTOM NAV (hidden on desktop) ---- */
.mobile-nav{
    display:none;
    position:fixed;
    left:0;
    bottom:0;
    z-index:1000;
    width:100%;
    align-items:flex-end;
    justify-content:center;
    flex-direction:column;
    padding:0;
    pointer-events:none;
}
.mobile-nav__raised-btn{
    pointer-events:auto;
    display:flex;
    width:56px;
    height:56px;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:linear-gradient(180deg,#c8a050,#a07830);
    box-shadow:0 4px 20px rgba(200,160,80,0.5),inset 0 2px 0 rgba(255,220,130,0.4);
    position:absolute;
    bottom:40px;
    left:50%;
    transform:translateX(-50%);
    z-index:10;
    border:3px solid #e8c660;
}
.mobile-nav__raised-btn img{
    width:26px;
    height:26px;
    filter:brightness(0) invert(1);
    opacity:0.9;
}
.mobile-nav__bar{
    pointer-events:auto;
    display:flex;
    align-items:center;
    width:100%;
    max-width:420px;
    height:60px;
    margin:0 auto;
    background:linear-gradient(180deg,#0a0814,#02010c);
    border-radius:20px 20px 0 0;
    padding:0 8px;
    position:relative;
    border-top:1px solid rgba(255,255,255,0.08);
}
.mobile-nav__tab{
    flex:1;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:4px;
    text-decoration:none;
    padding:6px 0;
}
.mobile-nav__tab img{
    height:24px;
    width:24px;
    opacity:0.5;
    filter:saturate(0%);
}
.mobile-nav__tab.active img{
    opacity:1;
    filter:none;
}
.mobile-nav__tab span{
    font-size:10px;
    font-weight:500;
    color:rgba(255,255,255,0.4);
    white-space:nowrap;
    text-align:center;
}
.mobile-nav__tab.active span{
    color:rgba(255,255,255,0.8);
}
.mobile-nav__center{
    flex:1;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-end;
    padding-bottom:6px;
    height:100%;
}
.mobile-nav__center span{
    font-size:10px;
    font-weight:500;
    color:rgba(255,255,255,0.5);
    white-space:nowrap;
}

/* ---- PAGE HERO (secondary pages) ---- */
.page-hero{
    padding:32px 24px 24px;
    text-align:center;
    background:linear-gradient(180deg,rgba(30,64,175,0.1) 0%,transparent 100%);
}
.page-hero-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:linear-gradient(135deg,#22c55e,#16a34a);
    color:#fff;
    padding:6px 14px;
    border-radius:20px;
    font-size:11px;
    font-weight:600;
    margin-bottom:16px;
}
.page-hero-badge.gold{
    background:linear-gradient(135deg,#f5c842,var(--orange));
}
.page-hero h1{
    font-size:clamp(24px,4vw,36px);
    font-weight:700;
    margin-bottom:10px;
}
.page-hero p{
    font-size:14px;
    color:var(--text-gray);
    max-width:500px;
    margin:0 auto;
}
.bonus-amount{
    font-size:clamp(48px,10vw,80px);
    font-weight:800;
    color:#ffd700;
    text-shadow:2px 2px 10px rgba(255,215,0,0.4);
    margin-bottom:8px;
}

/* ---- SECTION CONTENT AREA ---- */
.section-content{padding:0 24px 32px}
.container-inner{max-width:1000px;margin:0 auto}

/* ---- BONUS DETAIL GRID ---- */
.bonus-details{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:12px;
    max-width:700px;
    margin:24px auto;
}
.bonus-detail{
    background:var(--bg-card);
    border:1px solid var(--border-subtle);
    border-radius:10px;
    padding:14px;
    text-align:center;
}
.bonus-detail-value{
    font-size:22px;
    font-weight:700;
    color:var(--orange);
    margin-bottom:2px;
}
.bonus-detail-label{
    font-size:11px;
    color:var(--text-gray);
}
.bonus-detail.highlight{
    border-color:rgba(34,197,94,0.4);
    background:rgba(34,197,94,0.08);
}
.bonus-detail.highlight .bonus-detail-value{color:#4ade80}

/* ---- DEPOSIT GRID ---- */
.deposit-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:16px;
    max-width:1000px;
    margin:24px auto;
}
.deposit-card{
    background:var(--bg-card);
    border:1px solid var(--border-subtle);
    border-radius:14px;
    padding:20px;
    text-align:center;
    transition:all 0.3s;
    position:relative;
}
.deposit-card:hover{
    transform:translateY(-4px);
    border-color:var(--orange);
    box-shadow:0 0 20px rgba(232,98,28,0.2);
}
.deposit-number{
    position:absolute;
    top:-10px;
    left:50%;
    transform:translateX(-50%);
    background:var(--orange);
    color:#fff;
    width:24px;
    height:24px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
    font-weight:700;
}
.deposit-card h3{
    font-size:13px;
    color:var(--text-gray);
    margin:8px 0 6px;
    font-weight:500;
}
.deposit-bonus{
    font-size:28px;
    font-weight:700;
    color:#ffd700;
    margin-bottom:2px;
}
.deposit-max{
    font-size:12px;
    color:var(--text-muted);
}

/* ---- PROMO CARDS ---- */
.promo-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:16px;
}
.promo-card{
    background:var(--bg-card);
    border:1px solid var(--border-subtle);
    border-radius:14px;
    padding:24px;
    text-align:center;
    transition:all 0.3s;
}
.promo-card:hover{border-color:var(--orange);background:var(--bg-card-hover)}
.promo-card-icon{font-size:36px;margin-bottom:12px}
.promo-card h3{font-size:16px;font-weight:600;margin-bottom:8px}
.promo-card p{font-size:13px;color:var(--text-gray);line-height:1.6}

/* ---- CONDITIONS ---- */
.conditions-box{
    background:var(--bg-card);
    border:1px solid var(--border-subtle);
    border-radius:14px;
    padding:28px;
    max-width:800px;
    margin:0 auto;
}
.conditions-title{
    font-size:18px;
    font-weight:600;
    margin-bottom:16px;
    display:flex;
    align-items:center;
    gap:10px;
}
.conditions-list{list-style:none;padding:0;margin:0}
.conditions-list li{
    padding:10px 0;
    border-bottom:1px solid var(--border-subtle);
    font-size:13px;
    color:var(--text-gray);
    display:flex;
    align-items:flex-start;
    gap:10px;
}
.conditions-list li:last-child{border-bottom:none}
.conditions-list li::before{content:'\2713';color:#4ade80;font-weight:bold}
.conditions-list strong{color:var(--text-white)}
.conditions-highlight{
    background:rgba(34,197,94,0.08);
    border:1px solid rgba(34,197,94,0.3);
    border-radius:10px;
    padding:14px;
    margin-top:16px;
    display:flex;
    align-items:center;
    gap:10px;
}
.conditions-highlight-icon{font-size:22px}
.conditions-highlight-text{font-size:13px}
.conditions-highlight-text strong{color:#4ade80}

/* ---- CONTACT GRID ---- */
.contact-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:16px;
}
.contact-card{
    background:var(--bg-card);
    border:1px solid var(--border-subtle);
    border-radius:14px;
    padding:28px 20px;
    text-align:center;
    transition:all 0.3s;
}
.contact-card:hover{border-color:var(--orange);transform:translateY(-4px)}
.contact-card-icon{
    width:64px;
    height:64px;
    background:linear-gradient(135deg,var(--orange),#f59e0b);
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 16px;
    font-size:28px;
}
.contact-card h3{font-size:18px;font-weight:600;margin-bottom:8px}
.contact-card p{font-size:13px;color:var(--text-gray);line-height:1.6;margin-bottom:16px}
.contact-tags{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:6px;
    margin-bottom:16px;
}
.contact-tag{
    background:rgba(34,197,94,0.12);
    color:#4ade80;
    padding:4px 10px;
    border-radius:20px;
    font-size:10px;
    font-weight:600;
}
.btn-action{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:100%;
    padding:10px;
    border-radius:10px;
    font-weight:600;
    font-size:13px;
    background:var(--orange);
    color:#fff;
    border:none;
    cursor:pointer;
    transition:all 0.3s;
}
.btn-action:hover{background:var(--orange-hover)}

/* ---- FAQ ---- */
.faq-list{max-width:800px;margin:0 auto}
.faq-item{
    background:var(--bg-card);
    border:1px solid var(--border-subtle);
    border-radius:10px;
    margin-bottom:8px;
    overflow:hidden;
}
.faq-question{
    width:100%;
    background:none;
    border:none;
    padding:16px 20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    cursor:pointer;
    color:var(--text-white);
    font-size:14px;
    font-weight:600;
    text-align:left;
    font-family:inherit;
}
.faq-question:hover{background:rgba(255,255,255,0.03)}
.faq-question h3{font-size:14px;font-weight:600;margin:0}
.faq-icon{font-size:18px;transition:transform 0.3s;color:var(--orange)}
.faq-item.active .faq-icon{transform:rotate(45deg)}
.faq-answer{max-height:0;overflow:hidden;transition:max-height 0.3s}
.faq-answer-inner{padding:0 20px 16px;color:var(--text-gray);font-size:13px;line-height:1.7}
.faq-item.active .faq-answer{max-height:300px}

/* ---- CTA ---- */
.cta-section{
    background:linear-gradient(135deg,var(--orange),#f59e0b);
    text-align:center;
    padding:48px 24px;
    border-radius:16px;
    margin:0 24px 24px;
}
.cta-section h2{font-size:24px;font-weight:700;margin-bottom:12px}
.cta-section p{color:rgba(255,255,255,0.9);margin-bottom:20px;font-size:14px}
.cta-section .btn-cta-white{
    background:#fff;
    color:var(--orange);
    padding:12px 36px;
    border-radius:10px;
    font-weight:700;
    font-size:14px;
    border:none;
    cursor:pointer;
    transition:all 0.3s;
    display:inline-block;
}
.cta-section .btn-cta-white:hover{transform:translateY(-2px);box-shadow:0 8px 25px rgba(0,0,0,0.2)}

/* ---- SECTION SPACING ---- */
.section-pad{padding:24px}
.section-title-center{
    font-size:20px;
    font-weight:700;
    text-align:center;
    margin-bottom:8px;
}
.section-subtitle{
    font-size:13px;
    color:var(--text-gray);
    text-align:center;
    margin-bottom:24px;
}

/* ---- PROVIDERS PAGE GRID ---- */
.providers-page-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
}
.provider-page-card{
    background:var(--bg-card);
    border:1px solid var(--border-subtle);
    border-radius:14px;
    padding:20px;
    transition:all 0.3s;
}
.provider-page-card:hover{border-color:var(--orange);transform:translateY(-2px)}
.provider-card-header{display:flex;align-items:center;gap:14px;margin-bottom:12px}
.provider-card-logo{
    width:48px;
    height:48px;
    background:rgba(232,98,28,0.08);
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:8px;
}
.provider-card-logo img{max-width:100%;max-height:100%;filter:invert(1) brightness(2)}
.provider-card-name{font-size:16px;font-weight:600}
.provider-card-badge{
    display:inline-block;
    background:rgba(34,197,94,0.12);
    color:#4ade80;
    padding:2px 8px;
    border-radius:8px;
    font-size:9px;
    font-weight:600;
    text-transform:uppercase;
}
.provider-card-description{font-size:12px;color:var(--text-gray);line-height:1.5;margin-bottom:10px}
.provider-card-tags{display:flex;flex-wrap:wrap;gap:4px}
.provider-card-tag{
    background:rgba(232,98,28,0.1);
    color:var(--orange);
    padding:3px 8px;
    border-radius:8px;
    font-size:10px;
    font-weight:500;
}

/* ---- STATS GRID ---- */
.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:12px;
    max-width:600px;
    margin:24px auto 0;
}
.stat-card{
    background:var(--bg-card);
    border:1px solid var(--border-subtle);
    border-radius:10px;
    padding:14px;
    text-align:center;
}
.stat-value{font-size:22px;font-weight:700;color:var(--orange);margin-bottom:2px}
.stat-label{font-size:11px;color:var(--text-gray)}

/* ---- REVIEWS ---- */
.reviews-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
}
.review-card{
    background:var(--bg-card);
    border:1px solid var(--border-subtle);
    border-radius:14px;
    padding:20px;
}
.review-header{display:flex;align-items:center;gap:10px;margin-bottom:12px}
.review-avatar{
    width:40px;
    height:40px;
    background:linear-gradient(135deg,var(--orange),#f59e0b);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:16px;
}
.review-info h4,.review-info h3{font-size:14px;font-weight:600;margin:0}
.review-info span{font-size:11px;color:var(--text-muted)}
.review-stars{color:#fbbf24;margin-bottom:8px;font-size:13px}
.review-text{font-size:13px;color:var(--text-gray);line-height:1.6}

/* ---- CONTENT SECTIONS (SEO) ---- */
.content-section{padding:32px 24px}
.content-section:nth-child(even){background:rgba(255,255,255,0.02)}
.content-text{font-size:14px;color:var(--text-gray);line-height:1.8;max-width:800px;margin:0 auto 20px}
.content-text strong{color:var(--text-white)}
.content-card{
    background:var(--bg-card);
    border:1px solid var(--border-subtle);
    border-radius:14px;
    padding:24px;
    margin-bottom:20px;
}
.content-card h3{font-size:18px;font-weight:700;margin-bottom:10px;color:var(--text-white)}
.content-card p{font-size:13px;color:var(--text-gray);line-height:1.7}
.content-card ul{list-style:none;padding:0}
.content-card ul li{font-size:13px;color:var(--text-gray);line-height:1.7;padding:4px 0 4px 20px;position:relative}
.content-card ul li::before{content:'\2713';position:absolute;left:0;color:var(--orange);font-weight:700}

/* Why grid */
.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:16px;
    margin-top:20px;
}
.why-card{
    background:var(--bg-card);
    border:1px solid var(--border-subtle);
    border-radius:14px;
    padding:24px;
    text-align:center;
    transition:all 0.3s;
}
.why-card:hover{border-color:var(--orange);transform:translateY(-3px)}
.why-card-icon{font-size:32px;margin-bottom:12px}
.why-card h3{font-size:15px;font-weight:700;margin-bottom:8px;color:var(--text-white)}
.why-card p{font-size:12px;color:var(--text-gray);line-height:1.6}

/* Pros/Cons */
.pros-cons-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
    margin-top:20px;
}
.pros-card,.cons-card{
    background:var(--bg-card);
    border:1px solid var(--border-subtle);
    border-radius:14px;
    padding:24px;
}
.pros-card h3,.cons-card h3{font-size:16px;font-weight:700;margin-bottom:14px}
.pros-card h3{color:#4ade80}
.cons-card h3{color:#f87171}
.pros-list,.cons-list{list-style:none;padding:0}
.pros-list li,.cons-list li{font-size:13px;color:var(--text-gray);padding:6px 0 6px 22px;position:relative;line-height:1.6}
.pros-list li::before{content:'\2713';position:absolute;left:0;color:#4ade80;font-weight:700}
.cons-list li::before{content:'\2717';position:absolute;left:0;color:#f87171;font-weight:700}

/* Specs table */
.specs-table{
    width:100%;
    max-width:700px;
    margin:20px auto 0;
    border-collapse:collapse;
}
.specs-table tr{border-bottom:1px solid var(--border-subtle)}
.specs-table td{padding:12px 16px;font-size:13px;color:var(--text-gray)}
.specs-table td:first-child{font-weight:600;color:var(--text-white);width:40%}

/* Steps */
.steps-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:16px;
    margin-top:20px;
}
.step-card{
    background:var(--bg-card);
    border:1px solid var(--border-subtle);
    border-radius:14px;
    padding:24px;
    text-align:center;
    position:relative;
}
.step-number{
    width:40px;
    height:40px;
    background:linear-gradient(135deg,var(--orange),#f59e0b);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:800;
    font-size:18px;
    margin:0 auto 14px;
    color:#fff;
}
.step-card h3{font-size:14px;font-weight:700;margin-bottom:8px;color:var(--text-white)}
.step-card p{font-size:12px;color:var(--text-gray);line-height:1.6}

/* ---- RESPONSIVE ---- */
@media(max-width:1200px){
    .games-grid,.sports-grid,.live-grid{grid-template-columns:repeat(4,1fr)}
    .collections-grid{grid-template-columns:repeat(2,1fr)}
    .footer-top{grid-template-columns:1.5fr 1fr 1fr}
}
@media(max-width:1024px){
    .games-grid,.sports-grid,.live-grid{grid-template-columns:repeat(3,1fr)}
    .features-row{grid-template-columns:1fr}
    .deposit-grid{grid-template-columns:repeat(3,1fr)}
    .reviews-grid{grid-template-columns:repeat(2,1fr)}
    .why-grid{grid-template-columns:repeat(2,1fr)}
    .steps-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:768px){
    .sidebar{transform:translateX(-100%)}
    .sidebar.open{transform:translateX(0)}
    .main{margin-left:0}
    .mobile-nav{display:flex}
    .mobile-header{display:flex}
    .topbar{display:none}
    .games-grid,.sports-grid,.live-grid{grid-template-columns:repeat(2,1fr)}
    .collections-grid{grid-template-columns:1fr}
    .bonus-details{grid-template-columns:repeat(2,1fr)}
    .deposit-grid{grid-template-columns:repeat(2,1fr)}
    .contact-grid{grid-template-columns:1fr}
    .promo-grid{grid-template-columns:1fr}
    .footer-top{grid-template-columns:1fr}
    .footer-bottom{flex-direction:column;gap:12px;text-align:center}
    .stats-grid{grid-template-columns:repeat(2,1fr)}
    .reviews-grid{grid-template-columns:1fr}
    .providers-page-grid{grid-template-columns:1fr}
    .why-grid{grid-template-columns:repeat(2,1fr)}
    .steps-grid{grid-template-columns:repeat(2,1fr)}
    .pros-cons-grid{grid-template-columns:1fr}

    /* Mobile hero */
    .hero-banner{padding:0}
    .hero-banner-inner{
        min-height:540px;
        border-radius:0;
        flex-direction:column;
        justify-content:flex-end;
        align-items:center;
        text-align:center;
        background:linear-gradient(180deg,#1a0a2e 0%,#0d0e1a 60%,#1a1030 100%);
    }
    .hero-banner-content{
        padding:16px 20px 20px;
        max-width:100%;
        z-index:3;
    }
    .hero-banner-image{
        display:none;
    }
    .hero-banner-character{
        display:block;
        position:absolute;
        top:0;
        left:50%;
        transform:translateX(-50%);
        width:100%;
        height:100%;
        z-index:1;
        overflow:hidden;
    }
    .hero-banner-character img{
        width:100%;
        height:100%;
        object-fit:cover;
        object-position:top center;
        mask-image:linear-gradient(to bottom,rgba(0,0,0,1) 50%,rgba(0,0,0,0) 100%);
        -webkit-mask-image:linear-gradient(to bottom,rgba(0,0,0,1) 50%,rgba(0,0,0,0) 100%);
    }
    .hero-banner-badges{
        top:auto;
        right:10px;
        bottom:auto;
        top:50%;
        transform:translateY(-50%);
    }
    .hero-banner-percent{
        font-size:80px;
        text-shadow:3px 3px 0 #b8860b,0 0 40px rgba(255,215,0,0.5);
    }
    .hero-banner-cta{
        padding:14px 32px;
        font-size:13px;
        width:100%;
        text-align:center;
    }
    .hero-payment-row{
        flex-direction:column;
        padding:16px;
        gap:12px;
    }
    .hero-payment-icons img{
        max-width:300px;
        width:80%;
    }
    .hero-conditions-text{
        text-align:center;
    }

    /* Mobile features */
    .features-row{
        grid-template-columns:1fr;
        padding:0 16px 16px;
        gap:10px;
    }

    body{padding-bottom:80px}
}