:root {
            --primary-gold: #D4AF37;
            --primary-gold-hover: #F1C40F;
            --secondary-red: #E63946;
            --accent-emerald: #00C853;
            --bg-base: #0B0C10;
            --bg-surface: #1F2833;
            --bg-overlay: rgba(0, 0, 0, 0.85);
            --text-primary: #FFFFFF;
            --text-secondary: #C5C6C7;
            --text-muted: #8B8E94;
            --border-default: #45A29E;
            --font-main: 'Montserrat', sans-serif;
            --font-sec: 'Inter', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: var(--bg-base); color: var(--text-primary); font-family: var(--font-sec); line-height: 1.5; -webkit-tap-highlight-color: transparent; }
        h1, h2, h3 { font-family: var(--font-main); font-weight: 800; color: var(--primary-gold); }
        a { text-decoration: none; color: inherit; }
        header { background: var(--bg-overlay); position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid var(--border-default); padding: 10px 15px; display: flex; justify-content: space-between; align-items: center; }
        .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(--text-primary); font-family: var(--font-main); }
        .header-right { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 20px; font-weight: 600; font-size: 14px; cursor: pointer; border: none; transition: 0.3s; }
        .btn-login { background: transparent; border: 1px solid var(--primary-gold); color: var(--primary-gold); }
        .btn-register { background: var(--primary-gold); color: var(--bg-base); }
        .btn-register:hover { background: var(--primary-gold-hover); }
        main { max-width: 800px; margin: 0 auto; padding-bottom: 80px; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; overflow: hidden; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box { background: linear-gradient(145deg, #1f2833, #0b0c10); margin: 15px; padding: 20px; border-radius: 15px; border: 2px solid var(--primary-gold); text-align: center; box-shadow: 0 0 20px rgba(212, 175, 55, 0.2); }
        .jackpot-box h2 { font-size: 18px; color: var(--text-primary); margin-bottom: 10px; text-transform: uppercase; }
        .jackpot-amount { font-size: 36px; font-family: var(--font-main); font-weight: 800; color: var(--primary-gold); text-shadow: 0 0 10px rgba(212, 175, 55, 0.5); }
        .intro-card { margin: 15px; padding: 20px; background: var(--bg-surface); border-radius: 15px; }
        .intro-card h1 { font-size: 24px; margin-bottom: 10px; line-height: 1.2; }
        .intro-card p { font-size: 14px; color: var(--text-secondary); }
        .section-title { margin: 20px 15px 10px; font-size: 20px; display: flex; align-items: center; gap: 10px; }
        .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(--bg-surface); transition: 0.3s; display: block; }
        .game-card:hover { border-color: var(--primary-gold); transform: translateY(-3px); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 { font-size: 14px; padding: 10px; color: var(--text-primary); text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 15px; }
        .payment-item { background: var(--bg-surface); padding: 10px; border-radius: 8px; text-align: center; }
        .payment-item i { font-size: 20px; color: var(--primary-gold); display: block; margin-bottom: 5px; }
        .payment-item span { font-size: 10px; color: var(--text-muted); font-weight: 600; }
        .guide-container { padding: 0 15px; }
        .guide-item { background: var(--bg-surface); padding: 15px; border-radius: 12px; margin-bottom: 15px; border-left: 4px solid var(--primary-gold); }
        .guide-item h3 { font-size: 16px; margin-bottom: 8px; }
        .guide-item p { font-size: 14px; color: var(--text-secondary); }
        .lottery-container { margin: 15px; background: var(--bg-surface); border-radius: 15px; padding: 10px; }
        .lottery-row { display: flex; justify-content: space-between; padding: 10px; border-bottom: 1px solid #2d3743; font-size: 12px; }
        .lottery-row:last-child { border: none; }
        .lottery-user { color: var(--accent-emerald); font-weight: 600; }
        .lottery-amount { color: var(--primary-gold); font-weight: 700; }
        .provider-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 15px; }
        .provider-chip { background: linear-gradient(90deg, var(--bg-surface), #2d3743); padding: 12px; border-radius: 8px; text-align: center; font-weight: 700; font-size: 14px; color: var(--primary-gold); border: 1px solid rgba(212, 175, 55, 0.3); }
        .review-card { background: var(--bg-surface); margin: 15px; padding: 15px; border-radius: 12px; position: relative; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-avatar { font-size: 24px; color: var(--text-muted); }
        .review-stars { color: var(--primary-gold); 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; text-align: right; }
        .faq-section { padding: 0 15px; }
        .faq-item { margin-bottom: 15px; background: var(--bg-surface); border-radius: 10px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 700; color: var(--primary-gold); cursor: pointer; border-bottom: 1px solid #2d3743; }
        .faq-answer { padding: 15px; font-size: 14px; color: var(--text-secondary); }
        .security-section { margin: 15px; padding: 20px; background: rgba(0, 200, 83, 0.05); border-radius: 15px; border: 1px dashed var(--accent-emerald); text-align: center; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--accent-emerald); }
        .security-text { font-size: 12px; color: var(--text-muted); }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: var(--bg-overlay); backdrop-filter: blur(10px); 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; font-size: 11px; color: var(--text-secondary); gap: 4px; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: var(--primary-gold); }
        footer { background: var(--bg-base); padding: 30px 15px 100px; border-top: 1px solid var(--bg-surface); text-align: center; }
        .footer-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 25px; }
        .footer-social a { font-size: 14px; color: var(--primary-gold); border: 1px solid var(--primary-gold); padding: 5px 12px; border-radius: 15px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; }
        .footer-links a { font-size: 13px; color: var(--text-muted); }
        .footer-copy { font-size: 11px; color: var(--text-muted); border-top: 1px solid var(--bg-surface); padding-top: 20px; }