:root {
            --primary: #FFD700;
            --primary-hover: #EAB308;
            --secondary: #C0C0C0;
            --accent: #DC2626;
            --gold-gradient: linear-gradient(180deg, #FFD700 0%, #B8860B 100%);
            --bg-base: #0A0A0A;
            --bg-surface: #171717;
            --bg-elevated: #262626;
            --bg-overlay: rgba(0, 0, 0, 0.85);
            --text-primary: #FFFFFF;
            --text-secondary: #A3A3A3;
            --text-muted: #737373;
            --text-brand: #FFD700;
            --text-inverse: #000000;
            --success: #22C55E;
            --error: #EF4444;
            --warning: #F59E0B;
            --info: #3B82F6;
            --border-subtle: #262626;
            --border-default: #404040;
            --border-strong: #525252;
            --border-interactive: #FFD700;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            background-color: var(--bg-base);
            color: var(--text-primary);
            font-family: 'Inter', sans-serif;
            line-height: 1.5;
            overflow-x: hidden;
            padding-bottom: 70px;
        }

        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; }

        header {
            background-color: var(--bg-surface);
            border-bottom: 1px solid var(--border-subtle);
            padding: 0.75rem 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--text-brand); text-transform: uppercase; }

        .header-right { display: flex; gap: 8px; }
        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 0.875rem;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        .btn-login { background: transparent; border: 1px solid var(--primary); color: var(--primary); }
        .btn-register { background: var(--gold-gradient); color: var(--text-inverse); }

        .banner { width: 100%; display: block; cursor: pointer; aspect-ratio: 2/1; object-fit: cover; }

        .jackpot-container {
            background: var(--bg-surface);
            margin: 1rem;
            padding: 1.5rem;
            border-radius: 12px;
            border: 1px solid var(--border-interactive);
            text-align: center;
        }
        .jackpot-label { color: var(--text-secondary); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; }
        .jackpot-amount {
            font-family: 'Roboto Mono', monospace;
            font-size: 1.875rem;
            color: var(--primary);
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
            margin-top: 5px;
            font-weight: 700;
        }

        .intro-card { margin: 1rem; padding: 1.5rem; background: var(--bg-surface); border-radius: 12px; }
        .intro-card h1 { font-size: 1.25rem; margin-bottom: 0.75rem; color: var(--primary); }
        .intro-card p { color: var(--text-secondary); font-size: 0.875rem; }

        .section-title { padding: 0 1rem; margin: 1.5rem 0 1rem; font-size: 1.25rem; border-left: 4px solid var(--primary); margin-left: 1rem; }

        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 1rem; }
        .game-card { background: var(--bg-surface); border-radius: 12px; overflow: hidden; text-decoration: none; border: 1px solid var(--border-subtle); transition: transform 0.2s; }
        .game-card:active { transform: scale(0.98); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 0.875rem; color: var(--text-primary); margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-provider { font-size: 0.75rem; color: var(--text-muted); }

        .payment-methods { background: var(--bg-surface); margin: 1.5rem 1rem; padding: 1.5rem; border-radius: 12px; }
        .payment-icons { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; align-items: center; justify-items: center; }
        .payment-icons i { font-size: 1.5rem; color: var(--secondary); }

        .guidelines { padding: 0 1rem; }
        .guide-item { background: var(--bg-surface); padding: 1rem; border-radius: 12px; margin-bottom: 12px; }
        .guide-item h2 { font-size: 1rem; color: var(--primary); margin-bottom: 0.5rem; }
        .guide-item p { font-size: 0.875rem; color: var(--text-secondary); }

        .winners-marquee { background: var(--bg-surface); margin: 1.5rem 0; padding: 10px 0; overflow: hidden; white-space: nowrap; }
        .marquee-content { display: inline-block; animation: scroll 40s linear infinite; }
        .winner-tag { display: inline-flex; align-items: center; background: var(--bg-elevated); padding: 8px 15px; border-radius: 20px; margin-right: 15px; border: 1px solid var(--border-subtle); }
        .winner-tag span { font-size: 0.8125rem; color: var(--text-secondary); margin-right: 8px; }
        .winner-tag b { color: var(--success); font-family: 'Roboto Mono', monospace; }

        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        .providers-wall { padding: 1.5rem 1rem; text-align: center; color: var(--text-muted); font-size: 0.875rem; background: var(--bg-surface); margin: 1.5rem 1rem; border-radius: 12px; display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
        .provider-name { font-weight: 600; color: var(--secondary); }

        .reviews-grid { padding: 0 1rem; display: flex; flex-direction: column; gap: 12px; }
        .review-card { background: var(--bg-surface); padding: 1.25rem; border-radius: 12px; border-left: 3px solid var(--primary); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 2rem; color: var(--secondary); }
        .review-user { font-weight: 600; color: var(--text-primary); font-size: 0.9375rem; }
        .stars { color: #FBBF24; font-size: 0.75rem; }
        .review-date { font-size: 0.75rem; color: var(--text-muted); margin-left: auto; }
        .review-content { font-size: 0.8125rem; color: var(--text-secondary); line-height: 1.6; }

        .faq-section { padding: 0 1rem; margin-top: 1.5rem; }
        .faq-item { background: var(--bg-surface); margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; color: var(--primary); font-size: 0.9375rem; border-bottom: 1px solid var(--border-subtle); }
        .faq-answer { padding: 15px; color: var(--text-secondary); font-size: 0.875rem; line-height: 1.6; }

        .security-section { margin: 1.5rem 1rem; padding: 1.5rem; background: var(--bg-elevated); border-radius: 12px; text-align: center; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 1rem; font-size: 1.5rem; color: var(--text-brand); }
        .security-text { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 10px; }
        .age-badge { display: inline-block; border: 2px solid var(--accent); color: var(--accent); padding: 2px 8px; border-radius: 50%; font-weight: 900; font-size: 0.875rem; }

        .navigator { position: fixed; bottom: 0; width: 100%; background: var(--bg-surface); border-top: 1px solid var(--border-subtle); display: flex; justify-content: space-around; padding: 10px 0; z-index: 1001; }
        .nav-item { text-align: center; text-decoration: none; color: var(--text-secondary); font-size: 0.7rem; }
        .nav-item i { display: block; font-size: 1.25rem; margin-bottom: 4px; color: var(--secondary); }
        .nav-item:active i { color: var(--primary); }

        footer { background: var(--bg-surface); padding: 2rem 1rem 5rem; border-top: 1px solid var(--border-subtle); }
        .footer-contact { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; margin-bottom: 2rem; }
        .footer-contact a { color: var(--primary); text-decoration: none; font-size: 0.875rem; font-weight: 500; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; text-align: center; }
        .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.8125rem; padding: 5px 0; }
        .footer-copyright { text-align: center; color: var(--text-muted); font-size: 0.75rem; margin-top: 2rem; padding-top: 1rem; border-top: 1px solid var(--border-subtle); }