:root {
            --bg-main: #0B0E14;
            --bg-surface: #161B22;
            --bg-elevation: #1C2128;
            --primary: #D4AF37;
            --secondary: #B8860B;
            --accent: #FFD700;
            --highlight: #FFEA00;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B3B8;
            --border-default: #30363D;
            --success: #00C853;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Inter', 'Roboto', -apple-system, sans-serif;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            padding-bottom: 70px;
        }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; }
        a { text-decoration: none; color: inherit; }
        header {
            background: var(--bg-surface);
            border-bottom: 1px solid var(--border-default);
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .logo-box { display: flex; align-items: center; gap: 10px; }
        .logo-box img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-box strong { font-size: 16px; font-weight: 400; color: var(--primary); }
        .auth-btns { display: flex; gap: 8px; }
        .btn {
            padding: 6px 12px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--primary); }
        .btn-reg { background: var(--primary); color: var(--bg-main); }
        .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: linear-gradient(180deg, var(--bg-elevation) 0%, var(--bg-main) 100%);
            padding: 20px 15px;
            text-align: center;
            border-bottom: 2px solid var(--primary);
        }
        .jackpot-label { font-size: 14px; color: var(--accent); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 5px; }
        .jackpot-amount {
            font-family: 'Oswald', sans-serif;
            font-size: 36px;
            color: var(--highlight);
            font-weight: 900;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }
        .intro-section { padding: 25px 15px; }
        .intro-section h1 { font-size: 24px; color: var(--primary); margin-bottom: 15px; }
        .intro-section p { font-size: 16px; color: var(--text-secondary); }
        .section-title { font-size: 20px; margin: 20px 15px 15px; padding-left: 10px; border-left: 4px solid var(--primary); }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card {
            background: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-default);
            transition: transform 0.2s;
        }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { font-size: 14px; padding: 10px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .article-list { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; }
        .article-item { display: flex; background: var(--bg-surface); border-radius: 8px; overflow: hidden; border: 1px solid var(--border-default); }
        .article-img { width: 100px; height: 100px; object-fit: cover; }
        .article-info { padding: 10px; flex: 1; }
        .article-info h2 { font-size: 14px; margin-bottom: 5px; color: var(--primary); }
        .article-info p { font-size: 12px; color: var(--text-secondary); height: 36px; overflow: hidden; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 15px; }
        .payment-item {
            background: var(--bg-elevation);
            border-radius: 8px;
            padding: 10px 5px;
            text-align: center;
            font-size: 10px;
            border: 1px solid var(--border-default);
        }
        .payment-item i { font-size: 20px; color: var(--primary); display: block; margin-bottom: 5px; }
        .winning-records { padding: 15px; background: var(--bg-surface); margin: 20px 15px; border-radius: 12px; }
        .winning-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border-default); font-size: 13px; }
        .winning-item span:last-child { color: var(--success); font-family: 'Oswald', sans-serif; }
        .providers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 15px; }
        .provider-block { background: var(--bg-elevation); padding: 15px; text-align: center; border-radius: 8px; font-weight: bold; color: var(--primary); border: 1px solid var(--border-default); }
        .review-card { background: var(--bg-surface); border-radius: 12px; padding: 15px; margin: 0 15px 15px; border: 1px solid var(--border-default); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: var(--text-secondary); }
        .stars { color: var(--accent); font-size: 12px; }
        .review-text { font-size: 14px; color: var(--text-secondary); margin-bottom: 8px; }
        .review-date { font-size: 11px; color: var(--border-default); }
        .faq-section { padding: 15px; }
        .faq-item { background: var(--bg-surface); border-radius: 8px; margin-bottom: 10px; padding: 15px; border: 1px solid var(--border-default); }
        .faq-item h3 { font-size: 16px; color: var(--primary); margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }
        .security-section { padding: 20px 15px; text-align: center; background: var(--bg-elevation); }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--primary); }
        .security-text { font-size: 12px; color: var(--text-secondary); max-width: 300px; margin: 0 auto; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 60px;
            background: var(--bg-surface);
            border-top: 1px solid var(--border-default);
            display: flex;
            justify-content: space-around;
            align-items: center;
            z-index: 1000;
        }
        .nav-item { text-align: center; color: var(--text-secondary); font-size: 10px; flex: 1; }
        .nav-item i { display: block; font-size: 18px; margin-bottom: 3px; }
        .nav-item.active { color: var(--primary); }
        footer { padding: 30px 15px; background: var(--bg-main); border-top: 1px solid var(--border-default); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; }
        .footer-links a { font-size: 12px; color: var(--text-secondary); }
        .copyright { text-align: center; font-size: 11px; color: var(--border-default); border-top: 1px solid var(--border-default); padding-top: 15px; }