:root {
            --brand-primary: #FFD700;
            --brand-primary-hover: #F0C800;
            --brand-secondary: #B8860B;
            --brand-accent: #D4AF37;
            --bg-main: #0B0E11;
            --bg-surface: #151921;
            --bg-elevated: #1F2630;
            --bg-overlay: rgba(0, 0, 0, 0.85);
            --text-primary: #FFFFFF;
            --text-secondary: #9BA3AF;
            --text-muted: #6B7280;
            --text-inverse: #0B0E11;
            --text-brand: #FFD700;
            --success: #00C853;
            --error: #FF3D00;
            --warning: #FFAB00;
            --info: #2979FF;
            --border-default: #2D333B;
            --border-strong: #3F4752;
            --border-interactive: #FFD700;
            --border-subtle: #1B2028;
            --font-heading: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
            --font-body: 'Inter', 'Segoe UI', Roboto, sans-serif;
            --font-action: 'Oswald', sans-serif;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { background-color: var(--bg-main); color: var(--text-primary); font-family: var(--font-body); line-height: 1.5; -webkit-font-smoothing: antialiased; }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; height: auto; display: block; }

        header { background: var(--bg-surface); padding: 12px 16px; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid var(--border-subtle); display: flex; justify-content: space-between; align-items: center; }
        .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-primary); }
        .header-right { display: flex; gap: 8px; }
        .btn { font-family: var(--font-action); padding: 8px 16px; border-radius: 4px; border: none; cursor: pointer; font-weight: 600; text-transform: uppercase; transition: 0.3s; font-size: 14px; }
        .btn-login { background: transparent; color: var(--brand-primary); border: 1px solid var(--brand-primary); }
        .btn-register { background: var(--brand-primary); color: var(--text-inverse); }
        .btn-register:hover { background: var(--brand-primary-hover); }

        main { max-width: 1200px; margin: 0 auto; padding-bottom: 80px; }
        .banner-container { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-section { background: var(--bg-surface); margin: 16px; padding: 24px; border-radius: 12px; border: 1px solid var(--brand-accent); text-align: center; }
        .jackpot-label { font-family: var(--font-heading); color: var(--brand-primary); font-size: 14px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; }
        .jackpot-amount { font-family: var(--font-action); font-size: 36px; color: var(--brand-primary); font-weight: 900; text-shadow: 0 0 15px rgba(255, 215, 0, 0.4); }

        .intro-card { margin: 16px; padding: 20px; background: var(--bg-elevated); border-radius: 12px; border-left: 4px solid var(--brand-primary); }
        .intro-card h1 { font-family: var(--font-heading); font-size: 20px; margin-bottom: 12px; color: var(--brand-primary); }
        .intro-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

        .section-title { font-family: var(--font-heading); font-size: 18px; margin: 24px 16px 16px; display: flex; align-items: center; gap: 8px; }
        .section-title::before { content: ''; width: 4px; height: 18px; background: var(--brand-primary); border-radius: 2px; }

        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 16px; }
        .game-card { background: var(--bg-surface); border-radius: 12px; overflow: hidden; border: 1px solid var(--border-subtle); transition: transform 0.2s; }
        .game-card:active { transform: scale(0.98); }
        .game-image-wrapper { width: 100%; aspect-ratio: 1/1; position: relative; background: #222; }
        .game-image-wrapper img { width: 100%; height: 100%; object-fit: cover; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 14px; font-weight: 600; color: var(--text-primary); margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-provider { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }

        .payment-section { background: var(--bg-surface); margin: 24px 16px; padding: 20px; border-radius: 12px; text-align: center; }
        .payment-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; opacity: 0.8; }
        .payment-icons i { font-size: 28px; color: var(--text-secondary); }

        .guidelines-grid { display: grid; grid-template-columns: 1fr; gap: 16px; padding: 0 16px; }
        .guideline-item { background: var(--bg-elevated); padding: 16px; border-radius: 12px; }
        .guideline-item h3 { color: var(--brand-primary); font-family: var(--font-heading); font-size: 16px; margin-bottom: 8px; }
        .guideline-item p { font-size: 13px; color: var(--text-secondary); }

        .marquee-container { background: var(--bg-surface); margin: 24px 0; padding: 12px 0; overflow: hidden; position: relative; border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }
        .marquee-content { display: flex; white-space: nowrap; animation: marquee 40s linear infinite; }
        .winner-tag { display: inline-flex; align-items: center; gap: 10px; padding: 0 24px; border-right: 1px solid var(--border-subtle); }
        .winner-tag span { font-size: 13px; color: var(--text-secondary); }
        .winner-tag strong { color: var(--brand-primary); }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        .providers-wall { padding: 16px; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
        .provider-chip { padding: 6px 14px; background: var(--bg-elevated); border: 1px solid var(--border-default); border-radius: 20px; font-size: 12px; color: var(--text-secondary); }

        .reviews-grid { display: grid; grid-template-columns: 1fr; gap: 16px; padding: 0 16px; }
        .review-card { background: var(--bg-surface); padding: 16px; border-radius: 12px; border: 1px solid var(--border-subtle); }
        .review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
        .review-avatar { width: 40px; height: 40px; background: var(--bg-elevated); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--brand-primary); }
        .review-meta h4 { font-size: 14px; }
        .review-stars { color: var(--brand-primary); font-size: 10px; }
        .review-date { font-size: 11px; color: var(--text-muted); }
        .review-content { font-size: 13px; color: var(--text-secondary); font-style: italic; }

        .faq-section { padding: 0 16px; }
        .faq-item { margin-bottom: 12px; background: var(--bg-surface); border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 16px; font-weight: 600; font-size: 14px; color: var(--brand-primary); border-bottom: 1px solid var(--border-subtle); cursor: pointer; }
        .faq-answer { padding: 16px; font-size: 13px; color: var(--text-secondary); }

        .security-section { margin: 24px 16px; padding: 20px; background: var(--bg-elevated); border-radius: 12px; text-align: center; }
        .security-logos { display: flex; justify-content: center; gap: 24px; margin-bottom: 16px; font-size: 24px; color: var(--brand-accent); }
        .security-text { font-size: 12px; color: var(--text-muted); }

        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: var(--bg-surface); display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid var(--border-default); z-index: 1001; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--text-secondary); font-size: 10px; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: var(--brand-primary); }

        footer { background: var(--bg-main); padding: 32px 16px 100px; border-top: 1px solid var(--border-subtle); }
        .footer-contact { margin-bottom: 24px; text-align: center; }
        .contact-links { display: flex; justify-content: center; gap: 16px; margin-top: 12px; }
        .contact-links a { color: var(--brand-primary); font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 24px; }
        .footer-links a { font-size: 12px; color: var(--text-muted); text-align: center; }
        .footer-copyright { text-align: center; font-size: 11px; color: var(--text-muted); border-top: 1px solid var(--border-subtle); padding-top: 16px; }

        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .guidelines-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
        }