:root {
            --primary: #D4AF37;
            --secondary: #FFD700;
            --accent: #B8860B;
            --highlight: #FFFFFF;
            --bg-main: #0B0C10;
            --bg-surface: #1F2833;
            --bg-modal: #0D1117;
            --bg-nav: #050505;
            --text-primary: #FFFFFF;
            --text-secondary: #C5C6C7;
            --text-muted: #8E8E8E;
            --border-light: #45A29E;
            --border-dark: #1F2833;
            --border-gold: #D4AF37;
            --font-title: 'Montserrat', sans-serif;
            --font-body: 'Inter', sans-serif;
            --font-mono: '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-body); line-height: 1.5; overflow-x: hidden; padding-bottom: 70px; }
        h1, h2, h3 { font-family: var(--font-title); font-weight: 700; color: var(--primary); }
        a { text-decoration: none; color: inherit; }
        header { background: var(--bg-nav); 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-dark); }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; object-fit: contain; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--highlight); }
        .header-right { display: flex; gap: 10px; }
        .btn-login, .btn-register { padding: 6px 15px; border-radius: 20px; font-weight: 600; font-size: 14px; cursor: pointer; border: none; }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-register { background: linear-gradient(135deg, var(--primary), var(--accent)); color: var(--bg-main); }
        .banner { width: 100%; display: block; aspect-ratio: 2 / 1; cursor: pointer; object-fit: cover; }
        .jackpot-container { background: var(--bg-surface); margin: 15px; padding: 20px; border-radius: 15px; text-align: center; border: 1px solid var(--accent); box-shadow: 0 0 15px rgba(212, 175, 55, 0.2); }
        .jackpot-label { color: var(--text-secondary); font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }
        .jackpot-amount { font-family: var(--font-mono); font-size: 28px; color: var(--secondary); font-weight: 700; margin-top: 5px; }
        .intro-card { padding: 20px; margin: 15px; background: var(--bg-surface); border-radius: 15px; border-left: 4px solid var(--primary); }
        .intro-card h1 { font-size: 22px; margin-bottom: 10px; line-height: 1.2; }
        .intro-card p { color: var(--text-secondary); font-size: 14px; }
        .section-title { padding: 0 15px; margin: 20px 0 10px; font-size: 20px; display: flex; align-items: center; gap: 10px; }
        .section-title::before { content: ''; width: 4px; height: 20px; background: var(--primary); border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: var(--bg-surface); border-radius: 12px; overflow: hidden; border: 1px solid var(--border-dark); transition: transform 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
        .game-card h3 { font-size: 14px; padding: 10px; color: var(--text-primary); text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-section { background: var(--bg-surface); margin: 20px 15px; padding: 20px; border-radius: 15px; 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; }
        .payment-item span { display: block; font-size: 10px; color: var(--text-secondary); }
        .guide-section { padding: 0 15px; margin-bottom: 20px; }
        .guide-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; margin-bottom: 12px; border: 1px solid var(--border-dark); }
        .guide-card h2 { font-size: 18px; margin-bottom: 8px; }
        .guide-card p { font-size: 14px; color: var(--text-secondary); }
        .lottery-section { background: var(--bg-surface); margin: 20px 15px; padding: 15px; border-radius: 15px; }
        .lottery-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--border-dark); }
        .lottery-item:last-child { border-bottom: none; }
        .lottery-info { display: flex; flex-direction: column; }
        .lottery-user { font-weight: 600; color: var(--secondary); font-size: 14px; }
        .lottery-game { font-size: 12px; color: var(--text-muted); }
        .lottery-win { font-family: var(--font-mono); color: var(--primary); font-weight: 700; }
        .provider-section { display: flex; gap: 10px; padding: 0 15px; overflow-x: auto; margin-bottom: 20px; }
        .provider-block { background: linear-gradient(45deg, var(--bg-surface), var(--bg-modal)); padding: 15px 25px; border-radius: 10px; border: 1px solid var(--border-gold); white-space: nowrap; font-weight: 600; color: var(--primary); }
        .review-section { padding: 0 15px; }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: 15px; margin-bottom: 15px; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-avatar { width: 40px; height: 40px; background: var(--bg-nav); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); border: 1px solid var(--accent); }
        .review-user-info h3 { font-size: 14px; color: var(--highlight); }
        .stars { color: var(--secondary); 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: 5px; text-align: right; }
        .faq-section { padding: 0 15px; margin-bottom: 30px; }
        .faq-item { background: var(--bg-surface); border-radius: 10px; margin-bottom: 10px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; font-size: 15px; cursor: pointer; display: flex; justify-content: space-between; border-bottom: 1px solid var(--border-dark); }
        .faq-answer { padding: 15px; font-size: 14px; color: var(--text-secondary); background: rgba(0,0,0,0.2); }
        .security-section { background: var(--bg-modal); padding: 25px 15px; text-align: center; border-top: 2px solid var(--accent); }
        .security-grid { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; flex-wrap: wrap; }
        .security-item { display: flex; flex-direction: column; align-items: center; font-size: 12px; color: var(--text-muted); }
        .security-item i { font-size: 24px; color: var(--primary); margin-bottom: 5px; }
        .navigator { position: fixed; bottom: 0; width: 100%; height: 60px; background: var(--bg-nav); display: flex; justify-content: space-around; align-items: center; border-top: 1px solid var(--border-dark); z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; color: var(--text-muted); font-size: 10px; }
        .nav-item i { font-size: 20px; margin-bottom: 2px; }
        footer { background: var(--bg-nav); padding: 30px 15px 80px; color: var(--text-muted); font-size: 13px; border-top: 1px solid var(--border-dark); }
        .footer-contact { margin-bottom: 25px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
        .footer-contact a { background: var(--bg-surface); padding: 10px; border-radius: 8px; text-align: center; border: 1px solid var(--border-dark); color: var(--text-primary); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; }
        .footer-links a { color: var(--text-muted); }
        .footer-copyright { text-align: center; border-top: 1px solid var(--border-dark); padding-top: 20px; line-height: 1.6; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .guide-section { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
        }