
        /* ============================================================
           PALETTE : tout le thème se règle ici.
           Thème par défaut : crème / or (comme VipLuck).
           Variante sombre en commentaire plus bas.
           ============================================================ */
        :root{--bg:#0a1424;--surface:#10203a;--surface-2:#17294a;--card:#12213c;--border:#24365a;--border-light:#1e2f50;--text:#cdd6e6;--text-strong:#ffffff;--text-muted:#8695ad;--accent:#f0b52e;--accent-dark:#d99420;--accent-deep:#f7c948;--on-accent:#10203a;--hero-cta-1:#d23b3b;--hero-cta-2:#f05555;--panel-1:#7a1520;--panel-2:#9e1e2a;--positive:#2ec16e;--negative:#ef4444;--pros:#2ec16e;--cons:#ef4444;}
        /* Variante SOMBRE : décommenter ce bloc pour un thème dark.
        :root {
            --bg: #0e0e1a; --surface: #16162a; --surface-2: #1e1e36;
            --card: #1a1a2e; --border: #2c2c4a; --border-light: #26263e;
            --text: #c5c5d3; --text-strong: #ffffff; --text-muted: #8a8aa0;
            --accent-deep: #f7c948;
        }
        */

        /* ===== RESET & BASE ===== */
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Inter', sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.5;
            overflow-x: hidden;
        }
        a { color: inherit; text-decoration: none; }
        img { max-width: 100%; display: block; }
        button, input { font-family: inherit; border: none; outline: none; }
        ::-webkit-scrollbar { height: 6px; width: 6px; }
        ::-webkit-scrollbar-track { background: var(--surface-2); }
        ::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

        /* ===== HEADER ===== */
        .site-header {
            position: fixed;
            top: 0; left: 0; right: 0;
            height: 60px;
            background: var(--surface);
            border-bottom: 1px solid var(--border);
            display: flex;
            align-items: center;
            padding: 0 16px;
            z-index: 1000;
            gap: 12px;
        }
        .header-logo {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 20px;
            font-weight: 800;
            color: var(--text-strong);
            letter-spacing: .5px;
            white-space: nowrap;
        }
        .header-logo .logo-mark {
            width: 32px; height: 32px;
            border-radius: 8px;
            background: linear-gradient(135deg, var(--accent), var(--accent-dark));
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
        }
        .header-logo .logo-accent { color: var(--accent-dark); }
        .header-search {
            flex: 1;
            max-width: 420px;
            position: relative;
            margin-left: 16px;
        }
        .header-search input {
            width: 100%;
            height: 36px;
            background: var(--surface-2);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 0 12px 0 34px;
            color: var(--text-muted);
            font-size: 13px;
            cursor: pointer;
        }
        .header-search::before {
            content: '🔍';
            position: absolute;
            left: 10px; top: 50%;
            transform: translateY(-50%);
            font-size: 13px;
            opacity: .6;
        }
        .header-right {
            margin-left: auto;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .btn-login, .btn-signup {
            height: 36px;
            padding: 0 18px;
            border-radius: 8px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: .5px;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            white-space: nowrap;
        }
        .btn-login {
            background: transparent;
            border: 1px solid var(--border);
            color: var(--text);
        }
        .btn-login:hover { border-color: var(--accent-dark); color: var(--text-strong); }
        .btn-signup {
            background: linear-gradient(135deg, var(--accent), var(--accent-dark));
            color: var(--on-accent);
        }
        .btn-signup:hover { filter: brightness(1.08); }

        /* ===== SIDEBAR ===== */
        .sidebar {
            position: fixed;
            top: 60px;
            left: 0;
            width: 220px;
            height: calc(100vh - 60px);
            background: var(--surface);
            border-right: 1px solid var(--border);
            overflow-y: auto;
            z-index: 900;
            padding: 12px 0;
        }
        .sidebar-promo {
            margin: 0 12px 12px;
            border-radius: 10px;
            display: block;
            background: linear-gradient(135deg, var(--panel-1), var(--panel-2));
            padding: 16px 12px;
            text-align: center;
        }
        .sidebar-promo .promo-kicker {
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1px;
            color: var(--accent);
            text-transform: uppercase;
        }
        .sidebar-promo .promo-value {
            font-size: 18px;
            font-weight: 800;
            color: #fff;
            margin: 4px 0;
        }
        .sidebar-promo .promo-sub {
            font-size: 11px;
            color: rgba(255,255,255,.75);
        }
        .sidebar-sep {
            height: 1px;
            background: var(--border-light);
            margin: 8px 12px;
        }
        .sidebar-nav { list-style: none; }
        .sidebar-nav li a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 9px 16px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: .6px;
            color: var(--text-muted);
            transition: background .15s, color .15s;
        }
        .sidebar-nav li a:hover,
        .sidebar-nav li a.active {
            background: var(--surface-2);
            color: var(--text-strong);
        }
        .sidebar-nav li a.active {
            border-left: 3px solid var(--accent);
            padding-left: 13px;
        }
        .sidebar-nav .nav-icon {
            width: 20px;
            text-align: center;
            font-size: 14px;
        }

        /* ===== MAIN CONTENT ===== */
        .main-content {
            margin-left: 220px;
            margin-top: 60px;
            min-height: calc(100vh - 60px);
        }

        /* ===== HERO BANNER =====
           Fond en dégradé CSS : remplacer par une vraie image webp si dispo :
           background: url('img/hero-welcome.webp') center/cover no-repeat; */
        .hero-banner {
            width: 100%;
            height: 440px;
            background:
                radial-gradient(ellipse at 80% 20%, rgba(247,201,72,.25), transparent 55%),
                radial-gradient(ellipse at 90% 90%, rgba(74,108,247,.25), transparent 50%),
                linear-gradient(115deg, #0c2b1d 0%, var(--panel-1) 45%, var(--panel-2) 100%);
            position: relative;
            display: flex;
            align-items: center;
            padding: 0 60px;
        }
        .hero-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(10,10,18,.55) 0%, rgba(10,10,18,.15) 50%, transparent 100%);
        }
        .hero-text {
            position: relative;
            z-index: 1;
            max-width: 550px;
        }
        .hero-subtitle {
            font-family: 'Playfair Display', serif;
            font-style: italic;
            font-size: 28px;
            color: var(--accent);
            margin-bottom: 8px;
        }
        .hero-title {
            font-size: 36px;
            font-weight: 800;
            color: #fff;
            line-height: 1.15;
            margin-bottom: 6px;
            text-transform: uppercase;
        }
        .hero-amount {
            font-size: 22px;
            font-weight: 700;
            color: #e0e0e0;
            margin-bottom: 24px;
        }
        .hero-amount span { color: var(--accent); }
        .btn-hero {
            display: inline-block;
            padding: 14px 36px;
            background: linear-gradient(135deg, var(--hero-cta-1), var(--hero-cta-2), var(--hero-cta-1));
            color: #fff;
            font-family: 'Playfair Display', serif;
            font-size: 16px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            border-radius: 6px;
            cursor: pointer;
            transition: transform .15s, box-shadow .15s;
            box-shadow: 0 4px 20px rgba(74,108,247,.4);
        }
        .btn-hero:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(74,108,247,.6); }

        /* ===== CATEGORY ICONS BAR ===== */
        .category-bar {
            display: flex;
            gap: 4px;
            padding: 16px 20px;
            overflow-x: auto;
            background: var(--surface);
            border-bottom: 1px solid var(--border);
        }
        .category-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            min-width: 84px;
            padding: 10px 6px;
            border-radius: 8px;
            cursor: pointer;
            transition: background .15s;
        }
        .category-item:hover { background: var(--surface-2); }
        .category-item .cat-icon {
            width: 52px; height: 52px;
            margin-bottom: 6px;
            border-radius: 10px;
            background: linear-gradient(135deg, var(--panel-1), var(--panel-2));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }
        .category-item span.cat-label {
            font-size: 9px;
            font-weight: 700;
            letter-spacing: .4px;
            text-transform: uppercase;
            color: var(--text-muted);
            text-align: center;
            white-space: nowrap;
        }
        .category-item:hover span.cat-label { color: var(--text-strong); }

        /* ===== GAME SECTIONS ===== */
        .game-section { padding: 28px 20px 8px; }
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
        }
        .section-header h2 {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-strong);
        }
        .section-header a {
            font-size: 12px;
            font-weight: 600;
            color: var(--accent-deep);
            letter-spacing: .3px;
        }
        .section-header a:hover { text-decoration: underline; }
        .games-row {
            display: flex;
            gap: 12px;
            overflow-x: auto;
            padding-bottom: 12px;
        }
        .game-card {
            min-width: 160px;
            max-width: 160px;
            border-radius: 12px;
            overflow: hidden;
            background: var(--surface-2);
            transition: transform .2s, box-shadow .2s;
            position: relative;
            cursor: pointer;
            flex-shrink: 0;
        }
        .game-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.35); }
        .game-card-img {
            width: 100%;
            aspect-ratio: 3/4;
            object-fit: cover;
        }
        .game-card-info { padding: 8px 10px; }
        .game-card-name {
            font-size: 12px;
            font-weight: 600;
            color: var(--text-strong);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .game-card-provider {
            font-size: 10px;
            color: var(--text-muted);
            margin-top: 2px;
        }
        .game-card-overlay {
            position: absolute;
            top: 0; left: 0; right: 0;
            aspect-ratio: 3/4;
            background: rgba(3,65,42,.8);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity .2s;
        }
        .game-card:hover .game-card-overlay { opacity: 1; }
        .btn-play {
            padding: 10px 24px;
            background: linear-gradient(135deg, var(--accent), var(--accent-dark));
            color: var(--on-accent);
            font-size: 13px;
            font-weight: 700;
            border-radius: 6px;
            letter-spacing: .5px;
        }

        /* ===== TOURNAMENT BANNER ===== */
        .tournament-banner {
            margin: 28px 20px;
            background: linear-gradient(135deg, var(--panel-1) 0%, var(--panel-2) 50%, var(--panel-1) 100%);
            border-radius: 16px;
            padding: 40px;
            text-align: center;
            border: 1px solid var(--border);
            position: relative;
            overflow: hidden;
        }
        .tournament-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at center, rgba(247,201,72,.08), transparent 70%);
        }
        .tournament-banner h3 {
            font-size: 14px;
            font-weight: 600;
            color: var(--accent);
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 8px;
            position: relative;
        }
        .tournament-banner .tourney-title {
            font-size: 28px;
            font-weight: 800;
            color: #fff;
            text-transform: uppercase;
            margin-bottom: 6px;
            position: relative;
        }
        .tournament-banner .tourney-prize {
            font-size: 20px;
            color: var(--accent);
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
        }
        .btn-tournament {
            display: inline-block;
            padding: 12px 32px;
            background: linear-gradient(135deg, var(--accent), var(--accent-dark));
            color: var(--on-accent);
            font-size: 14px;
            font-weight: 700;
            border-radius: 8px;
            letter-spacing: .5px;
            position: relative;
            transition: transform .15s;
        }
        .btn-tournament:hover { transform: translateY(-2px); }

        /* ===== PROVIDERS ROW ===== */
        .providers-section { padding: 28px 20px; }
        .providers-row {
            display: flex;
            gap: 12px;
            overflow-x: auto;
            padding-bottom: 8px;
        }
        .provider-logo {
            min-width: 130px;
            height: 56px;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px 16px;
            flex-shrink: 0;
        }
        .provider-logo img {
            max-height: 34px;
            width: 100%;
            object-fit: contain;
            opacity: .85;
            transition: opacity .15s;
        }
        .provider-logo:hover { border-color: var(--accent-dark); }
        .provider-logo:hover img { opacity: 1; }

        /* ===== BONUS SECTION ===== */
        .bonus-section { padding: 40px 20px; }
        .section-title {
            text-align: center;
            margin-bottom: 32px;
        }
        .section-title h2 {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-strong);
            margin-bottom: 6px;
        }
        .section-title p {
            font-size: 14px;
            color: var(--text-muted);
        }
        .bonus-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 20px;
        }
        .bonus-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 28px 20px;
            text-align: center;
            transition: all .3s;
        }
        .bonus-card:hover {
            transform: translateY(-4px);
            border-color: var(--accent-dark);
            box-shadow: 0 8px 24px rgba(232,160,32,.12);
        }
        .bonus-card-icon {
            font-size: 44px;
            margin-bottom: 16px;
        }
        .bonus-card h3 {
            font-size: 17px;
            font-weight: 700;
            color: var(--text-strong);
            margin-bottom: 6px;
        }
        .bonus-card-value {
            font-size: 24px;
            font-weight: 800;
            background: linear-gradient(135deg, var(--accent-deep), var(--accent-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 6px;
        }
        .bonus-card p { color: var(--text-muted); font-size: 13px; }
        .bonus-info-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 32px;
        }
        .bonus-info-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 24px;
        }
        .bonus-info-card h3 {
            color: var(--accent-deep);
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 12px;
        }
        .bonus-info-card p {
            color: var(--text-muted);
            font-size: 13px;
            line-height: 1.7;
            margin-bottom: 10px;
        }
        .bonus-info-card p:last-child { margin-bottom: 0; }
        .bonus-info-card strong { color: var(--text); }

        /* ===== WINNERS SECTION ===== */
        .winners-section { padding: 40px 20px; }
        .winners-table {
            border: 1px solid var(--border);
            border-radius: 10px;
            overflow: hidden;
        }
        .winners-row {
            display: grid;
            grid-template-columns: 1.5fr 2fr 1.5fr 1fr;
            padding: 14px 20px;
            font-size: 14px;
            color: var(--text);
            border-bottom: 1px solid var(--border-light);
            align-items: center;
        }
        .winners-row:last-child { border-bottom: none; }
        .winners-row.header {
            background: var(--surface);
            font-weight: 700;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: .3px;
            color: var(--text-muted);
            padding: 12px 20px;
        }
        .winners-row .player-name { font-weight: 600; }
        .winners-row .win-amount { font-weight: 700; }
        .winners-row .win-amount.positive { color: var(--positive); }
        .winners-row .win-time { color: var(--text-muted); font-size: 13px; text-align: right; }

        /* ===== VIP SECTION ===== */
        .vip-section {
            padding: 40px 20px;
            background: var(--surface);
        }
        .vip-intro {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.7;
            max-width: 780px;
            margin: 0 auto 28px;
            text-align: center;
        }
        .vip-intro strong { color: var(--text); }
        .vip-table {
            border: 1px solid var(--border);
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 28px;
            background: var(--bg);
        }
        .vip-row {
            display: grid;
            grid-template-columns: 2fr 2fr 1fr 1.5fr;
            padding: 12px 16px;
            font-size: 13px;
            color: var(--text);
            border-bottom: 1px solid var(--border-light);
        }
        .vip-row:last-child { border-bottom: none; }
        .vip-row.header {
            background: var(--surface-2);
            font-weight: 700;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: .3px;
            color: var(--text-muted);
        }
        .vip-row .vip-level { font-weight: 600; }
        .vip-perks {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 16px;
        }
        .vip-perk {
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 20px;
            text-align: center;
        }
        .vip-perk-icon {
            font-size: 28px;
            margin-bottom: 10px;
        }
        .vip-perk h3 {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-strong);
            margin-bottom: 6px;
        }
        .vip-perk p {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* ===== DEPOSITS SECTION ===== */
        .deposits-section { padding: 28px 20px; }
        .deposits-section h2 {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-strong);
            margin-bottom: 8px;
        }
        .deposits-section h3 {
            font-size: 16px;
            font-weight: 600;
            color: var(--text);
            margin: 20px 0 8px;
        }
        .deposits-section p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 12px;
        }
        .deposits-section strong { color: var(--text); }
        .deposits-table {
            border: 1px solid var(--border);
            border-radius: 10px;
            overflow: hidden;
            margin: 12px 0;
        }
        .deposits-row {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            padding: 12px 16px;
            font-size: 13px;
            color: var(--text);
            border-bottom: 1px solid var(--border-light);
        }
        .deposits-row:last-child { border-bottom: none; }
        .deposits-row.header {
            background: var(--surface);
            font-weight: 700;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: .3px;
            color: var(--text-muted);
        }

        /* ===== FEATURES SECTION ===== */
        .features-section {
            padding: 28px 20px;
            background: var(--surface);
        }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        .feature-card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 24px 16px;
            text-align: center;
        }
        .feature-icon {
            font-size: 32px;
            margin-bottom: 12px;
        }
        .feature-card h3 {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-strong);
            margin-bottom: 6px;
        }
        .feature-card p {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.5;
        }

        /* ===== REVIEWS (AVIS JOUEURS) ===== */
        .reviews-section {
            padding: 28px 20px;
            background: var(--surface);
        }
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }
        .review-card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 20px;
        }
        .review-card-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 10px;
        }
        .review-avatar {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--accent), var(--accent-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: var(--on-accent);
            font-size: 16px;
        }
        .review-card-info h3 {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-strong);
            margin: 0;
        }
        .review-card-info span {
            font-size: 11px;
            color: var(--text-muted);
        }
        .review-stars {
            color: var(--accent-dark);
            font-size: 16px;
            margin-bottom: 8px;
        }
        .review-card p {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.5;
        }

        /* ===== INSCRIPTION SECTION ===== */
        .inscription-section { padding: 28px 20px; }
        .inscription-section h2 {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-strong);
            margin-bottom: 8px;
        }
        .inscription-intro {
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 20px;
        }
        .inscription-steps {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        .inscription-step {
            flex: 1;
            min-width: 200px;
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 10px;
        }
        .step-number {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--accent), var(--accent-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            color: var(--on-accent);
            font-size: 16px;
            flex-shrink: 0;
        }
        .inscription-step span:last-child {
            font-size: 13px;
            font-weight: 600;
            color: var(--text);
        }

        /* ===== CTA SECTION ===== */
        .cta-section {
            padding: 40px 20px;
            text-align: center;
            background: linear-gradient(135deg, var(--panel-1) 0%, var(--panel-2) 100%);
            border-radius: 12px;
            margin: 28px 20px;
        }
        .cta-section h2 {
            font-size: 24px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px;
        }
        .cta-section p {
            font-size: 14px;
            color: rgba(255,255,255,.7);
            margin-bottom: 20px;
        }
        .btn-cta {
            display: inline-block;
            padding: 14px 36px;
            background: linear-gradient(135deg, var(--accent), var(--accent-dark));
            color: var(--on-accent);
            font-size: 14px;
            font-weight: 700;
            letter-spacing: .5px;
            text-transform: uppercase;
            border-radius: 8px;
            transition: transform .15s, box-shadow .15s;
        }
        .btn-cta:hover { transform: translateY(-2px); box-shadow: 0 4px 20px rgba(247,201,72,.4); }

        /* ===== REVIEW SECTION (avis expert) ===== */
        .review-section { padding: 28px 20px; }
        .review-header { margin-bottom: 20px; }
        .review-header h2 {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-strong);
            margin-bottom: 4px;
        }
        .review-header p {
            font-size: 14px;
            color: var(--text-muted);
        }
        .review-content {
            display: flex;
            gap: 24px;
        }
        .review-text-box { flex: 1; }
        .review-text-box p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 12px;
        }
        .review-text-box strong { color: var(--text); }
        .review-pros-cons {
            display: flex;
            gap: 20px;
            margin-top: 20px;
        }
        .review-pros, .review-cons {
            flex: 1;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 16px;
        }
        .review-pros h3, .review-cons h3 {
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 10px;
        }
        .review-pros h3 { color: var(--pros); }
        .review-cons h3 { color: var(--cons); }
        .review-pros ul, .review-cons ul { list-style: none; }
        .review-pros li, .review-cons li {
            font-size: 13px;
            color: var(--text);
            padding: 4px 0;
        }
        .review-sidebar {
            width: 260px;
            flex-shrink: 0;
        }
        .review-specs {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 20px;
        }
        .review-specs h3 {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-strong);
            margin-bottom: 14px;
        }
        .review-spec-row {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid var(--border-light);
        }
        .review-spec-row:last-child { border-bottom: none; }
        .review-spec-label {
            font-size: 13px;
            color: var(--text-muted);
        }
        .review-spec-value {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-strong);
        }
        .review-spec-value.licensed { color: var(--pros); }

        /* ===== FAQ ===== */
        .faq-section { padding: 28px 20px; }
        .faq-section h2 {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-strong);
            margin-bottom: 16px;
        }
        .faq-item {
            border: 1px solid var(--border);
            border-radius: 10px;
            margin-bottom: 8px;
            overflow: hidden;
            background: var(--surface);
        }
        .faq-question {
            width: 100%;
            padding: 16px 20px;
            background: transparent;
            color: var(--text-strong);
            font-size: 14px;
            font-weight: 600;
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-question h3 {
            font-size: 14px;
            font-weight: 600;
            margin: 0;
        }
        .faq-question::after {
            content: '+';
            font-size: 20px;
            color: var(--accent-dark);
            transition: transform .2s;
        }
        .faq-item.open .faq-question::after { content: '-'; }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height .3s, padding .3s;
        }
        .faq-item.open .faq-answer { max-height: 500px; }
        .faq-answer-inner {
            padding: 0 20px 16px;
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.7;
        }
        .faq-answer-inner p { margin-bottom: 8px; }
        .faq-answer-inner p:last-child { margin-bottom: 0; }
        .faq-answer-inner strong { color: var(--text); }

        /* ===== FOOTER ===== */
        footer {
            margin-top: 20px;
            margin-left: 220px;
            background: var(--surface);
            border-top: 1px solid var(--border);
            padding: 40px 20px 20px;
        }
        .footer-top {
            display: flex;
            gap: 40px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        .footer-logo {
            flex: 1;
            min-width: 200px;
        }
        .footer-logo .footer-brand {
            font-size: 20px;
            font-weight: 800;
            color: var(--text-strong);
            margin-bottom: 12px;
        }
        .footer-logo .footer-brand span { color: var(--accent-dark); }
        .footer-logo p {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.6;
        }
        .footer-title {
            display: block;
            font-size: 13px;
            font-weight: 700;
            color: var(--text-strong);
            text-transform: uppercase;
            letter-spacing: .5px;
            margin-bottom: 12px;
        }
        .footer-links ul { list-style: none; }
        .footer-links ul li { margin-bottom: 6px; }
        .footer-links ul li a {
            font-size: 12px;
            color: var(--text-muted);
            transition: color .15s;
        }
        .footer-links ul li a:hover { color: var(--accent-deep); }
        .footer-payment-icons {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        .footer-payment-icons img {
            height: 34px;
            width: 56px;
            object-fit: contain;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 6px;
            padding: 5px 8px;
            opacity: .85;
            transition: opacity .15s;
        }
        .footer-payment-icons img:hover { opacity: 1; }
        .footer-bottom {
            border-top: 1px solid var(--border);
            padding-top: 20px;
            text-align: center;
        }
        .footer-badges {
            display: flex;
            gap: 10px;
            justify-content: center;
            margin-bottom: 16px;
            flex-wrap: wrap;
        }
        .footer-badges .badge {
            display: inline-block;
            padding: 4px 12px;
            background: var(--surface-2);
            border: 1px solid var(--border);
            border-radius: 6px;
            font-size: 11px;
            font-weight: 700;
            color: var(--text);
        }
        .footer-legal p {
            font-size: 11px;
            color: var(--text-muted);
            line-height: 1.6;
            max-width: 700px;
            margin: 0 auto 8px;
        }
        .footer-legal a { color: var(--accent-deep); text-decoration: underline; }
        .footer-legal a:hover { color: var(--accent-dark); }

        /* ===== MOBILE ===== */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 6px;
        }
        .mobile-menu-btn span {
            display: block;
            width: 22px;
            height: 2px;
            background: var(--text-muted);
            margin: 5px 0;
            border-radius: 2px;
            transition: .2s;
        }

        @media (max-width: 900px) {
            .sidebar { transform: translateX(-100%); transition: transform .3s; }
            .sidebar.open { transform: translateX(0); }
            .main-content { margin-left: 0; }
            footer { margin-left: 0; }
            .mobile-menu-btn { display: block; }
            .header-search { max-width: 200px; }
            .hero-banner { height: 360px; padding: 0 24px; }
            .hero-title { font-size: 24px; }
            .hero-subtitle { font-size: 20px; }
            .hero-amount { font-size: 16px; }
            .game-card { min-width: 140px; max-width: 140px; }
            .features-grid { grid-template-columns: repeat(2, 1fr); }
            .reviews-grid { grid-template-columns: repeat(2, 1fr); }
            .deposits-row { grid-template-columns: 1fr 1fr; gap: 4px; }
            .bonus-info-grid { grid-template-columns: 1fr; }
            .vip-row { grid-template-columns: 1fr 1fr; gap: 4px; }
            .winners-row { grid-template-columns: 1fr 1fr; gap: 4px; font-size: 13px; }
            .winners-row .win-time { text-align: left; }
            .review-content { flex-direction: column; }
            .review-sidebar { width: 100%; }
            .review-pros-cons { flex-direction: column; }
        }

        @media (max-width: 600px) {
            .header-search { display: none; }
            .hero-banner { height: 300px; padding: 0 16px; }
            .hero-title { font-size: 20px; }
            .hero-subtitle { font-size: 16px; }
            .btn-hero { padding: 10px 24px; font-size: 14px; }
            .game-card { min-width: 130px; max-width: 130px; }
            .footer-top { flex-direction: column; gap: 20px; }
            .features-grid { grid-template-columns: 1fr; }
            .reviews-grid { grid-template-columns: 1fr; }
            .inscription-steps { flex-direction: column; }
        }
    .hh-wrap{max-width:1100px;margin:0 auto;padding:26px 20px 6px}.hh-wrap p{color:var(--text);margin:0 0 14px;line-height:1.65}.hh-wrap h2{color:var(--text-strong);margin:26px 0 10px;font-size:1.45em}.hh-wrap ul{margin:0 0 16px 1.1em;color:var(--text)}.hh-wrap li{margin:.35em 0}.hh-facts{width:100%;border-collapse:collapse;margin:6px 0 22px;font-size:.95em}.hh-facts th{background:var(--panel-1);color:#fff;text-align:left;padding:11px 14px}.hh-facts td{border-bottom:1px solid var(--border);padding:9px 14px;color:var(--text)}.hh-facts td:first-child{color:var(--text-muted);width:42%;font-weight:600}.hh-facts tr:nth-child(even) td{background:var(--surface-2)}.hh-tbl{width:100%;border-collapse:collapse;margin:6px 0 18px;font-size:.95em}.hh-tbl th{background:var(--accent);color:var(--on-accent);padding:10px 12px;text-align:left}.hh-tbl td{border-bottom:1px solid var(--border);padding:9px 12px;color:var(--text)}.hh-tbl tr:last-child td{font-weight:700;color:var(--text-strong)}