:root {
            --primary: #FFD700;
            --primary-variant: #C5A028;
            --secondary: #B22222;
            --accent: #00E5FF;
            --bg-base: #0B0E11;
            --bg-surface: #15191E;
            --bg-elevated: #1E2329;
            --text-primary: #FFFFFF;
            --text-secondary: #B7BDC6;
            --text-muted: #848E9C;
            --border-subtle: #2B2F36;
            --win: #FFD700;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-base);
            color: var(--text-primary);
            font-family: 'Montserrat', 'Inter', -apple-system, sans-serif;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
        }
        header {
            height: 60px;
            background: var(--bg-surface);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 16px;
            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; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--primary); }
        .header-right { display: flex; gap: 10px; }
        .btn-login, .btn-register {
            padding: 6px 16px;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-size: 14px;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--primary); }
        .btn-register { background: var(--primary); color: #0B0E11; }
        main { padding-bottom: 80px; max-width: 800px; margin: 0 auto; }
        .banner-container { width: 100%; aspect-ratio: 2 / 1; cursor: pointer; overflow: hidden; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box {
            margin: 16px;
            background: linear-gradient(135deg, var(--secondary), #7a1717);
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 2px solid var(--primary);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
        }
        .jackpot-label { color: var(--primary); font-family: 'Bebas Neue', sans-serif; font-size: 24px; letter-spacing: 2px; }
        .jackpot-amount { font-size: 36px; font-weight: 800; color: #fff; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); font-family: 'Bebas Neue', sans-serif; }
        .intro-card { margin: 16px; background: var(--bg-surface); padding: 20px; border-radius: 12px; border: 1px solid var(--border-subtle); }
        .intro-card h1 { font-size: 24px; color: var(--primary); margin-bottom: 12px; line-height: 1.2; }
        .intro-card p { color: var(--text-secondary); font-size: 14px; }
        .game-section { padding: 0 16px; margin-bottom: 24px; }
        .game-section h2 { font-size: 20px; margin-bottom: 16px; border-left: 4px solid var(--primary); padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
        .game-card { background: var(--bg-surface); border-radius: 12px; overflow: hidden; text-decoration: none; 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-card h3 { padding: 8px; font-size: 14px; color: var(--text-primary); text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-section { margin: 16px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
        .payment-item { background: var(--bg-elevated); padding: 12px 5px; border-radius: 8px; text-align: center; font-size: 10px; color: var(--text-secondary); border: 1px solid var(--border-subtle); }
        .payment-item i { font-size: 20px; color: var(--primary); margin-bottom: 5px; display: block; }
        .guide-container { margin: 16px; display: flex; flex-direction: column; gap: 16px; }
        .guide-item { background: var(--bg-surface); padding: 16px; border-radius: 12px; }
        .guide-item h2 { font-size: 18px; color: var(--primary); margin-bottom: 8px; }
        .guide-item p { font-size: 14px; color: var(--text-secondary); }
        .lottery-container { margin: 16px; background: var(--bg-surface); border-radius: 12px; padding: 10px; }
        .lottery-item { display: flex; justify-content: space-between; padding: 10px; border-bottom: 1px solid var(--border-subtle); font-size: 13px; }
        .lottery-item:last-child { border-bottom: none; }
        .win-user { color: var(--accent); font-weight: 600; }
        .win-amount { color: var(--win); font-weight: bold; }
        .providers-section { margin: 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
        .provider-pill { background: var(--bg-elevated); color: var(--primary); padding: 12px; border-radius: 8px; text-align: center; font-weight: bold; border-left: 3px solid var(--secondary); }
        .comment-section { margin: 16px; display: flex; flex-direction: column; gap: 12px; }
        .comment-card { background: var(--bg-surface); padding: 16px; border-radius: 12px; border: 1px solid var(--border-subtle); }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .comment-header i { font-size: 24px; color: var(--text-muted); }
        .comment-user { font-weight: 600; font-size: 14px; }
        .comment-stars { color: var(--primary); font-size: 12px; }
        .comment-content { font-size: 13px; color: var(--text-secondary); margin-bottom: 8px; font-style: italic; }
        .comment-date { font-size: 11px; color: var(--text-muted); }
        .faq-section { margin: 16px; }
        .faq-item { background: var(--bg-surface); margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; color: var(--primary); border-bottom: 1px solid var(--border-subtle); font-size: 15px; }
        .faq-answer { padding: 15px; color: var(--text-secondary); font-size: 14px; }
        .security-section { margin: 16px; background: var(--bg-elevated); padding: 20px; border-radius: 12px; text-align: center; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--accent); }
        .security-text { font-size: 12px; color: var(--text-muted); }
        .navigator {
            position: fixed;
            bottom: 0;
            width: 100%;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-subtle);
            z-index: 1000;
        }
        .nav-item { text-decoration: none; color: var(--text-secondary); text-align: center; flex: 1; }
        .nav-item i { font-size: 18px; display: block; margin-bottom: 4px; }
        .nav-item span { font-size: 10px; font-weight: 500; }
        footer { background: var(--bg-base); padding: 30px 16px 100px; border-top: 1px solid var(--border-subtle); }
        .footer-contact { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 25px; }
        .footer-contact a { color: var(--primary); text-decoration: none; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; text-align: center; margin-bottom: 25px; }
        .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 13px; }
        .footer-copy { text-align: center; color: var(--text-muted); font-size: 12px; border-top: 1px solid var(--border-subtle); padding-top: 20px; }