:root {
            --bg-base: #0B0E14;
            --bg-surface: #161B22;
            --bg-elevated: #1F2937;
            --bg-modal: #0F172A;
            --brand-primary: #FFD700;
            --brand-variant: #E2B007;
            --brand-secondary: #C0C0C0;
            --brand-accent: #FF3E3E;
            --gold-grad: linear-gradient(180deg, #FFD700 0%, #B8860B 100%);
            --text-primary: #FFFFFF;
            --text-secondary: #94A3B8;
            --text-muted: #64748B;
            --text-on-brand: #0B0E14;
            --semantic-success: #00C853;
            --semantic-error: #FF5252;
            --border-default: #2D3748;
            --border-subtle: #1E293B;
            --border-active: #FFD700;
            --font-headings: 'Montserrat', system-ui, -apple-system, sans-serif;
            --font-body: 'Inter', system-ui, -apple-system, sans-serif;
            --font-numbers: 'Roboto Mono', monospace;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            background-color: var(--bg-base);
            color: var(--text-primary);
            font-family: var(--font-body);
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            padding-bottom: 70px;
        }
        h1, h2, h3 { font-family: var(--font-headings); font-weight: 700; color: var(--text-primary); }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; display: block; }
        header {
            background-color: var(--bg-surface);
            padding: 12px 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-subtle);
        }
        .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; text-transform: uppercase; letter-spacing: 0.5px; }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
            transition: opacity 0.2s;
        }
        .btn-login { background: transparent; color: var(--brand-primary); border: 1px solid var(--brand-primary); }
        .btn-register { background: var(--gold-grad); color: var(--text-on-brand); }
        .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-elevated);
            margin: 16px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--border-default);
            position: relative;
            overflow: hidden;
        }
        .jackpot-label { font-size: 14px; color: var(--brand-primary); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; font-weight: 700; }
        .jackpot-amount { font-family: var(--font-numbers); font-size: 32px; font-weight: 900; color: var(--brand-primary); text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
        .intro-card { margin: 16px; padding: 24px; background: var(--bg-surface); border-radius: 16px; border-left: 4px solid var(--brand-primary); }
        .intro-card h1 { font-size: 24px; margin-bottom: 12px; line-height: 1.2; }
        .intro-card p { color: var(--text-secondary); font-size: 15px; }
        .section-title { margin: 24px 16px 16px; font-size: 20px; display: flex; align-items: center; gap: 8px; border-left: 3px solid var(--brand-accent); padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 16px; }
        .game-card { background: var(--bg-surface); border-radius: 12px; overflow: hidden; border: 1px solid var(--border-subtle); display: block; }
        .game-img-wrapper { aspect-ratio: 1/1; width: 100%; position: relative; }
        .game-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
        .game-info { padding: 10px; text-align: center; }
        .game-info h3 { font-size: 14px; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-provider { font-size: 11px; color: var(--text-muted); text-transform: uppercase; }
        .payment-methods { background: var(--bg-surface); margin: 24px 16px; padding: 20px; border-radius: 12px; display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
        .payment-icon { width: 60px; height: 35px; background: #fff; border-radius: 4px; display: flex; align-items: center; justify-content: center; padding: 5px; opacity: 0.9; }
        .guidelines { padding: 0 16px; }
        .guideline-item { margin-bottom: 20px; padding: 16px; background: var(--bg-elevated); border-radius: 10px; }
        .guideline-item h3 { font-size: 16px; margin-bottom: 8px; color: var(--brand-primary); }
        .guideline-item p { font-size: 14px; color: var(--text-secondary); }
        .marquee-container { background: var(--bg-surface); padding: 12px 0; margin: 20px 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: marquee 30s linear infinite; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .winner-pill { display: inline-flex; align-items: center; background: var(--bg-elevated); padding: 6px 15px; border-radius: 20px; margin-right: 15px; border: 1px solid var(--border-default); gap: 8px; }
        .winner-name { color: var(--brand-primary); font-weight: 600; font-size: 13px; }
        .winner-amount { color: var(--semantic-success); font-weight: 700; font-family: var(--font-numbers); font-size: 13px; }
        .providers-wall { padding: 16px; background: var(--bg-surface); margin: 20px 16px; border-radius: 12px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; text-align: center; }
        .provider-name { font-size: 12px; color: var(--text-secondary); font-weight: 600; padding: 8px; background: var(--bg-base); border-radius: 6px; }
        .reviews-grid { padding: 0 16px; display: flex; flex-direction: column; gap: 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: 10px; margin-bottom: 10px; }
        .user-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--bg-elevated); display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--brand-primary); }
        .review-user-info h4 { font-size: 14px; margin-bottom: 2px; }
        .review-stars { color: var(--brand-primary); font-size: 12px; }
        .review-content { font-size: 14px; color: var(--text-secondary); line-height: 1.4; }
        .faq-section { padding: 0 16px; margin-top: 24px; }
        .faq-item { margin-bottom: 16px; background: var(--bg-surface); border-radius: 8px; border: 1px solid var(--border-subtle); }
        .faq-question { padding: 16px; font-weight: 600; font-size: 15px; cursor: pointer; color: var(--brand-primary); border-bottom: 1px solid var(--border-subtle); }
        .faq-answer { padding: 16px; font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
        .security-section { margin: 24px 16px; padding: 20px; background: var(--bg-elevated); border-radius: 12px; text-align: center; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-top: 15px; font-size: 24px; color: var(--text-muted); }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: var(--bg-modal); border-top: 1px solid var(--border-default); display: flex; justify-content: space-around; padding: 10px 0; z-index: 2000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--text-secondary); font-size: 12px; }
        .nav-item i { font-size: 20px; }
        .nav-item:nth-child(3) { color: var(--brand-primary); margin-top: -15px; }
        .nav-item:nth-child(3) i { background: var(--gold-grad); color: var(--text-on-brand); width: 45px; height: 45px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 10px rgba(0,0,0,0.3); }
        footer { background: var(--bg-base); border-top: 1px solid var(--border-subtle); padding: 30px 16px; }
        .footer-social { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 30px; }
        .footer-social a { font-size: 14px; color: var(--text-secondary); border: 1px solid var(--border-subtle); padding: 8px 16px; border-radius: 20px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; text-align: center; }
        .footer-links a { color: var(--text-muted); font-size: 13px; display: block; padding: 5px 0; }
        .footer-copy { text-align: center; color: var(--text-muted); font-size: 12px; border-top: 1px solid var(--border-subtle); padding-top: 20px; }