:root {
            --primary-gold: #D4AF37;
            --primary-light: #F1D279;
            --primary-dark: #996515;
            --accent-red: #E63946;
            --gold-gradient: linear-gradient(180deg, #D4AF37 0%, #996515 100%);
            --bg-main: #0A0B0D;
            --bg-surface: #16181D;
            --bg-elevated: #1F2229;
            --text-primary: #FFFFFF;
            --text-secondary: #A0AEC0;
            --border-default: #2D3748;
            --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-heading: 'Montserrat', 'Inter', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: var(--font-main);
            line-height: 1.5;
            padding-bottom: 70px;
        }
        h1, h2, h3 { font-family: var(--font-heading); color: var(--primary-gold); }
        h1 { font-size: 28px; font-weight: 700; text-align: center; margin: 20px 0; padding: 0 15px; }
        h2 { font-size: 24px; margin: 25px 0 15px; padding: 0 15px; border-left: 4px solid var(--primary-gold); margin-left: 15px; }
        h3 { font-size: 18px; margin-bottom: 10px; }
        a { text-decoration: none; color: inherit; }
        header {
            background: var(--bg-surface);
            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; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--primary-gold); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-size: 14px;
        }
        .btn-login { background: transparent; color: var(--primary-gold); border: 1px solid var(--primary-gold); }
        .btn-register { background: var(--gold-gradient); color: #000; }
        .hero-banner { width: 100%; aspect-ratio: 2/1; display: block; cursor: pointer; }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section {
            background: var(--bg-elevated);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--primary-dark);
        }
        .jackpot-label { font-size: 14px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-size: 32px; font-weight: 900; color: var(--primary-gold); margin-top: 5px; font-family: 'JetBrains Mono', monospace; }
        .intro-section { padding: 0 15px; margin-bottom: 30px; text-align: center; }
        .intro-section p { color: var(--text-secondary); font-size: 16px; }
        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            padding: 0 15px;
            margin-bottom: 30px;
        }
        .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-info { padding: 10px; text-align: center; }
        .game-info h3 { font-size: 14px; margin: 0; color: var(--text-primary); }
        .article-list { padding: 0 15px; margin-bottom: 30px; }
        .article-card {
            display: flex;
            background: var(--bg-surface);
            margin-bottom: 15px;
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid var(--border-default);
        }
        .article-image { width: 100px; height: 100px; object-fit: cover; flex-shrink: 0; }
        .article-content { padding: 12px; }
        .article-content h3 { font-size: 16px; line-height: 1.3; color: var(--primary-light); }
        .article-content p { font-size: 12px; color: var(--text-secondary); height: 36px; overflow: hidden; }
        .payment-section {
            background: var(--bg-surface);
            padding: 20px 15px;
            margin-bottom: 30px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            text-align: center;
        }
        .payment-item i { font-size: 24px; color: var(--primary-gold); margin-bottom: 5px; }
        .payment-item span { display: block; font-size: 10px; color: var(--text-secondary); }
        .win-records {
            padding: 0 15px;
            margin-bottom: 30px;
        }
        .win-card {
            background: var(--bg-elevated);
            padding: 10px 15px;
            border-radius: 8px;
            margin-bottom: 8px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-left: 3px solid var(--semantic-success, #28A745);
        }
        .win-user { font-size: 14px; font-weight: 600; color: var(--primary-light); }
        .win-game { font-size: 12px; color: var(--text-secondary); }
        .win-amount { color: var(--primary-gold); font-weight: 700; }
        .provider-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            padding: 0 15px;
            margin-bottom: 30px;
        }
        .provider-block {
            background: var(--bg-elevated);
            padding: 15px;
            text-align: center;
            border-radius: 8px;
            font-weight: 600;
            color: var(--primary-gold);
            border: 1px solid var(--border-default);
        }
        .review-section { padding: 0 15px; margin-bottom: 30px; }
        .review-card {
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 15px;
            border: 1px solid var(--border-default);
        }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 20px; color: var(--primary-gold); }
        .review-name { font-weight: 600; font-size: 14px; }
        .stars { color: #FFC107; font-size: 12px; }
        .review-text { font-size: 13px; color: var(--text-secondary); font-style: italic; }
        .faq-section { padding: 0 15px; margin-bottom: 30px; }
        .faq-item { margin-bottom: 20px; background: var(--bg-surface); padding: 15px; border-radius: 10px; }
        .faq-item h3 { color: var(--primary-light); font-size: 16px; margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }
        .security-section {
            padding: 20px 15px;
            background: var(--bg-elevated);
            text-align: center;
            margin-bottom: 30px;
        }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--primary-gold); }
        .security-text { font-size: 12px; color: var(--text-secondary); margin-bottom: 10px; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 60px;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-default);
            z-index: 1001;
        }
        .nav-item { text-align: center; color: var(--text-secondary); font-size: 10px; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 2px; }
        .nav-item.active { color: var(--primary-gold); }
        footer { padding: 30px 15px 100px; 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); }
        .footer-copy { text-align: center; font-size: 12px; color: var(--text-disabled); padding-top: 20px; border-top: 1px solid var(--border-default); }