:root {
            --bg-primary: #0F172A;
            --bg-secondary: #1E293B;
            --bg-tertiary: #020617;
            --bg-surface: #1E293B;
            --brand-gold: #D4AF37;
            --brand-hover: #C5A028;
            --accent-red: #E11D48;
            --accent-green: #10B981;
            --success: #22C55E;
            --warning: #F59E0B;
            --error: #EF4444;
            --info: #3B82F6;
            --text-primary: #F8FAFC;
            --text-secondary: #94A3B8;
            --text-muted: #64748B;
            --text-inverse: #0F172A;
            --border-default: #334155;
            --border-vivid: #475569;
            --border-focus: #D4AF37;
            --font-main: 'Inter', 'Helvetica Neue', Arial, sans-serif;
            --font-display: 'Montserrat', 'Oswald', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: var(--font-main);
            line-height: 1.5;
            padding-bottom: 70px;
        }
        h1, h2, h3 { font-family: var(--font-display); line-height: 1.2; }
        a { text-decoration: none; color: inherit; }
        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background-color: var(--bg-tertiary);
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            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: 600; color: var(--brand-gold); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        .btn-login { background-color: transparent; border: 1px solid var(--brand-gold); color: var(--brand-gold); }
        .btn-register { background-color: var(--brand-gold); color: var(--text-inverse); }
        .btn-register:hover { background-color: var(--brand-hover); }
        .hero-banner { width: 100%; aspect-ratio: 2 / 1; cursor: pointer; display: block; overflow: hidden; }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container {
            margin: 15px;
            padding: 20px;
            background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
            border: 2px solid var(--brand-gold);
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
        }
        .jackpot-label { color: var(--brand-gold); font-size: 14px; font-weight: 700; text-transform: uppercase; margin-bottom: 5px; }
        .jackpot-amount { font-family: var(--font-display); font-size: 32px; font-weight: 800; color: #fff; text-shadow: 0 0 10px var(--brand-gold); }
        .section-intro { padding: 20px 15px; text-align: center; }
        .section-intro h1 { font-size: 24px; color: var(--brand-gold); margin-bottom: 10px; }
        .section-intro p { color: var(--text-secondary); font-size: 14px; }
        .section-title { padding: 15px; display: flex; align-items: center; gap: 10px; font-size: 18px; color: var(--text-primary); }
        .section-title i { color: var(--brand-gold); }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px 20px; }
        .game-card { background: var(--bg-surface); border-radius: 10px; overflow: hidden; border: 1px solid var(--border-default); transition: 0.3s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { padding: 10px; font-size: 14px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .article-list { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; margin-bottom: 20px; }
        .article-card { display: flex; background: var(--bg-surface); border-radius: 10px; overflow: hidden; border: 1px solid var(--border-default); }
        .article-image { width: 100px; height: 100px; flex-shrink: 0; }
        .article-image img { width: 100%; height: 100%; object-fit: cover; }
        .article-content { padding: 10px; display: flex; flex-direction: column; justify-content: center; }
        .article-content h3 { font-size: 14px; color: var(--brand-gold); margin-bottom: 5px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .article-content p { font-size: 12px; color: var(--text-secondary); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .payment-section { padding: 20px 15px; background: var(--bg-tertiary); margin-bottom: 20px; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; text-align: center; }
        .payment-item { display: flex; flex-direction: column; align-items: center; gap: 5px; color: var(--text-secondary); }
        .payment-item i { font-size: 24px; color: var(--brand-gold); }
        .payment-item span { font-size: 10px; }
        .lottery-section { margin: 0 15px 20px; background: var(--bg-surface); border-radius: 12px; padding: 15px; border: 1px solid var(--border-vivid); }
        .lottery-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border-default); font-size: 12px; }
        .lottery-row:last-child { border-bottom: none; }
        .lottery-user { color: var(--accent-green); font-weight: 600; }
        .lottery-win { color: var(--brand-gold); font-weight: 700; }
        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 15px 20px; }
        .provider-item { background: var(--bg-secondary); padding: 15px; border-radius: 8px; text-align: center; font-weight: 700; color: var(--text-secondary); border: 1px solid var(--border-default); }
        .review-grid { padding: 0 15px 20px; display: flex; flex-direction: column; gap: 12px; }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: 10px; border-left: 4px solid var(--brand-gold); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 20px; color: var(--text-muted); }
        .review-user { font-weight: 600; font-size: 14px; }
        .stars { color: var(--warning); font-size: 12px; margin-left: auto; }
        .review-text { 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 20px; }
        .faq-item { background: var(--bg-surface); border-radius: 8px; margin-bottom: 10px; border: 1px solid var(--border-default); }
        .faq-question { padding: 15px; font-weight: 600; font-size: 14px; color: var(--brand-gold); cursor: pointer; }
        .faq-answer { padding: 0 15px 15px; font-size: 13px; color: var(--text-secondary); }
        .security-section { padding: 25px 15px; background: var(--bg-tertiary); text-align: center; border-top: 1px solid var(--border-default); }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 30px; color: var(--brand-gold); }
        .security-text { font-size: 12px; color: var(--text-muted); max-width: 300px; margin: 0 auto; }
        .security-links { margin-top: 10px; display: block; color: var(--info); font-size: 12px; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; height: 65px; background: rgba(15, 23, 42, 0.95); backdrop-filter: blur(10px); border-top: 1px solid var(--border-default); display: flex; justify-content: space-around; align-items: center; z-index: 1001; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--text-secondary); font-size: 11px; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: var(--brand-gold); }
        footer { background: var(--bg-tertiary); padding: 30px 15px 100px; border-top: 1px solid var(--border-default); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        .footer-links a { color: var(--text-secondary); font-size: 13px; text-align: center; }
        .copyright { text-align: center; font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-default); padding-top: 20px; }