:root {
            --primary: #FFD700;
            --secondary: #D4AF37;
            --accent: #E63946;
            --gold-start: #BF953F;
            --gold-end: #AA771C;
            --bg-base: #0A0A0B;
            --bg-surface: #161618;
            --bg-elevated: #1F1F23;
            --text-primary: #FFFFFF;
            --text-secondary: #A1A1AA;
            --text-muted: #71717A;
            --border-subtle: #27272A;
            --border-default: #3F3F46;
            --radius: 12px;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-base);
            color: var(--text-primary);
            font-family: 'Inter', 'Roboto', system-ui, sans-serif;
            line-height: 1.5;
            padding-bottom: 70px;
        }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; }
        a { text-decoration: none; color: inherit; }
        header {
            height: 60px;
            background: var(--bg-surface);
            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; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--primary); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        .btn-reg { background: linear-gradient(to bottom, var(--gold-start), var(--gold-end)); color: #000; }
        .hero-banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container {
            margin: 20px 15px;
            background: var(--bg-surface);
            border: 1px solid var(--secondary);
            border-radius: var(--radius);
            padding: 20px;
            text-align: center;
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
        }
        .jackpot-label { color: var(--secondary); font-size: 0.875rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-value { font-size: 2.25rem; font-weight: 800; color: var(--primary); font-family: 'JetBrains Mono', monospace; }
        .intro-section { padding: 25px 15px; text-align: center; }
        .intro-section h1 { font-size: 1.5rem; margin-bottom: 15px; color: var(--primary); }
        .intro-section p { color: var(--text-secondary); font-size: 0.95rem; }
        .section-title { padding: 20px 15px 10px; font-size: 1.25rem; color: var(--primary); border-left: 4px solid var(--primary); margin: 15px 0; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 15px; }
        .game-card { background: var(--bg-elevated); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border-subtle); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { padding: 10px; font-size: 0.875rem; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .article-list { padding: 15px; display: flex; flex-direction: column; gap: 15px; }
        .article-card { display: flex; background: var(--bg-surface); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border-subtle); }
        .article-thumb { width: 100px; height: 100px; flex-shrink: 0; }
        .article-thumb img { width: 100%; height: 100%; object-fit: cover; }
        .article-info { padding: 10px; display: flex; flex-direction: column; justify-content: center; }
        .article-info h2 { font-size: 0.9rem; margin-bottom: 5px; line-height: 1.2; }
        .article-info p { font-size: 0.75rem; color: var(--text-muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .payment-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 15px; }
        .payment-item { background: var(--bg-elevated); padding: 15px; border-radius: 8px; display: flex; align-items: center; gap: 10px; border: 1px solid var(--border-subtle); }
        .payment-item i { color: var(--primary); font-size: 1.25rem; }
        .winning-box { height: 200px; overflow: hidden; margin: 15px; background: var(--bg-surface); border-radius: var(--radius); border: 1px solid var(--border-subtle); position: relative; }
        .winning-scroll { position: absolute; width: 100%; animation: scrollUp 20s linear infinite; }
        .winning-item { padding: 10px 15px; border-bottom: 1px solid var(--border-subtle); display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; }
        .win-user { color: var(--secondary); }
        .win-amount { color: var(--semantic-success, #10B981); font-weight: 700; }
        @keyframes scrollUp { 0% { top: 0; } 100% { top: -100%; } }
        .providers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 15px; }
        .provider-block { background: var(--bg-elevated); padding: 20px; text-align: center; border-radius: var(--radius); border: 1px solid var(--border-default); font-weight: 600; color: var(--primary); }
        .review-card { background: var(--bg-elevated); padding: 15px; border-radius: var(--radius); margin: 0 15px 15px; border-left: 3px solid var(--primary); }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 10px; align-items: center; }
        .user-meta { display: flex; align-items: center; gap: 8px; }
        .stars { color: var(--primary); font-size: 0.8rem; }
        .review-body { font-size: 0.875rem; color: var(--text-secondary); font-style: italic; }
        .faq-section { padding: 15px; }
        .faq-item { background: var(--bg-surface); border-radius: var(--radius); padding: 15px; margin-bottom: 10px; border: 1px solid var(--border-subtle); }
        .faq-item h3 { font-size: 1rem; color: var(--primary); margin-bottom: 10px; }
        .faq-item p { font-size: 0.875rem; color: var(--text-secondary); }
        .security-section { padding: 25px 15px; background: var(--bg-surface); text-align: center; margin-top: 20px; border-top: 1px solid var(--border-subtle); }
        .security-icons { font-size: 2rem; color: var(--primary); margin-bottom: 15px; display: flex; justify-content: center; gap: 20px; }
        .security-text { font-size: 0.8rem; color: var(--text-muted); max-width: 500px; margin: 0 auto; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; height: 65px; background: var(--bg-surface); 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; gap: 4px; color: var(--text-secondary); font-size: 0.7rem; }
        .nav-item i { font-size: 1.2rem; }
        .nav-item.active { color: var(--primary); }
        footer { padding: 30px 15px 90px; background: var(--bg-base); border-top: 1px solid var(--border-subtle); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; }
        .footer-links a { font-size: 0.8rem; color: var(--text-muted); }
        .footer-bottom { text-align: center; border-top: 1px solid var(--border-subtle); padding-top: 20px; color: var(--text-muted); font-size: 0.75rem; }