:root {
            --primary: #D4AF37;
            --primary-light: #F9E076;
            --primary-dark: #AA8E2E;
            --secondary: #00875A;
            --accent: #C0C0C0;
            --bg-main: #0B0E11;
            --bg-surface: #15191C;
            --bg-overlay: #1F2428;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B8C1;
            --text-muted: #636E72;
            --win-color: #D4AF37;
            --font-h: 'Montserrat', system-ui, -apple-system, sans-serif;
            --font-b: 'Inter', system-ui, -apple-system, sans-serif;
            --font-n: 'Roboto Mono', monospace;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: var(--font-b);
            line-height: 1.5;
            overflow-x: hidden;
        }
        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(--bg-overlay);
        }
        header .brand { display: flex; align-items: center; gap: 8px; text-decoration: none; color: inherit; }
        header img { width: 25px; height: 25px; border-radius: 4px; }
        header strong { font-size: 16px; font-weight: 400; color: var(--text-primary); font-family: var(--font-h); }
        header .actions { display: flex; gap: 10px; }
        header button {
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        header .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        header .btn-reg { background: var(--primary); color: var(--bg-main); }
        main { max-width: 1200px; margin: 0 auto; padding: 10px; padding-bottom: 80px; }
        .hero-banner { width: 100%; border-radius: 12px; overflow: hidden; margin-bottom: 20px; aspect-ratio: 2/1; cursor: pointer; }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box {
            background: linear-gradient(135deg, #15191C, #1F2428);
            border: 2px solid var(--primary);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin-bottom: 25px;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
        }
        .jackpot-label { color: var(--primary); font-family: var(--font-h); font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { 
            font-family: var(--font-n); 
            font-size: 30px; 
            color: var(--primary-light); 
            margin-top: 5px; 
            font-weight: 900;
            text-shadow: 0 0 10px rgba(249, 224, 118, 0.5);
        }
        .intro-card { background: var(--bg-surface); border-radius: 12px; padding: 20px; margin-bottom: 25px; border-left: 4px solid var(--primary); }
        .intro-card h1 { font-family: var(--font-h); font-size: 24px; color: var(--primary); margin-bottom: 12px; }
        .intro-card p { color: var(--text-secondary); font-size: 15px; }
        .section-title { font-family: var(--font-h); font-size: 20px; color: var(--text-primary); margin: 25px 0 15px; display: flex; align-items: center; gap: 10px; }
        .section-title::after { content: ''; flex: 1; height: 1px; background: var(--bg-overlay); }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
        .game-card { background: var(--bg-surface); border-radius: 10px; overflow: hidden; text-decoration: none; border: 1px solid var(--bg-overlay); 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-card h3 { padding: 10px; font-size: 14px; color: var(--text-primary); text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 500; }
        .payments { background: var(--bg-surface); padding: 20px; border-radius: 12px; margin: 25px 0; }
        .payment-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; text-align: center; }
        .payment-item i { font-size: 24px; color: var(--primary); margin-bottom: 5px; display: block; }
        .payment-item span { font-size: 11px; color: var(--text-secondary); }
        .guide-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 25px; }
        .guide-card { background: var(--bg-surface); padding: 20px; border-radius: 12px; border-top: 3px solid var(--secondary); }
        .guide-card h2 { font-family: var(--font-h); font-size: 18px; color: var(--primary-light); margin-bottom: 10px; }
        .guide-card p { color: var(--text-secondary); font-size: 14px; }
        .winners-marquee { background: var(--bg-surface); padding: 15px; border-radius: 12px; overflow: hidden; margin: 25px 0; border: 1px solid var(--bg-overlay); }
        .marquee-content { display: flex; flex-direction: column; gap: 10px; animation: scrollUp 20s linear infinite; }
        @keyframes scrollUp { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .winner-item { display: flex; justify-content: space-between; font-size: 13px; border-bottom: 1px solid var(--bg-overlay); padding-bottom: 5px; }
        .winner-user { color: var(--text-primary); font-weight: 600; }
        .winner-amount { color: var(--win-color); font-weight: 700; font-family: var(--font-n); }
        .providers-wall { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 25px 0; }
        .provider-tag { background: var(--bg-overlay); color: var(--primary); padding: 12px; border-radius: 8px; text-align: center; font-weight: 600; font-size: 14px; border: 1px solid var(--bg-overlay); }
        .review-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin: 25px 0; }
        .review-card { background: var(--bg-overlay); padding: 15px; border-radius: 12px; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--text-muted); }
        .review-user { flex: 1; }
        .review-user div { font-weight: 600; font-size: 14px; }
        .review-stars { color: var(--primary); font-size: 12px; }
        .review-content { color: var(--text-secondary); font-size: 14px; font-style: italic; }
        .review-date { font-size: 11px; color: var(--text-muted); margin-top: 8px; text-align: right; }
        .faq-section { margin: 25px 0; }
        .faq-item { background: var(--bg-surface); border-radius: 8px; margin-bottom: 10px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; color: var(--primary-light); cursor: pointer; display: flex; justify-content: space-between; font-size: 15px; }
        .faq-answer { padding: 0 15px 15px; color: var(--text-secondary); font-size: 14px; }
        .safety-section { background: var(--bg-overlay); padding: 20px; border-radius: 12px; text-align: center; margin-top: 30px; }
        .safety-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; color: var(--primary); font-size: 24px; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--bg-overlay);
            z-index: 1000;
        }
        .nav-item { text-decoration: none; text-align: center; color: var(--text-secondary); flex: 1; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; }
        .nav-item span { font-size: 11px; font-weight: 500; }
        .nav-item:nth-child(3) i { color: var(--primary); font-size: 24px; }
        footer { background: #000; padding: 30px 20px 100px; color: var(--text-secondary); font-size: 14px; }
        footer .contact-row { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; margin-bottom: 25px; border-bottom: 1px solid #222; padding-bottom: 20px; }
        footer a { color: var(--text-secondary); text-decoration: none; }
        footer .links-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; text-align: center; }
        footer .copy { text-align: center; font-size: 12px; color: var(--text-muted); }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .guide-grid, .review-grid { grid-template-columns: 1fr 1fr; }
        }