:root {
            --primary: #D4AF37;
            --primary-hover: #F1C40F;
            --primary-active: #996515;
            --accent: #FF4D4D;
            --bg-main: #0B0C0E;
            --bg-surface: #16191E;
            --bg-overlay: #1E2229;
            --bg-contrast: #000000;
            --text-primary: #FFFFFF;
            --text-secondary: #94A3B8;
            --text-muted: #64748B;
            --text-gold: #D4AF37;
            --border-default: #2D3748;
            --border-subtle: #1E293B;
            --border-active: #D4AF37;
            --success: #10B981;
            --error: #EF4444;
            --jackpot: #FFD700;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Montserrat', sans-serif;
            line-height: 1.5;
            overflow-x: hidden;
            padding-bottom: 70px;
        }
        h1, h2, h3 { font-family: 'Archivo Black', sans-serif; text-transform: uppercase; }
        a { text-decoration: none; color: inherit; }
        header {
            background-color: var(--bg-surface);
            padding: 12px 16px;
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid var(--border-subtle);
        }
        .header-logo { display: flex; align-items: center; gap: 8px; }
        .header-logo img { width: 25px; height: 25px; border-radius: 4px; }
        .header-logo strong { font-size: 16px; font-weight: normal; color: var(--text-gold); }
        .header-btns { display: flex; gap: 8px; }
        .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(--text-primary); border: 1px solid var(--border-default); }
        .btn-register { background: var(--primary); color: var(--bg-main); }
        .btn-register:hover { background: var(--primary-hover); }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; display: block; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .container { padding: 16px; }
        .jackpot-section {
            background: linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-overlay) 100%);
            border: 2px solid var(--primary);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            margin-bottom: 24px;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
        }
        .jackpot-label { color: var(--text-gold); font-size: 14px; margin-bottom: 8px; font-weight: 700; letter-spacing: 2px; }
        .jackpot-amount { font-family: 'Archivo Black', sans-serif; font-size: 32px; color: var(--jackpot); text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
        .intro-card {
            background: var(--bg-surface);
            border-radius: 12px;
            padding: 24px;
            margin-bottom: 24px;
            border-left: 4px solid var(--primary);
        }
        .intro-card h1 { font-size: 20px; margin-bottom: 12px; line-height: 1.2; color: var(--text-gold); }
        .intro-card p { font-size: 14px; color: var(--text-secondary); }
        .section-title { font-size: 18px; margin: 24px 0 16px; display: flex; align-items: center; gap: 8px; }
        .section-title::before { content: ""; width: 4px; height: 18px; background: var(--primary); border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
        .game-card {
            background: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-subtle);
            transition: 0.3s;
        }
        .game-card:hover { border-color: var(--primary); transform: translateY(-2px); }
        .game-image { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 12px; font-weight: 600; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-info span { font-size: 10px; color: var(--text-muted); }
        .payment-section { background: var(--bg-surface); padding: 20px; border-radius: 12px; margin: 24px 0; }
        .payment-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; opacity: 0.7; }
        .payment-icons i { font-size: 24px; }
        .guidelines { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 24px; }
        .guide-item { background: var(--bg-surface); padding: 16px; border-radius: 12px; }
        .guide-item h2 { font-size: 16px; color: var(--text-gold); margin-bottom: 8px; }
        .guide-item p { font-size: 13px; color: var(--text-secondary); }
        .winners-marquee { background: var(--bg-contrast); padding: 10px 0; overflow: hidden; white-space: nowrap; position: relative; border-y: 1px solid var(--border-subtle); margin: 24px 0; }
        .marquee-content { display: inline-block; animation: scroll 30s linear infinite; }
        .win-item { display: inline-flex; align-items: center; background: var(--bg-overlay); padding: 6px 12px; border-radius: 20px; margin-right: 15px; border: 1px solid var(--border-subtle); font-size: 12px; }
        .win-user { color: var(--text-gold); margin-right: 6px; }
        .win-amount { color: var(--success); font-weight: 700; }
        @keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
        .providers-wall { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 24px; }
        .provider-tag { background: var(--bg-overlay); padding: 6px 12px; border-radius: 4px; font-size: 12px; border: 1px solid var(--border-default); color: var(--text-secondary); }
        .review-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 24px; }
        .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; }
        .review-header i { font-size: 32px; color: var(--text-muted); }
        .review-user { font-size: 14px; font-weight: 600; }
        .review-stars { color: #FFD700; font-size: 12px; }
        .review-date { font-size: 11px; color: var(--text-muted); float: right; }
        .faq-section { margin-bottom: 24px; }
        .faq-item { background: var(--bg-surface); margin-bottom: 8px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 16px; cursor: pointer; font-weight: 600; font-size: 14px; display: flex; justify-content: space-between; align-items: center; color: var(--text-gold); }
        .faq-answer { padding: 0 16px 16px; font-size: 13px; color: var(--text-secondary); display: block; }
        .security-section { background: var(--bg-overlay); padding: 24px; border-radius: 12px; text-align: center; border: 1px dashed var(--border-default); }
        .security-badge { font-size: 24px; color: var(--success); margin-bottom: 12px; }
        .responsible-links { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; font-size: 12px; color: var(--primary); }
        .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-subtle);
            z-index: 1000;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--text-secondary); font-size: 11px; }
        .nav-item i { font-size: 18px; }
        .nav-item:nth-child(3) { color: var(--primary); transform: translateY(-5px); }
        .nav-item:nth-child(3) i { background: var(--bg-main); border: 2px solid var(--primary); width: 45px; height: 45px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; }
        footer { background: var(--bg-contrast); padding: 32px 16px 100px; color: var(--text-muted); }
        .footer-contact { margin-bottom: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
        .footer-contact a { background: var(--bg-surface); padding: 10px; border-radius: 6px; font-size: 12px; text-align: center; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 24px; border-top: 1px solid var(--border-subtle); padding-top: 24px; }
        .footer-links a { font-size: 12px; color: var(--text-secondary); }
        .copyright { text-align: center; font-size: 11px; line-height: 1.6; }