:root {
            --bg-main: #0B0E11;
            --bg-surface: #1A1D23;
            --bg-overlay: #252930;
            --gold: #D4AF37;
            --gold-hover: #F1C40F;
            --green: #00C853;
            --pink: #E91E63;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B3B8;
            --text-muted: #65676B;
            --border: #30363D;
            --win-glow: #FFD700;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.5;
            overflow-x: hidden;
        }
        h1, h2, h3 {
            font-family: 'Montserrat', 'Roboto', sans-serif;
            font-weight: 700;
            color: var(--text-primary);
        }
        h1 { font-size: 2.5rem; text-align: center; margin: 20px 0; }
        h2 { font-size: 2rem; margin: 25px 0 15px; border-left: 4px solid var(--gold); padding-left: 15px; }
        h3 { font-size: 1.25rem; margin: 10px 0; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        .container { padding: 0 15px; max-width: 1200px; margin: 0 auto; }
        header {
            background-color: 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);
        }
        .logo-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-box strong { font-size: 16px; font-weight: normal; color: var(--gold); }
        .auth-buttons { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-size: 14px;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--gold); }
        .btn-register { background: var(--gold); color: #000; }
        .btn-register:hover { background: var(--gold-hover); }
        .hero-banner {
            width: 100%;
            aspect-ratio: 2 / 1;
            object-fit: cover;
            cursor: pointer;
            display: block;
        }
        .jackpot-section {
            background: radial-gradient(circle, #252930 0%, #0B0E11 100%);
            padding: 20px;
            text-align: center;
            margin: 20px 0;
            border: 2px solid var(--gold);
            border-radius: 12px;
            position: relative;
            overflow: hidden;
        }
        .jackpot-label { color: var(--gold); font-weight: 900; font-family: 'Oswald', sans-serif; font-size: 1.5rem; }
        .jackpot-amount {
            font-size: 3rem;
            color: var(--win-glow);
            font-weight: 900;
            text-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        .intro-text { text-align: center; padding: 20px 0; color: var(--text-secondary); }
        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin: 20px 0;
        }
        .game-card {
            background: var(--bg-surface);
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid var(--border);
            transition: 0.3s;
        }
        .game-card:hover { border-color: var(--gold); transform: translateY(-5px); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-info { padding: 10px; text-align: center; }
        .article-list { display: flex; flex-direction: column; gap: 20px; margin: 30px 0; }
        .article-card {
            display: flex;
            background: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            gap: 15px;
            border: 1px solid var(--border);
        }
        .article-card img { width: 120px; height: 120px; object-fit: cover; }
        .article-content { padding: 15px; }
        .article-content h3 { font-size: 1.1rem; margin-top: 0; color: var(--gold); }
        .article-content p { font-size: 0.9rem; color: var(--text-secondary); }
        .payments-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            text-align: center;
            margin: 30px 0;
        }
        .payment-item {
            background: var(--bg-surface);
            padding: 15px 5px;
            border-radius: 8px;
            border: 1px solid var(--border);
        }
        .payment-item i { font-size: 1.5rem; color: var(--gold); margin-bottom: 8px; }
        .payment-item span { display: block; font-size: 0.75rem; color: var(--text-muted); }
        .winners-box {
            background: var(--bg-surface);
            height: 250px;
            overflow: hidden;
            border-radius: 12px;
            position: relative;
            border: 1px solid var(--border);
        }
        .winners-scroll {
            display: flex;
            flex-direction: column;
            animation: scrollUp 20s linear infinite;
        }
        @keyframes scrollUp {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }
        .winner-row {
            padding: 12px 20px;
            border-bottom: 1px solid var(--border);
            display: flex;
            justify-content: space-between;
            font-size: 0.9rem;
        }
        .winner-name { color: var(--gold); }
        .winner-amount { color: var(--green); font-weight: bold; }
        .providers-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            margin: 20px 0;
        }
        .provider-block {
            background: var(--bg-overlay);
            padding: 20px;
            text-align: center;
            border-radius: 8px;
            font-weight: bold;
            color: var(--text-secondary);
        }
        .reviews-grid { display: flex; flex-direction: column; gap: 15px; margin: 30px 0; }
        .review-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 12px;
            border-left: 4px solid var(--pink);
        }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 1.5rem; color: var(--text-muted); }
        .review-stars { color: var(--gold); margin-bottom: 10px; }
        .faq-section { margin: 40px 0; }
        .faq-item {
            background: var(--bg-surface);
            margin-bottom: 10px;
            border-radius: 8px;
            padding: 20px;
        }
        .faq-item h3 { color: var(--gold); font-size: 1.1rem; margin-bottom: 10px; }
        .faq-item p { color: var(--text-secondary); font-size: 0.95rem; }
        .security-box {
            background: var(--bg-overlay);
            padding: 30px 20px;
            text-align: center;
            border-radius: 15px;
            margin: 40px 0;
        }
        .security-box i { font-size: 3rem; color: var(--green); margin-bottom: 15px; }
        .security-box p { font-size: 0.9rem; color: var(--text-secondary); margin: 10px 0; }
        .age-badge {
            display: inline-block;
            background: var(--pink);
            color: white;
            padding: 5px 15px;
            border-radius: 50px;
            font-weight: bold;
            margin-top: 10px;
        }
        footer {
            background: #000;
            padding: 40px 15px 100px;
            border-top: 1px solid var(--border);
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 30px;
        }
        .footer-links a { color: var(--text-muted); font-size: 0.85rem; }
        .footer-copy { text-align: center; color: var(--text-muted); font-size: 0.8rem; border-top: 1px solid var(--border); padding-top: 20px; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border);
            z-index: 2000;
        }
        .nav-item { text-align: center; color: var(--text-secondary); font-size: 0.75rem; }
        .nav-item i { display: block; font-size: 1.25rem; margin-bottom: 3px; color: var(--gold); }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .providers-grid { grid-template-columns: repeat(4, 1fr); }
            .article-card img { width: 200px; height: 150px; }
        }