:root {
            --primary: #D4AF37;
            --primary-variant: #F9E076;
            --secondary: #1E293B;
            --accent: #E11D48;
            --bg-main: #0F172A;
            --bg-surface: #1E293B;
            --bg-nav: #020617;
            --text-primary: #F8FAFC;
            --text-secondary: #94A3B8;
            --text-muted: #64748B;
            --gold: #FFD700;
            --border-default: #334155;
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            font-size: 16px;
            line-height: 1.5;
            padding-bottom: 70px;
        }
        h1, h2, h3 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            color: var(--gold);
        }
        h1 { font-size: 32px; text-align: center; margin: 20px 0; line-height: 1.2; }
        h2 { font-size: 24px; margin: 25px 0 15px; border-left: 4px solid var(--primary); padding-left: 10px; }
        h3 { font-size: 18px; margin-bottom: 8px; color: var(--text-primary); }
        a { text-decoration: none; color: inherit; }
        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-default);
        }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--primary-variant); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        .btn-register { background: var(--primary); color: #000; }
        main { padding: 0 15px; max-width: 1200px; margin: 0 auto; }
        .hero-banner {
            width: 100%;
            aspect-ratio: 2 / 1;
            border-radius: 12px;
            overflow: hidden;
            margin: 15px 0;
            cursor: pointer;
        }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box {
            background: radial-gradient(circle, #1E293B 0%, #020617 100%);
            border: 2px solid var(--primary);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            margin-bottom: 25px;
        }
        .jackpot-title { color: var(--primary-variant); font-weight: 900; letter-spacing: 2px; margin-bottom: 10px; font-size: 14px; }
        .jackpot-amount { font-family: 'ui-monospace', monospace; font-size: 36px; font-weight: 900; color: var(--gold); text-shadow: 0 0 15px rgba(212, 175, 55, 0.5); }
        .intro-text { text-align: center; color: var(--text-secondary); margin-bottom: 30px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 30px; }
        .game-card { background: var(--bg-surface); border-radius: 12px; overflow: hidden; border: 1px solid var(--border-default); }
        .game-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
        .game-info { padding: 10px; text-align: center; }
        .article-list { display: flex; flex-direction: column; gap: 15px; margin-bottom: 30px; }
        .article-card { background: var(--bg-surface); border-radius: 12px; display: flex; gap: 15px; padding: 10px; align-items: center; border: 1px solid var(--border-default); }
        .article-card img { width: 80px; height: 80px; border-radius: 8px; object-fit: cover; }
        .article-content h3 { font-size: 16px; line-height: 1.3; }
        .article-content p { font-size: 12px; color: var(--text-secondary); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 30px; }
        .payment-item { background: var(--bg-surface); padding: 15px 5px; border-radius: 8px; text-align: center; font-size: 10px; border: 1px solid var(--border-default); }
        .payment-item i { font-size: 20px; display: block; margin-bottom: 5px; color: var(--primary); }
        .winning-scroll { background: var(--bg-surface); border-radius: 12px; padding: 15px; height: 250px; overflow-y: auto; border: 1px solid var(--border-default); margin-bottom: 30px; }
        .winning-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border-default); font-size: 13px; }
        .winning-user { color: var(--primary-variant); font-weight: 600; }
        .winning-amount { color: var(--gold); }
        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 30px; }
        .provider-block { background: linear-gradient(135deg, #1E293B 0%, #334155 100%); padding: 20px; border-radius: 12px; text-align: center; font-weight: 700; color: var(--primary); border: 1px solid var(--border-default); }
        .review-card { background: var(--bg-surface); border-radius: 12px; padding: 20px; margin-bottom: 15px; border: 1px solid var(--border-default); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-avatar { width: 40px; height: 40px; background: #334155; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); }
        .stars { color: var(--gold); font-size: 12px; }
        .review-body { font-size: 14px; color: var(--text-secondary); }
        .review-date { font-size: 11px; color: var(--text-muted); margin-top: 10px; display: block; }
        .faq-item { background: var(--bg-surface); border-radius: 12px; margin-bottom: 12px; padding: 15px; border: 1px solid var(--border-default); }
        .faq-item h3 { font-size: 16px; color: var(--primary-variant); margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }
        .security-box { background: rgba(225, 29, 72, 0.1); border: 1px solid var(--accent); border-radius: 12px; padding: 20px; text-align: center; margin-bottom: 30px; }
        .security-box i { font-size: 30px; color: var(--accent); margin-bottom: 10px; }
        .security-box p { font-size: 14px; color: var(--text-primary); }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: var(--bg-nav); height: 70px; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid var(--border-default); z-index: 1000; }
        .nav-item { text-align: center; color: var(--text-secondary); font-size: 11px; display: flex; flex-direction: column; gap: 4px; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: var(--primary); }
        footer { background: var(--bg-nav); padding: 40px 15px 100px; border-top: 1px solid var(--border-default); }
        .footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        .footer-link { display: block; color: var(--text-muted); font-size: 13px; margin-bottom: 8px; }
        .footer-copy { text-align: center; color: var(--text-muted); font-size: 12px; border-top: 1px solid var(--border-default); padding-top: 20px; }