:root {
            --primary: #D4AF37;
            --primary-hover: #F1C40F;
            --secondary: #00E676;
            --accent: #FF3D00;
            --gold-gradient: linear-gradient(180deg, #D4AF37 0%, #8A6E2F 100%);
            --bg-main: #0A0B0D;
            --bg-surface: #16181D;
            --bg-overlay: rgba(0, 0, 0, 0.85);
            --bg-card: #1E2126;
            --text-primary: #FFFFFF;
            --text-secondary: #94A3B8;
            --text-muted: #64748B;
            --border-subtle: #2D3748;
            --font-headings: 'Montserrat', sans-serif;
            --font-body: 'Inter', sans-serif;
            --font-numbers: 'Roboto Mono', monospace;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: var(--font-body);
            line-height: 1.5;
            padding-bottom: 70px;
        }
        h1, h2, h3 { font-family: var(--font-headings); font-weight: 700; color: var(--text-primary); }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        header {
            background: var(--bg-surface);
            height: 60px;
            display: flex;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-subtle);
        }
        .header-wrap {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            padding: 0 15px;
        }
        .logo-area { display: flex; align-items: center; gap: 8px; }
        .logo-area img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-area strong { font-size: 16px; font-weight: 400; color: var(--primary); text-transform: uppercase; }
        .auth-btns { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-register { background: var(--gold-gradient); color: #000; }
        .banner { width: 100%; display: block; cursor: pointer; aspect-ratio: 2 / 1; overflow: hidden; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box {
            background: var(--bg-card);
            margin: 20px 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--primary);
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
        }
        .jackpot-label { color: var(--primary); font-size: 14px; font-weight: 700; text-transform: uppercase; margin-bottom: 5px; }
        .jackpot-amount {
            font-family: var(--font-numbers);
            font-size: 32px;
            font-weight: 900;
            background: var(--gold-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .intro-card { padding: 20px 15px; text-align: center; }
        .intro-card h1 { font-size: 24px; margin-bottom: 15px; color: var(--primary); }
        .intro-card p { font-size: 16px; color: var(--text-secondary); }
        .section-title { padding: 20px 15px 10px; font-size: 20px; display: flex; align-items: center; gap: 10px; }
        .section-title i { color: var(--primary); }
        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            padding: 10px 15px;
        }
        .game-card {
            background: var(--bg-card);
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid var(--border-subtle);
        }
        .game-card img {
            width: 100%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            display: block;
        }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 14px; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-info span { font-size: 12px; color: var(--text-muted); }
        .payments-cert {
            background: var(--bg-surface);
            padding: 30px 15px;
            margin: 20px 0;
            text-align: center;
        }
        .icon-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 15px; }
        .icon-row i { font-size: 30px; color: var(--text-secondary); }
        .guidelines { padding: 20px 15px; display: grid; gap: 15px; }
        .guide-item { background: var(--bg-card); padding: 20px; border-radius: 12px; }
        .guide-item h2 { font-size: 18px; margin-bottom: 10px; color: var(--primary); }
        .guide-item p { font-size: 14px; color: var(--text-secondary); }
        .marquee-win {
            background: #000;
            padding: 10px 0;
            overflow: hidden;
            white-space: nowrap;
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
        }
        .marquee-content { display: inline-block; animation: scrollText 30s linear infinite; }
        .win-item { display: inline-block; margin-right: 40px; font-size: 13px; color: var(--text-secondary); }
        .win-item strong { color: var(--secondary); }
        @keyframes scrollText { from { transform: translateX(100%); } to { transform: translateX(-100%); } }
        .providers-wall { padding: 25px 15px; text-align: center; background: var(--bg-surface); }
        .providers-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 15px; color: var(--text-muted); font-weight: 600; }
        .reviews-section { padding: 20px 15px; }
        .review-card { background: var(--bg-card); padding: 20px; border-radius: 12px; margin-bottom: 15px; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: var(--primary); }
        .stars { color: var(--warning); font-size: 12px; }
        .faq-section { padding: 20px 15px; }
        .faq-item { background: var(--bg-card); margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: var(--primary); }
        .faq-answer { padding: 0 15px 15px; font-size: 14px; color: var(--text-secondary); }
        .responsible-gaming { padding: 30px 15px; text-align: center; border-top: 1px solid var(--border-subtle); }
        .age-badge { display: inline-block; border: 2px solid var(--accent); color: var(--accent); border-radius: 50%; width: 40px; height: 40px; line-height: 36px; font-weight: 900; margin-bottom: 15px; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 65px;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-subtle);
            z-index: 1000;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 5px; font-size: 11px; color: var(--text-secondary); }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: var(--primary); }
        footer { background: var(--bg-surface); padding: 40px 15px 100px; border-top: 1px solid var(--border-subtle); }
        .footer-contact { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 30px; justify-content: center; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        .footer-links a { font-size: 13px; color: var(--text-muted); }
        .copyright { text-align: center; font-size: 12px; color: var(--text-muted); padding-top: 20px; border-top: 1px solid var(--border-divider); }