:root {
            --bg-primary: #0A0C10;
            --bg-secondary: #161B22;
            --surface: #21262D;
            --primary-gold: #D4AF37;
            --secondary-gold: #F9E076;
            --accent-red: #E63946;
            --text-primary: #FFFFFF;
            --text-secondary: #8B949E;
            --border-default: #30363D;
            --win-color: #FFD700;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: 'Inter', 'Roboto', 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; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--bg-secondary);
            border-bottom: 1px solid var(--border-default);
            height: 60px;
            display: flex;
            align-items: center;
        }
        .nav-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }
        .logo-area { display: flex; align-items: center; gap: 8px; }
        .logo-area img { width: 25px; height: 25px; }
        .logo-area strong { font-size: 16px; font-weight: 400; color: var(--primary-gold); }
        .auth-btns { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            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(--border-default); }
        .btn-register { background: var(--primary-gold); color: var(--bg-primary); }
        .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: var(--surface);
            margin: 20px 0;
            padding: 20px;
            text-align: center;
            border-radius: 12px;
            border: 2px solid var(--primary-gold);
        }
        .jackpot-label { color: var(--secondary-gold); font-weight: 800; font-size: 20px; margin-bottom: 10px; text-transform: uppercase; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: var(--win-color); font-family: 'JetBrains Mono', monospace; }
        .intro-section { padding: 30px 0; text-align: center; }
        .intro-section h1 { font-size: 24px; color: var(--primary-gold); margin-bottom: 15px; }
        .intro-section p { color: var(--text-secondary); font-size: 14px; }
        .section-title { font-size: 20px; margin: 25px 0 15px; padding-left: 10px; border-left: 4px solid var(--primary-gold); }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
        .game-card {
            background: var(--bg-secondary);
            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; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .article-list { display: flex; flex-direction: column; gap: 15px; margin-top: 20px; }
        .article-card {
            display: flex;
            background: var(--bg-secondary);
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid var(--border-default);
        }
        .article-card img { width: 100px; height: 100px; object-fit: cover; }
        .article-content { padding: 12px; }
        .article-content h3 { font-size: 14px; margin-bottom: 5px; color: var(--secondary-gold); }
        .article-content p { font-size: 12px; color: var(--text-secondary); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .payments-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 20px 0; }
        .payment-item {
            background: var(--surface);
            padding: 15px 5px;
            border-radius: 8px;
            text-align: center;
            font-size: 12px;
        }
        .payment-item i { font-size: 20px; display: block; margin-bottom: 5px; color: var(--primary-gold); }
        .winning-list { background: var(--bg-secondary); border-radius: 12px; padding: 15px; }
        .win-row {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid var(--border-default);
            font-size: 13px;
        }
        .win-row:last-child { border-bottom: none; }
        .win-user { color: var(--text-secondary); }
        .win-amount { color: var(--win-color); font-weight: 700; }
        .providers-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin: 20px 0; }
        .provider-block {
            background: linear-gradient(135deg, #161B22 0%, #21262D 100%);
            padding: 20px;
            text-align: center;
            border-radius: 8px;
            font-weight: 700;
            color: var(--text-secondary);
            border: 1px solid var(--border-default);
        }
        .reviews-grid { display: flex; flex-direction: column; gap: 15px; }
        .review-card { background: var(--surface); padding: 15px; border-radius: 12px; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 10px; }
        .user-meta { display: flex; align-items: center; gap: 8px; font-size: 14px; }
        .stars { color: var(--win-color); font-size: 12px; }
        .review-text { font-size: 13px; color: var(--text-secondary); font-style: italic; }
        .faq-section { margin-top: 30px; }
        .faq-item { background: var(--bg-secondary); margin-bottom: 10px; border-radius: 8px; border: 1px solid var(--border-default); }
        .faq-question { padding: 15px; font-weight: 600; font-size: 15px; cursor: pointer; color: var(--secondary-gold); }
        .faq-answer { padding: 0 15px 15px; font-size: 14px; color: var(--text-secondary); }
        .security-section {
            background: var(--surface);
            padding: 25px 15px;
            margin-top: 30px;
            border-radius: 12px;
            text-align: center;
        }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--primary-gold); }
        .security-text { font-size: 13px; color: var(--text-secondary); margin-bottom: 10px; }
        .age-limit { display: inline-block; border: 2px solid var(--accent-red); color: var(--accent-red); border-radius: 50%; width: 35px; height: 35px; line-height: 31px; font-weight: 800; font-size: 14px; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 60px;
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-default);
            display: flex;
            justify-content: space-around;
            align-items: center;
            z-index: 1000;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; font-size: 12px; color: var(--text-secondary); }
        .nav-item i { font-size: 18px; margin-bottom: 4px; }
        .nav-item.active { color: var(--primary-gold); }
        footer { background: var(--bg-primary); padding: 40px 15px 100px; border-top: 1px solid var(--border-default); }
        .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-muted); border-top: 1px solid var(--border-default); padding-top: 20px; }