:root {
            --primary: #D4AF37;
            --primary-variant: #F9E076;
            --secondary: #C0C0C0;
            --accent: #FF3E3E;
            --bg-base: #0A0B0D;
            --bg-surface: #16181D;
            --bg-elevated: #22252C;
            --text-primary: #FFFFFF;
            --text-secondary: #A0A5AD;
            --border-subtle: #2D3139;
            --border-active: #D4AF37;
            --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-display: 'Montserrat', 'Archivo', sans-serif;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            background-color: var(--bg-base);
            color: var(--text-primary);
            font-family: var(--font-main);
            line-height: 1.5;
            padding-bottom: 70px;
        }
        a { text-decoration: none; color: inherit; }
        header {
            background-color: var(--bg-surface);
            padding: 12px 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid var(--border-subtle);
        }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; object-fit: contain; }
        .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-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
            transition: opacity 0.2s;
        }
        .btn-login { background-color: transparent; color: var(--text-primary); border: 1px solid var(--border-subtle); }
        .btn-register { background-color: var(--primary); color: var(--bg-base); }
        .hero-banner { width: 100%; aspect-ratio: 2/1; display: block; overflow: hidden; }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container {
            background: linear-gradient(135deg, #16181D 0%, #22252C 100%);
            margin: 16px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--primary);
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
        }
        .jackpot-label { color: var(--primary); font-family: var(--font-display); font-weight: 700; font-size: 14px; text-transform: uppercase; margin-bottom: 8px; letter-spacing: 1px; }
        .jackpot-amount { font-size: 32px; font-weight: 900; color: var(--text-primary); font-family: var(--font-display); }
        .intro-section { padding: 24px 16px; text-align: center; }
        .intro-section h1 { font-size: 24px; color: var(--primary); margin-bottom: 12px; font-family: var(--font-display); }
        .intro-section p { font-size: 14px; color: var(--text-secondary); max-width: 800px; margin: 0 auto; }
        .section-title { padding: 20px 16px 10px; font-size: 20px; font-family: var(--font-display); color: var(--primary-variant); display: flex; align-items: center; gap: 8px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 12px 16px; }
        .game-card { background: var(--bg-surface); border-radius: 12px; overflow: hidden; border: 1px solid var(--border-subtle); transition: transform 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { padding: 10px; font-size: 14px; text-align: center; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .article-list { padding: 16px; display: flex; flex-direction: column; gap: 16px; }
        .article-card { display: flex; gap: 12px; background: var(--bg-surface); padding: 12px; border-radius: 12px; border: 1px solid var(--border-subtle); }
        .article-image { width: 80px; height: 80px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
        .article-content h3 { font-size: 16px; margin-bottom: 4px; color: var(--primary); }
        .article-content p { font-size: 13px; 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; padding: 16px; }
        .payment-item { background: var(--bg-elevated); padding: 12px 8px; border-radius: 8px; text-align: center; border: 1px solid var(--border-subtle); }
        .payment-item i { font-size: 20px; color: var(--primary); margin-bottom: 6px; display: block; }
        .payment-item span { font-size: 11px; color: var(--text-secondary); }
        .winner-list { margin: 16px; background: var(--bg-surface); border-radius: 12px; border: 1px solid var(--border-subtle); overflow: hidden; }
        .winner-item { padding: 12px 16px; display: flex; justify-content: space-between; border-bottom: 1px solid var(--border-subtle); font-size: 13px; }
        .winner-item:last-child { border-bottom: none; }
        .winner-user { color: var(--text-primary); font-weight: 500; }
        .winner-amount { color: var(--primary); font-weight: 700; }
        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 16px; }
        .provider-block { background: var(--bg-elevated); padding: 20px; text-align: center; border-radius: 10px; font-weight: 700; color: var(--secondary); border: 1px solid var(--border-subtle); }
        .review-grid { padding: 16px; display: flex; flex-direction: column; gap: 12px; }
        .review-card { background: var(--bg-surface); padding: 16px; border-radius: 12px; border: 1px solid var(--border-subtle); }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
        .review-user { display: flex; align-items: center; gap: 8px; font-weight: 600; }
        .stars { color: #FFD600; font-size: 12px; }
        .review-body { font-size: 14px; color: var(--text-secondary); font-style: italic; }
        .faq-section { padding: 16px; }
        .faq-item { margin-bottom: 12px; background: var(--bg-surface); border-radius: 10px; padding: 16px; border-left: 4px solid var(--primary); }
        .faq-item h3 { font-size: 16px; margin-bottom: 8px; color: var(--text-primary); }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }
        .security-section { margin: 16px; padding: 20px; background: var(--bg-elevated); border-radius: 12px; text-align: center; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--primary); }
        .security-text { font-size: 13px; color: var(--text-secondary); margin-bottom: 10px; }
        .age-limit { display: inline-block; padding: 4px 8px; border: 1px solid var(--accent); color: var(--accent); border-radius: 4px; font-weight: bold; margin-bottom: 10px; }
        .navigator { position: fixed; bottom: 0; width: 100%; background: var(--bg-surface); display: flex; justify-content: space-around; padding: 10px 0; 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: 12px; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: var(--primary); }
        footer { background: var(--bg-base); padding: 40px 16px 100px; border-top: 1px solid var(--border-subtle); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        .footer-links a { font-size: 13px; 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-subtle); }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .article-list { display: grid; grid-template-columns: 1fr 1fr; }
            .provider-grid { grid-template-columns: repeat(4, 1fr); }
        }