:root {
            --primary-gold: #D4AF37;
            --primary-light: #F9E076;
            --secondary-blue: #003366;
            --accent-red: #E63946;
            --bg-base: #0A0A0B;
            --bg-surface: #161618;
            --bg-elevated: #222225;
            --bg-nav: #000000;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --text-muted: #71717A;
            --text-brand: #FFD700;
            --success: #22C55E;
            --safe-gamble: #10B981;
            --border-subtle: #27272A;
            --border-default: #3F3F46;
            --border-highlight: #D4AF37;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-base);
            color: var(--text-primary);
            font-family: 'Inter', sans-serif;
            line-height: 1.5;
            overflow-x: hidden;
            padding-bottom: 70px;
        }
        header {
            background-color: 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-subtle);
        }
        .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; font-family: 'Montserrat', sans-serif; color: var(--primary-gold); }
        .header-right { display: flex; gap: 10px; }
        .btn { border: none; padding: 8px 16px; border-radius: 6px; font-weight: 600; cursor: pointer; font-size: 14px; transition: opacity 0.2s; }
        .btn-login { background-color: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        .btn-register { background-color: var(--primary-gold); color: var(--bg-base); }
        main { max-width: 800px; margin: 0 auto; padding: 10px; }
        .banner { width: 100%; aspect-ratio: 2/1; border-radius: 12px; overflow: hidden; cursor: pointer; margin-bottom: 20px; border: 1px solid var(--border-subtle); }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container {
            background: linear-gradient(135deg, var(--secondary-blue), var(--bg-surface));
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            margin-bottom: 20px;
            border: 2px solid var(--primary-gold);
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
        }
        .jackpot-title { font-family: 'Montserrat', sans-serif; color: var(--primary-light); font-size: 18px; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-family: 'Montserrat', sans-serif; font-size: 36px; font-weight: 900; color: var(--text-brand); display: flex; justify-content: center; gap: 5px; }
        .intro-card { background-color: var(--bg-surface); padding: 20px; border-radius: 12px; margin-bottom: 20px; border: 1px solid var(--border-subtle); }
        .intro-card h1 { font-family: 'Montserrat', sans-serif; font-size: 24px; color: var(--primary-gold); margin-bottom: 12px; line-height: 1.2; }
        .intro-card p { font-size: 14px; color: var(--text-secondary); text-align: justify; }
        .section-title { font-family: 'Montserrat', sans-serif; font-size: 20px; margin: 25px 0 15px; padding-left: 10px; border-left: 4px solid var(--primary-gold); }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
        .game-card { background-color: var(--bg-elevated); border-radius: 10px; overflow: hidden; text-decoration: none; border: 1px solid var(--border-subtle); 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); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; text-align: center; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; background-color: var(--bg-surface); padding: 15px; border-radius: 12px; margin-bottom: 20px; }
        .payment-item { display: flex; flex-direction: column; align-items: center; gap: 5px; font-size: 10px; color: var(--text-secondary); }
        .payment-item i { font-size: 24px; color: var(--primary-gold); }
        .guide-section { background-color: var(--bg-surface); padding: 20px; border-radius: 12px; margin-bottom: 20px; }
        .guide-item { margin-bottom: 20px; }
        .guide-item h3 { color: var(--primary-light); font-size: 18px; margin-bottom: 8px; }
        .guide-item p { font-size: 14px; color: var(--text-secondary); text-align: justify; }
        .lottery-container { background-color: var(--bg-surface); border-radius: 12px; overflow: hidden; margin-bottom: 20px; }
        .lottery-item { padding: 12px 15px; border-bottom: 1px solid var(--border-subtle); display: flex; justify-content: space-between; align-items: center; font-size: 13px; }
        .lottery-user { color: var(--primary-light); font-weight: 600; }
        .lottery-win { color: var(--success); font-weight: 700; }
        .lottery-game { color: var(--text-secondary); font-style: italic; }
        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
        .provider-box { padding: 15px; text-align: center; border-radius: 8px; font-weight: 700; font-size: 16px; background-color: var(--secondary-blue); border: 1px solid var(--primary-gold); }
        .provider-box:nth-child(even) { background-color: var(--bg-elevated); }
        .comment-container { display: flex; flex-direction: column; gap: 15px; margin-bottom: 20px; }
        .comment-card { background-color: var(--bg-surface); padding: 15px; border-radius: 12px; border: 1px solid var(--border-subtle); }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-avatar { font-size: 30px; color: var(--primary-gold); }
        .comment-info h3 { font-size: 15px; color: var(--text-primary); }
        .comment-stars { color: #FFD700; font-size: 12px; }
        .comment-text { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }
        .comment-date { font-size: 11px; color: var(--text-muted); margin-top: 8px; display: block; }
        .faq-section { background-color: var(--bg-surface); padding: 5px 15px; border-radius: 12px; margin-bottom: 20px; }
        .faq-item { padding: 15px 0; border-bottom: 1px solid var(--border-subtle); }
        .faq-item:last-child { border-bottom: none; }
        .faq-item h3 { font-size: 16px; color: var(--primary-light); margin-bottom: 10px; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
        .security-section { background-color: var(--bg-elevated); padding: 20px; border-radius: 12px; text-align: center; margin-bottom: 20px; border-top: 3px solid var(--safe-gamble); }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--safe-gamble); }
        .security-text { font-size: 12px; color: var(--text-secondary); margin-bottom: 10px; }
        .security-links a { color: var(--primary-gold); text-decoration: none; font-size: 12px; margin: 0 5px; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 65px;
            background-color: var(--bg-nav);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-subtle);
            z-index: 1000;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; text-decoration: none; color: var(--text-muted); gap: 4px; }
        .nav-item i { font-size: 20px; }
        .nav-item span { font-size: 11px; font-weight: 500; }
        footer { background-color: var(--bg-nav); padding: 30px 15px 100px; border-top: 1px solid var(--border-subtle); text-align: center; }
        .footer-contact { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 25px; }
        .footer-contact a { color: var(--text-primary); text-decoration: none; font-size: 14px; display: flex; align-items: center; gap: 5px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; }
        .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 13px; transition: color 0.2s; }
        .footer-links a:hover { color: var(--primary-gold); }
        .copyright { font-size: 12px; color: var(--text-muted); line-height: 1.5; }
        @keyframes scrollJackpot {
            0% { transform: translateY(0); }
            100% { transform: translateY(-5px); }
        }
        .jackpot-anim { animation: scrollJackpot 0.5s infinite alternate ease-in-out; }