:root {
            --primary-gold: #D4AF37;
            --primary-gold-light: #F9D71C;
            --primary-gold-dark: #AA8A2E;
            --secondary-charcoal: #121212;
            --accent-red: #E63946;
            --main-bg: #0A0A0A;
            --card-bg: #1A1A1B;
            --modal-bg: #141414;
            --nav-bg: #000000;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --text-muted: #6B6B6B;
            --success: #2DCC70;
            --win-highlight: #FFD700;
            --border-default: #333333;
            --font-heading: 'Montserrat', 'Inter', sans-serif;
            --font-body: 'Inter', sans-serif;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: var(--main-bg); color: var(--text-primary); font-family: var(--font-body); line-height: 1.5; -webkit-font-smoothing: antialiased; padding-bottom: 70px; }
        
        header { background: var(--nav-bg); height: 60px; display: flex; align-items: center; justify-content: space-between; padding: 0 15px; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid var(--border-default); }
        .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; color: var(--primary-gold); }
        .header-right { display: flex; gap: 10px; }
        .btn-login, .btn-register { padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; text-decoration: none; transition: 0.3s; }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--primary-gold); }
        .btn-register { background: var(--primary-gold); color: var(--secondary-charcoal); }

        .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: linear-gradient(180deg, #1A1A1B 0%, #0A0A0A 100%); padding: 20px 15px; text-align: center; border-bottom: 2px solid var(--primary-gold-dark); }
        .jackpot-title { color: var(--primary-gold-light); font-family: var(--font-heading); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 5px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: var(--win-highlight); font-family: 'JetBrains Mono', monospace; text-shadow: 0 0 10px rgba(212, 175, 55, 0.5); }

        .intro-card { margin: 20px 15px; padding: 20px; background: var(--card-bg); border-radius: 15px; border: 1px solid var(--border-default); }
        .intro-card h1 { font-size: 24px; color: var(--primary-gold); font-family: var(--font-heading); margin-bottom: 12px; line-height: 1.2; }
        .intro-card p { font-size: 14px; color: var(--text-secondary); }

        .section-title { padding: 0 15px; margin: 25px 0 15px; font-family: var(--font-heading); font-size: 20px; border-left: 4px solid var(--primary-gold); line-height: 1; }

        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 15px; }
        .game-card { background: var(--card-bg); border-radius: 12px; overflow: hidden; border: 1px solid var(--border-default); text-decoration: none; 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-card h3 { padding: 8px; font-size: 14px; color: var(--text-primary); text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 500; }

        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 0 15px; }
        .payment-item { background: var(--card-bg); padding: 15px 5px; border-radius: 8px; text-align: center; border: 1px solid var(--border-default); }
        .payment-item i { font-size: 24px; color: var(--primary-gold); margin-bottom: 5px; display: block; }
        .payment-item span { font-size: 10px; color: var(--text-secondary); text-transform: uppercase; }

        .guides-section { padding: 0 15px; }
        .guide-item { background: var(--card-bg); padding: 15px; border-radius: 12px; margin-bottom: 12px; border-left: 3px solid var(--accent-red); }
        .guide-item h2 { font-size: 18px; color: var(--primary-gold-light); margin-bottom: 8px; }
        .guide-item p { font-size: 14px; color: var(--text-secondary); }

        .lottery-section { margin: 20px 15px; background: #141414; border-radius: 12px; padding: 10px; border: 1px solid var(--border-default); }
        .lottery-item { display: flex; justify-content: space-between; padding: 10px; border-bottom: 1px solid var(--divider); font-size: 13px; }
        .lottery-item:last-child { border-bottom: none; }
        .win-user { color: var(--primary-gold); font-weight: 600; }
        .win-amount { color: var(--success); font-weight: 700; }
        .win-time { color: var(--text-muted); font-size: 11px; }

        .providers-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 0 15px; }
        .provider-box { padding: 15px; text-align: center; border-radius: 8px; font-weight: 700; font-size: 14px; text-transform: uppercase; }
        .provider-box:nth-child(odd) { background: #1e1e1e; color: var(--primary-gold); border: 1px solid var(--primary-gold-dark); }
        .provider-box:nth-child(even) { background: #2a2a2a; color: var(--text-primary); border: 1px solid var(--border-default); }

        .reviews-container { padding: 0 15px; }
        .review-card { background: var(--card-bg); padding: 15px; border-radius: 12px; margin-bottom: 15px; 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: #333; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary-gold); }
        .review-info h3 { font-size: 14px; }
        .stars { color: #FFD700; font-size: 12px; }
        .review-content { font-size: 13px; color: var(--text-secondary); font-style: italic; }
        .review-date { font-size: 11px; color: var(--text-muted); margin-top: 8px; }

        .faq-section { padding: 0 15px; }
        .faq-item { background: var(--card-bg); border-radius: 8px; margin-bottom: 10px; overflow: hidden; border: 1px solid var(--border-default); }
        .faq-question { padding: 15px; font-weight: 600; font-size: 15px; color: var(--primary-gold-light); cursor: pointer; display: flex; justify-content: space-between; }
        .faq-answer { padding: 0 15px 15px; font-size: 14px; color: var(--text-secondary); border-top: 1px solid var(--divider); padding-top: 10px; }

        .security-section { margin: 25px 15px; padding: 20px; background: #000; border: 1px dashed var(--primary-gold); border-radius: 12px; text-align: center; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--primary-gold); }
        .security-text { font-size: 12px; color: var(--text-muted); }
        .responsible-links { margin-top: 10px; display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
        .responsible-links a { color: var(--primary-gold-light); font-size: 12px; text-decoration: none; }

        .navigator { position: fixed; bottom: 0; left: 0; right: 0; height: 60px; background: var(--nav-bg); display: flex; justify-content: space-around; align-items: center; border-top: 1px solid var(--border-default); z-index: 1001; }
        .nav-item { text-align: center; text-decoration: none; color: var(--text-secondary); flex: 1; }
        .nav-item i { font-size: 20px; display: block; margin-bottom: 2px; }
        .nav-item span { font-size: 10px; font-weight: 500; }

        footer { background: #000; padding: 30px 15px 80px; border-top: 1px solid var(--border-default); }
        .footer-row { margin-bottom: 25px; }
        .footer-row h4 { color: var(--primary-gold); font-size: 16px; margin-bottom: 15px; text-align: center; }
        .contact-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
        .contact-links a { background: #111; padding: 10px; border-radius: 5px; text-align: center; color: var(--text-primary); text-decoration: none; font-size: 13px; border: 1px solid #222; }
        .footer-links-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
        .footer-links-grid a { color: var(--text-secondary); text-decoration: none; font-size: 12px; text-align: center; padding: 5px 0; }
        .copyright { text-align: center; font-size: 11px; color: var(--text-muted); margin-top: 20px; border-top: 1px solid #222; padding-top: 20px; }