:root {
            --brand-primary: #D4AF37;
            --brand-secondary: #8B0000;
            --brand-accent: #C5A059;
            --gold-gradient: linear-gradient(135deg, #FFD700 0%, #B8860B 100%);
            --bg-base: #0A0B0D;
            --bg-surface: #161B22;
            --bg-elevated: #21262D;
            --bg-overlay: rgba(0, 0, 0, 0.85);
            --text-primary: #FFFFFF;
            --text-secondary: #B1B8C0;
            --text-muted: #8B949E;
            --text-brand: #D4AF37;
            --border-default: #30363D;
            --border-subtle: #21262D;
            --border-focus: #D4AF37;
            --success: #238636;
            --error: #DA3633;
            --radius-lg: 16px;
            --radius-md: 12px;
            --font-headings: 'Montserrat', sans-serif;
            --font-body: 'Inter', sans-serif;
            --font-numeric: '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: 80px;
        }
        header {
            height: 64px;
            background: var(--bg-surface);
            border-bottom: 1px solid var(--border-default);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 16px;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-left { display: flex; align-items: center; gap: 10px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--text-primary); text-transform: uppercase; letter-spacing: 1px; }
        .header-right { display: flex; gap: 8px; }
        .btn {
            padding: 8px 16px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
            transition: all 0.3s ease;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        .btn-register { background: var(--gold-gradient); color: #000; }
        .btn:hover { opacity: 0.9; transform: translateY(-1px); }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; display: block; overflow: hidden; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .container { padding: 16px; max-width: 1200px; margin: 0 auto; }
        .jackpot-box {
            background: linear-gradient(180deg, var(--brand-secondary) 0%, #4a0000 100%);
            border: 2px solid var(--brand-primary);
            border-radius: var(--radius-lg);
            padding: 20px;
            text-align: center;
            margin-bottom: 24px;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
        }
        .jackpot-label { font-family: var(--font-headings); color: var(--brand-primary); font-size: 14px; font-weight: 700; text-transform: uppercase; margin-bottom: 8px; }
        .jackpot-amount { font-family: var(--font-numeric); font-size: 32px; font-weight: 900; color: #fff; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
        .intro-card { background: var(--bg-surface); border-radius: var(--radius-lg); padding: 24px; border: 1px solid var(--border-default); margin-bottom: 24px; }
        h1 { font-family: var(--font-headings); font-size: 24px; margin-bottom: 12px; color: var(--brand-primary); }
        h2 { font-family: var(--font-headings); font-size: 20px; margin: 24px 0 16px; color: var(--text-primary); display: flex; align-items: center; gap: 8px; }
        h2::before { content: ''; width: 4px; height: 20px; background: var(--brand-primary); border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
        .game-card { background: var(--bg-elevated); border-radius: var(--radius-md); overflow: hidden; text-decoration: none; border: 1px solid var(--border-subtle); transition: transform 0.2s; }
        .game-card:active { transform: scale(0.97); }
        .game-img-wrap { width: 100%; aspect-ratio: 1/1; overflow: hidden; position: relative; }
        .game-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 14px; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 4px; }
        .game-provider { font-size: 11px; color: var(--text-muted); text-transform: uppercase; }
        .trust-section { background: var(--bg-surface); border-radius: var(--radius-lg); padding: 20px; margin-bottom: 24px; }
        .trust-flex { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; opacity: 0.8; }
        .trust-flex i { font-size: 24px; color: var(--text-secondary); }
        .guideline-card { background: var(--bg-elevated); border-radius: var(--radius-md); padding: 16px; margin-bottom: 12px; border-left: 3px solid var(--brand-primary); }
        .guideline-card p { font-size: 14px; color: var(--text-secondary); }
        .winning-marquee { background: var(--bg-surface); padding: 12px 0; overflow: hidden; border-top: 1px solid var(--border-default); border-bottom: 1px solid var(--border-default); margin: 24px 0; }
        .marquee-content { display: flex; animation: scroll 30s linear infinite; gap: 20px; width: max-content; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .win-item { background: var(--bg-elevated); padding: 8px 16px; border-radius: 20px; display: flex; align-items: center; gap: 10px; border: 1px solid var(--border-default); white-space: nowrap; }
        .win-item span:first-child { color: var(--brand-primary); font-weight: 600; }
        .providers-wall { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 24px; }
        .provider-tag { background: var(--bg-surface); border: 1px solid var(--border-default); padding: 6px 12px; border-radius: 6px; font-size: 12px; color: var(--text-secondary); }
        .reviews-grid { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
        .review-card { background: var(--bg-surface); padding: 16px; border-radius: var(--radius-md); border: 1px solid var(--border-default); }
        .review-header { display: flex; align-items: center; gap: 10px; 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-user h4 { font-size: 14px; }
        .stars { color: #FFD700; font-size: 12px; }
        .faq-item { background: var(--bg-surface); margin-bottom: 12px; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border-default); }
        .faq-q { padding: 16px; font-weight: 600; color: var(--brand-primary); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
        .faq-a { padding: 0 16px 16px; font-size: 14px; color: var(--text-secondary); }
        .security-section { text-align: center; padding: 24px; background: var(--bg-surface); border-radius: var(--radius-lg); margin-bottom: 24px; }
        .security-grid { 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-overlay); backdrop-filter: blur(10px); height: 70px; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid var(--border-default); z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; text-decoration: none; color: var(--text-secondary); font-size: 12px; transition: color 0.3s; }
        .nav-item i { font-size: 20px; margin-bottom: 4px; }
        .nav-item:hover { color: var(--brand-primary); }
        footer { background: var(--bg-surface); padding: 40px 16px 100px; border-top: 1px solid var(--border-default); }
        .footer-contact { display: flex; flex-direction: column; gap: 10px; margin-bottom: 30px; }
        .footer-contact a { color: var(--text-secondary); text-decoration: none; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 30px; }
        .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 13px; display: block; margin-bottom: 8px; }
        .footer-copyright { border-top: 1px solid var(--border-default); padding-top: 20px; text-align: center; color: var(--text-muted); font-size: 12px; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(3, 1fr); }
            .reviews-grid { grid-template-columns: repeat(2, 1fr); display: grid; }
        }