:root {
            --bg-primary: #0B0C10;
            --bg-secondary: #1F2833;
            --card-surface: #161B22;
            --overlay: rgba(0, 0, 0, 0.85);
            --gold-primary: #D4AF37;
            --gold-light: #F9E076;
            --gold-dark: #996515;
            --royal-blue: #1E3A8A;
            --success: #2ECC71;
            --warning: #F1C40F;
            --danger: #E74C3C;
            --info: #3498DB;
            --text-primary: #FFFFFF;
            --text-secondary: #C5C6C7;
            --text-muted: #8B8E90;
            --text-inverted: #0B0C10;
            --text-highlight: #FFD700;
            --border-default: #45A29E;
            --border-subtle: #2C3E50;
            --border-focused: #D4AF37;
            --font-headings: 'Montserrat', 'Helvetica Neue', sans-serif;
            --font-body: 'Inter', 'Roboto', sans-serif;
            --font-numbers: 'Oswald', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
        body { background-color: var(--bg-primary); color: var(--text-primary); font-family: var(--font-body); line-height: 1.6; padding-bottom: 70px; }
        h1, h2, h3 { font-family: var(--font-headings); line-height: 1.2; font-weight: 700; color: var(--gold-primary); }
        h1 { font-size: 36px; margin: 20px 0; text-align: center; }
        h2 { font-size: 30px; margin: 25px 0 15px; border-left: 4px solid var(--gold-primary); padding-left: 15px; }
        h3 { font-size: 24px; color: var(--text-primary); margin-bottom: 10px; }
        p { font-size: 16px; color: var(--text-secondary); margin-bottom: 15px; }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; height: auto; display: block; border-radius: 8px; }
        .container { width: 95%; max-width: 1200px; margin: 0 auto; }
        header { background-color: var(--bg-secondary); padding: 10px 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 4px 10px rgba(0,0,0,0.5); }
        .header-wrap { display: flex; justify-content: space-between; align-items: center; }
        .logo-area { display: flex; align-items: center; gap: 10px; }
        .logo-area img { width: 25px; height: 25px; }
        .logo-area strong { font-size: 16px; font-weight: 400; color: var(--text-primary); }
        .auth-btns { display: flex; gap: 8px; }
        .btn { padding: 8px 16px; border-radius: 4px; font-weight: 600; cursor: pointer; border: none; font-size: 14px; transition: 0.3s; }
        .btn-login { background-color: transparent; color: var(--text-primary); border: 1px solid var(--gold-primary); }
        .btn-register { background-color: var(--gold-primary); color: var(--text-inverted); }
        .btn-register:hover { background-color: var(--gold-light); }
        .hero-banner { width: 100%; aspect-ratio: 2/1; object-fit: cover; cursor: pointer; margin-bottom: 20px; }
        .jackpot-box { background: radial-gradient(circle, var(--royal-blue), var(--bg-primary)); padding: 20px; border-radius: 12px; border: 2px solid var(--gold-primary); text-align: center; margin: 20px 0; }
        .jackpot-label { color: var(--gold-light); text-transform: uppercase; letter-spacing: 2px; font-weight: 700; margin-bottom: 5px; }
        .jackpot-value { font-family: var(--font-numbers); font-size: 42px; font-weight: 900; color: var(--text-highlight); text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
        .intro-text { text-align: center; padding: 20px 0; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin: 20px 0; }
        .game-card { background: var(--card-surface); border-radius: 12px; overflow: hidden; border: 1px solid var(--border-subtle); transition: transform 0.2s; }
        .game-card img { aspect-ratio: 1/1; object-fit: cover; width: 100%; }
        .game-card-info { padding: 10px; text-align: center; }
        .game-card-info h3 { font-size: 16px; margin: 5px 0; }
        .article-section { margin: 30px 0; }
        .article-card { display: flex; background: var(--bg-secondary); border-radius: 10px; margin-bottom: 15px; overflow: hidden; gap: 15px; border: 1px solid var(--border-subtle); }
        .article-img { width: 120px; height: 120px; flex-shrink: 0; }
        .article-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; }
        .article-content { padding: 10px; display: flex; flex-direction: column; justify-content: center; }
        .article-content h3 { font-size: 16px; margin-bottom: 5px; }
        .article-content p { font-size: 13px; margin: 0; 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; text-align: center; margin: 20px 0; }
        .payment-item { background: var(--card-surface); padding: 15px 5px; border-radius: 8px; border: 1px solid var(--border-subtle); }
        .payment-item i { font-size: 24px; color: var(--gold-primary); margin-bottom: 8px; display: block; }
        .payment-item span { font-size: 11px; color: var(--text-secondary); }
        .winning-records { background: var(--bg-secondary); border-radius: 15px; padding: 15px; border: 1px solid var(--gold-dark); height: 300px; overflow-y: hidden; position: relative; }
        .winner-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border-subtle); font-size: 13px; animation: scrollUp 20s linear infinite; }
        @keyframes scrollUp { 0% { transform: translateY(0); } 100% { transform: translateY(-100%); } }
        .winner-name { color: var(--gold-light); font-weight: 600; }
        .winner-amount { color: var(--success); font-weight: 700; }
        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 20px 0; }
        .provider-item { background: linear-gradient(135deg, var(--bg-secondary), var(--card-surface)); padding: 20px; text-align: center; border-radius: 8px; font-weight: 700; color: var(--gold-primary); border: 1px solid var(--border-subtle); }
        .review-card { background: var(--card-surface); padding: 20px; border-radius: 12px; margin-bottom: 15px; border-left: 4px solid var(--gold-primary); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--text-secondary); }
        .rating { color: var(--warning); font-size: 14px; }
        .review-date { font-size: 12px; color: var(--text-muted); float: right; }
        .faq-item { background: var(--bg-secondary); border-radius: 8px; margin-bottom: 10px; padding: 15px; border: 1px solid var(--border-subtle); }
        .faq-q { color: var(--gold-primary); font-weight: 600; margin-bottom: 10px; display: block; }
        .security-section { text-align: center; padding: 30px 15px; background: var(--card-surface); border-radius: 15px; margin: 30px 0; }
        .security-icons { font-size: 40px; color: var(--gold-primary); display: flex; justify-content: center; gap: 30px; margin-bottom: 20px; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: var(--bg-secondary); display: flex; justify-content: space-around; padding: 10px 0; border-top: 2px solid var(--gold-primary); z-index: 1001; }
        .nav-item { text-align: center; color: var(--text-secondary); font-size: 12px; }
        .nav-item i { font-size: 20px; display: block; margin-bottom: 4px; }
        footer { background: var(--bg-primary); padding: 40px 15px 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 { color: var(--text-muted); font-size: 14px; }
        .footer-bottom { text-align: center; border-top: 1px solid var(--border-subtle); padding-top: 20px; color: var(--text-muted); font-size: 12px; }