:root {
            --primary: #FFD700;
            --primary-variant: #C5A000;
            --secondary: #B22222;
            --accent: #FF4500;
            --bg-main: #0F0F0F;
            --bg-surface: #1A1A1A;
            --bg-overlay: rgba(0, 0, 0, 0.85);
            --bg-card: #242424;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-muted: #757575;
            --text-inverse: #000000;
            --success: #00C853;
            --warning: #FFAB00;
            --error: #FF1744;
            --info: #2979FF;
            --border-subtle: #333333;
            --border-medium: #4D4D4D;
            --border-strong: #FFD700;
            --font-heading: 'Montserrat', 'Segoe UI', Roboto, Arial, sans-serif;
            --font-body: 'Roboto', 'Segoe UI', Arial, sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { 
            background-color: var(--bg-main); 
            color: var(--text-primary); 
            font-family: var(--font-body); 
            line-height: 1.5; 
            overflow-x: hidden;
        }
        h1, h2, h3 { font-family: var(--font-heading); line-height: 1.2; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul { list-style: none; }
        
        header {
            background-color: var(--bg-surface);
            border-bottom: 2px solid var(--border-strong);
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        header .brand { display: flex; align-items: center; gap: 10px; }
        header .brand img { width: 25px; height: 25px; object-fit: cover; }
        header .brand strong { font-size: 16px; font-weight: normal; color: var(--primary); }
        header .auth-buttons { display: flex; gap: 10px; }
        header .btn { 
            padding: 8px 16px; 
            border-radius: 5px; 
            cursor: pointer; 
            font-weight: 600; 
            font-size: 14px; 
            border: none; 
            transition: 0.3s;
        }
        header .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        header .btn-login:hover { background: var(--primary); color: var(--text-inverse); }
        header .btn-register { background: var(--primary); color: var(--text-inverse); }
        header .btn-register:hover { background: var(--primary-variant); }

        main { max-width: 1200px; margin: 0 auto; padding: 20px; }
        
        .hero-banner { 
            width: 100%; 
            aspect-ratio: 2/1; 
            cursor: pointer; 
            border-radius: 15px; 
            overflow: hidden; 
            border: 2px solid var(--border-medium);
            margin-bottom: 20px;
        }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-container {
            background: linear-gradient(145deg, var(--bg-card), var(--bg-surface));
            border: 2px solid var(--primary);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin-bottom: 30px;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }
        .jackpot-label { font-size: 18px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { 
            font-family: 'JetBrains Mono', monospace; 
            font-size: 40px; 
            font-weight: 900; 
            color: var(--primary); 
            margin: 10px 0;
            text-shadow: 0 0 10px var(--primary);
        }

        .intro-card {
            background: var(--bg-card);
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 40px;
            border-left: 5px solid var(--primary);
        }
        .intro-card h1 { font-size: 30px; color: var(--primary); margin-bottom: 15px; }
        .intro-card p { color: var(--text-secondary); font-size: 16px; }

        .section-title { 
            font-size: 24px; 
            color: var(--primary); 
            margin-bottom: 20px; 
            display: flex; 
            align-items: center; 
            gap: 10px;
            border-bottom: 1px solid var(--border-medium);
            padding-bottom: 10px;
        }

        .game-grid { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); 
            gap: 15px; 
            margin-bottom: 40px; 
        }
        .game-card { 
            background: var(--bg-surface); 
            border-radius: 12px; 
            overflow: hidden; 
            border: 1px solid var(--border-subtle); 
            transition: 0.3s;
        }
        .game-card:hover { transform: translateY(-5px); border-color: var(--primary); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { padding: 12px; font-size: 16px; text-align: center; color: var(--text-primary); }

        .payment-licenses {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin-bottom: 40px;
        }
        .pay-item {
            background: var(--bg-card);
            padding: 15px;
            text-align: center;
            border-radius: 10px;
            font-size: 13px;
            color: var(--text-secondary);
            border: 1px solid var(--border-subtle);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }
        .pay-item i { color: var(--primary); font-size: 20px; }

        .guide-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        .guide-item {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 12px;
            border: 1px solid var(--border-subtle);
        }
        .guide-item h3 { color: var(--primary); margin-bottom: 10px; font-size: 18px; }
        .guide-item p { color: var(--text-secondary); font-size: 14px; }

        .lottery-list {
            background: var(--bg-surface);
            border-radius: 15px;
            padding: 20px;
            margin-bottom: 40px;
        }
        .lottery-item {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr 1fr;
            padding: 12px 0;
            border-bottom: 1px solid var(--border-subtle);
            font-size: 14px;
        }
        .lottery-item:last-child { border-bottom: none; }
        .lottery-header { font-weight: bold; color: var(--primary); }
        .win-amount { color: var(--success); font-weight: bold; }

        .provider-wall {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-bottom: 40px;
        }
        .provider-box {
            background: linear-gradient(45deg, var(--bg-card), var(--bg-surface));
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            font-weight: bold;
            border: 1px solid var(--border-medium);
        }
        .provider-box:nth-child(odd) { color: var(--primary); }
        .provider-box:nth-child(even) { color: var(--accent); }

        .review-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        .review-card {
            background: var(--bg-card);
            padding: 20px;
            border-radius: 15px;
            position: relative;
        }
        .review-user { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-user i { font-size: 30px; color: var(--primary); }
        .review-user span { font-weight: bold; }
        .review-stars { color: var(--primary); margin-bottom: 10px; }
        .review-content { font-size: 14px; color: var(--text-secondary); margin-bottom: 10px; }
        .review-date { font-size: 12px; color: var(--text-muted); }

        .faq-container { margin-bottom: 40px; }
        .faq-item {
            background: var(--bg-surface);
            margin-bottom: 10px;
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid var(--border-subtle);
        }
        .faq-question { 
            padding: 15px 20px; 
            background: var(--bg-card); 
            cursor: pointer; 
            font-weight: 600; 
            color: var(--primary);
            display: flex;
            justify-content: space-between;
        }
        .faq-answer { padding: 15px 20px; color: var(--text-secondary); font-size: 14px; line-height: 1.6; }

        .security-footer {
            background: var(--bg-card);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            margin-bottom: 40px;
            border: 1px dashed var(--border-medium);
        }
        .security-badges {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }
        .badge { display: flex; align-items: center; gap: 10px; color: var(--text-secondary); font-size: 14px; }
        .badge i { color: var(--success); font-size: 20px; }
        .security-footer p { font-size: 14px; color: var(--text-muted); margin-bottom: 10px; }
        .security-footer a { color: var(--primary); text-decoration: underline; }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-surface);
            border-top: 2px solid var(--primary);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            z-index: 2000;
            box-shadow: 0 -5px 15px rgba(0,0,0,0.5);
        }
        .nav-item { 
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            font-size: 12px; 
            color: var(--text-secondary); 
            gap: 5px;
            flex: 1;
        }
        .nav-item i { font-size: 20px; color: var(--primary); }
        .nav-item:hover { color: var(--primary); }

        footer {
            background-color: var(--bg-surface);
            padding: 40px 20px;
            border-top: 1px solid var(--border-medium);
            margin-bottom: 80px;
        }
        footer .contact-row {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        footer .contact-row a { color: var(--primary); font-size: 14px; }
        footer .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            max-width: 1000px;
            margin: 0 auto 30px;
            text-align: center;
        }
        footer .footer-links a { font-size: 14px; color: var(--text-secondary); }
        footer .footer-links a:hover { color: var(--primary); }
        footer .copyright {
            text-align: center;
            font-size: 13px;
            color: var(--text-muted);
            border-top: 1px solid var(--border-subtle);
            padding-top: 20px;
        }

        @media (max-width: 768px) {
            .payment-licenses { grid-template-columns: repeat(2, 1fr); }
            .footer-links { grid-template-columns: repeat(2, 1fr); }
            .lottery-item { grid-template-columns: 1fr 1fr; gap: 10px; }
            .lottery-header { display: none; }
            .provider-wall { grid-template-columns: 1fr; }
        }