:root {
            --primary: #FFD700;
            --secondary: #D4AF37;
            --accent: #FF4D4D;
            --gradient: linear-gradient(180deg, #FFD700 0%, #B8860B 100%);
            --bg-main: #0A0A0A;
            --bg-surface: #161616;
            --bg-overlay: rgba(0, 0, 0, 0.85);
            --bg-card: #1E1E1E;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --text-muted: #666666;
            --text-inverse: #000000;
            --text-gold: #FFD700;
            --success: #28A745;
            --warning: #FFC107;
            --error: #DC3545;
            --info: #17A2B8;
            --border-default: #333333;
            --border-active: #FFD700;
            --border-subtle: #222222;
            --font-primary: 'Montserrat', sans-serif;
            --font-secondary: 'Inter', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: var(--font-secondary);
            font-size: 16px;
            line-height: 1.5;
            overflow-x: hidden;
            padding-bottom: 70px;
        }
        h1, h2, h3 { font-family: var(--font-primary); font-weight: 700; color: var(--text-gold); }
        h1 { font-size: 24px; text-align: center; margin: 20px 0; line-height: 1.25; }
        h2 { font-size: 20px; margin: 25px 0 15px; border-left: 4px solid var(--primary); padding-left: 10px; }
        h3 { font-size: 16px; margin: 10px 0; color: var(--text-primary); }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--bg-surface);
            border-bottom: 1px solid var(--border-default);
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        header .logo-box { display: flex; align-items: center; gap: 8px; }
        header .logo-box img { width: 25px; height: 25px; object-fit: contain; }
        header .logo-box strong { font-size: 16px; font-weight: 400; color: var(--text-primary); }
        header .auth-buttons { display: flex; gap: 10px; }
        header button {
            padding: 6px 15px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
        }
        header .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        header .btn-register { background: var(--gradient); color: var(--text-inverse); }
        main { padding: 0 15px; max-width: 1200px; margin: 0 auto; }
        .banner { width: 100%; border-radius: 12px; overflow: hidden; margin: 15px 0; aspect-ratio: 2/1; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; display: block; }
        .jackpot-container {
            background: var(--bg-card);
            border: 1px solid var(--secondary);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin: 20px 0;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }
        .jackpot-label { font-size: 14px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-value { font-size: 36px; font-weight: 800; color: var(--primary); margin: 10px 0; font-family: var(--font-primary); text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
        .intro-card { background: var(--bg-surface); padding: 20px; border-radius: 12px; margin: 20px 0; text-align: center; border: 1px solid var(--border-subtle); }
        .intro-card p { color: var(--text-secondary); font-size: 14px; line-height: 1.6; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin: 20px 0; }
        .game-card { background: var(--bg-card); border-radius: 12px; overflow: hidden; border: 1px solid var(--border-subtle); transition: transform 0.2s; }
        .game-card:active { transform: scale(0.95); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; text-align: center; }
        .payment-methods { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 25px 0; }
        .payment-item { background: var(--bg-surface); padding: 15px 5px; border-radius: 8px; text-align: center; border: 1px solid var(--border-subtle); }
        .payment-item i { font-size: 20px; color: var(--primary); margin-bottom: 8px; display: block; }
        .payment-item span { font-size: 10px; color: var(--text-muted); display: block; }
        .guide-section { margin: 25px 0; }
        .guide-item { margin-bottom: 20px; background: var(--bg-surface); padding: 15px; border-radius: 10px; }
        .guide-item p { font-size: 14px; color: var(--text-secondary); margin-top: 8px; }
        .marquee-container { background: var(--bg-card); padding: 15px 0; margin: 20px -15px; 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; }
        .winner-item { display: inline-flex; align-items: center; gap: 10px; margin-right: 30px; background: rgba(255, 215, 0, 0.05); padding: 5px 15px; border-radius: 20px; border: 1px solid var(--border-subtle); }
        .winner-name { color: var(--primary); font-weight: 600; font-size: 14px; }
        .winner-amount { color: var(--success); font-weight: 700; font-size: 14px; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .providers-wall { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 20px 0; }
        .provider-btn { padding: 12px; background: var(--bg-surface); border: 1px solid var(--border-subtle); border-radius: 8px; text-align: center; font-weight: 600; color: var(--text-secondary); }
        .review-grid { margin: 25px 0; }
        .review-card { background: var(--bg-card); padding: 15px; border-radius: 12px; margin-bottom: 15px; border-left: 3px solid var(--primary); }
        .review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
        .user-meta { display: flex; align-items: center; gap: 10px; }
        .user-avatar { width: 35px; height: 35px; background: var(--border-default); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--text-secondary); }
        .stars { color: var(--warning); font-size: 12px; }
        .review-content { font-size: 13px; color: var(--text-secondary); font-style: italic; }
        .faq-section { margin: 25px 0; }
        .faq-item { margin-bottom: 15px; border-bottom: 1px solid var(--border-subtle); padding-bottom: 15px; }
        .faq-item h3 { font-size: 15px; color: var(--primary); margin-bottom: 5px; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }
        .security-box { background: var(--bg-surface); padding: 20px; border-radius: 12px; text-align: center; margin: 25px 0; border: 1px dashed var(--border-default); }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin-top: 15px; }
        .security-badges i { font-size: 24px; 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: 1000;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; color: var(--text-secondary); font-size: 11px; gap: 4px; width: 20%; }
        .nav-item i { font-size: 18px; }
        footer { background: var(--bg-surface); padding: 30px 15px 100px; border-top: 1px solid var(--border-default); }
        .footer-contact { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 25px; }
        .contact-link { background: var(--bg-card); padding: 10px; border-radius: 8px; font-size: 13px; color: var(--text-secondary); display: flex; align-items: center; gap: 8px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        .footer-links a { color: var(--text-muted); font-size: 13px; display: block; margin-bottom: 8px; }
        .copyright { text-align: center; font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-subtle); padding-top: 20px; }