:root {
            --bg-primary: #0D0D0D;
            --bg-secondary: #1A1A1A;
            --bg-accent: #262626;
            --gold-gradient: linear-gradient(180deg, #D4AF37 0%, #8A6E2F 100%);
            --gold-main: #D4AF37;
            --gold-light: #F9E498;
            --gold-dark: #996515;
            --royal-red: #B22222;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-muted: #808080;
            --text-highlight: #D4AF37;
            --success: #28A745;
            --error: #DC3545;
            --border-default: #333333;
            --border-active: #D4AF37;
            --font-main: 'Montserrat', 'Inter', -apple-system, sans-serif;
            --font-serif: 'Playfair Display', 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;
            overflow-x: hidden;
        }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        header {
            background-color: var(--bg-secondary);
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            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; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--gold-main); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
        }
        .btn-login { background-color: var(--bg-accent); color: var(--text-primary); border: 1px solid var(--border-default); }
        .btn-register { background: var(--gold-gradient); color: #000; }
        .hero-banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section {
            background: var(--bg-secondary);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--gold-dark);
        }
        .jackpot-label { color: var(--gold-light); font-size: 14px; font-weight: 700; text-transform: uppercase; margin-bottom: 5px; }
        .jackpot-amount {
            font-family: var(--font-serif);
            font-size: 32px;
            font-weight: 700;
            color: var(--gold-main);
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
        }
        .intro-section { padding: 20px; text-align: center; }
        .intro-section h1 { font-size: 24px; color: var(--gold-main); margin-bottom: 15px; font-family: var(--font-serif); }
        .intro-section p { font-size: 14px; color: var(--text-secondary); text-align: justify; }
        .section-container { padding: 10px 15px; }
        .section-title { font-size: 20px; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; border-left: 4px solid var(--gold-main); padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
        .game-card { background: var(--bg-secondary); border-radius: 8px; overflow: hidden; border: 1px solid var(--border-default); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { padding: 8px; font-size: 14px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .article-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
        .article-card { display: flex; background: var(--bg-secondary); border-radius: 8px; overflow: hidden; border: 1px solid var(--border-default); }
        .article-card img { width: 100px; height: 100px; object-fit: cover; }
        .article-content { padding: 10px; flex: 1; }
        .article-content h3 { font-size: 14px; margin-bottom: 5px; color: var(--gold-light); }
        .article-content p { font-size: 12px; color: var(--text-secondary); line-height: 1.3; }
        .payment-section { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 10px; }
        .payment-item { background: var(--bg-accent); padding: 10px; border-radius: 8px; text-align: center; font-size: 12px; border: 1px solid var(--border-default); }
        .payment-item i { font-size: 20px; margin-bottom: 5px; color: var(--gold-main); display: block; }
        .winning-list { background: var(--bg-secondary); border-radius: 8px; padding: 10px; }
        .win-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border-default); font-size: 12px; }
        .win-item:last-child { border-bottom: none; }
        .win-user { color: var(--gold-light); font-weight: 600; }
        .win-amount { color: var(--success); font-weight: 700; }
        .provider-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
        .provider-block { background: var(--bg-accent); height: 50px; display: flex; align-items: center; justify-content: center; border-radius: 8px; font-weight: 700; color: var(--text-secondary); border: 1px solid var(--border-default); }
        .review-card { background: var(--bg-secondary); border-radius: 12px; padding: 15px; margin-bottom: 15px; border-left: 4px solid var(--gold-main); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: var(--gold-main); }
        .review-stars { color: var(--warning); font-size: 12px; margin-bottom: 8px; }
        .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 { background: var(--bg-secondary); border-radius: 12px; padding: 15px; margin-top: 20px; }
        .faq-item { margin-bottom: 20px; border-bottom: 1px solid var(--border-default); padding-bottom: 15px; }
        .faq-item:last-child { border-bottom: none; }
        .faq-item h3 { font-size: 16px; color: var(--gold-main); margin-bottom: 10px; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); text-align: justify; }
        .security-section { text-align: center; padding: 30px 15px; background: var(--bg-accent); margin-top: 20px; border-radius: 20px 20px 0 0; }
        .security-icons { font-size: 30px; display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; color: var(--gold-main); }
        .security-text { font-size: 13px; color: var(--text-muted); margin-bottom: 15px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; padding: 20px 15px; background: var(--bg-secondary); border-top: 1px solid var(--border-default); }
        .footer-col a { display: block; font-size: 13px; color: var(--text-secondary); margin-bottom: 8px; }
        .footer-bottom { text-align: center; padding: 15px; font-size: 12px; color: var(--text-muted); background: var(--bg-primary); padding-bottom: 80px; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: #111;
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 2px solid var(--gold-main);
            z-index: 1001;
        }
        .nav-item { text-align: center; color: var(--text-secondary); }
        .nav-item i { display: block; font-size: 18px; margin-bottom: 3px; }
        .nav-item span { font-size: 10px; text-transform: uppercase; font-weight: 600; }
        .nav-item.active { color: var(--gold-main); }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .hero-banner { aspect-ratio: 3/1; }
        }