:root {
            --primary: #FFD700;
            --primary-dark: #B8860B;
            --secondary: #C0C0C0;
            --accent: #FF4500;
            --bg-main: #0F0F0F;
            --bg-surface: #1A1A1A;
            --bg-overlay: rgba(0, 0, 0, 0.8);
            --grad-start: #1a1a1a;
            --grad-end: #000000;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-muted: #666666;
            --text-inverse: #000000;
            --success: #00C853;
            --warning: #FFB300;
            --error: #FF5252;
            --info: #2196F3;
            --border-light: #333333;
            --border-medium: #444444;
            --border-strong: #FFD700;
            --font-primary: 'Montserrat', sans-serif;
            --font-secondary: 'Roboto', sans-serif;
            --font-accent: 'Playfair Display', serif;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { 
            background-color: var(--bg-main); 
            color: var(--text-primary); 
            font-family: var(--font-secondary); 
            line-height: 1.5; 
            overflow-x: hidden;
        }

        header {
            background: linear-gradient(to bottom, var(--bg-surface), var(--bg-main));
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-light);
        }

        header .brand { display: flex; align-items: center; gap: 10px; }
        header .brand img { width: 25px; height: 25px; object-fit: contain; }
        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-family: var(--font-primary); 
            font-weight: 600; 
            text-decoration: none; 
            transition: 0.3s; 
            border: none; 
            font-size: 14px;
        }
        header .btn-login { background: transparent; color: var(--text-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-dark); }

        main { max-width: 1200px; margin: 0 auto; padding: 0 15px 80px; }

        .hero-banner { 
            width: 100%; 
            aspect-ratio: 2/1; 
            cursor: pointer; 
            border-radius: 15px; 
            overflow: hidden; 
            margin: 20px 0;
            border: 2px solid var(--border-medium);
        }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
        .hero-banner:hover img { transform: scale(1.05); }

        .jackpot-container {
            background: linear-gradient(45deg, #B8860B, #FFD700);
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            margin-bottom: 30px;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
            color: var(--text-inverse);
        }
        .jackpot-label { font-family: var(--font-primary); font-weight: bold; font-size: 18px; text-transform: uppercase; }
        .jackpot-value { font-family: var(--font-accent); font-size: 36px; font-weight: bold; margin: 10px 0; }

        .intro-card {
            background: var(--bg-surface);
            padding: 30px;
            border-radius: 20px;
            border-left: 5px solid var(--primary);
            margin-bottom: 40px;
            text-align: center;
        }
        .intro-card h1 { 
            font-family: var(--font-accent); 
            font-size: 28px; 
            color: var(--primary); 
            margin-bottom: 15px;
            line-height: 1.2;
        }
        .intro-card p { color: var(--text-secondary); font-size: 16px; max-width: 800px; margin: 0 auto; }

        .section-title { 
            font-family: var(--font-primary); 
            font-size: 24px; 
            text-align: center; 
            margin: 40px 0 25px; 
            color: var(--primary);
            position: relative;
        }
        .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: var(--accent);
            margin: 10px auto;
        }

        .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;
            text-decoration: none;
            transition: 0.3s;
            border: 1px solid var(--border-light);
        }
        .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); 
            font-family: var(--font-primary);
        }

        .payment-licenses {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 15px;
            background: var(--bg-surface);
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid var(--border-light);
        }
        .payment-item { 
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            gap: 8px; 
            color: var(--secondary);
            font-size: 13px;
        }
        .payment-item i { font-size: 24px; color: var(--primary); }

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

        .lottery-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--bg-surface);
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 40px;
        }
        .lottery-table th { background: var(--primary-dark); color: var(--text-inverse); padding: 15px; text-align: left; }
        .lottery-table td { padding: 12px 15px; border-bottom: 1px solid var(--border-light); font-size: 14px; }
        .win-amount { color: var(--success); font-weight: bold; }

        .provider-wall {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            margin-bottom: 40px;
        }
        .provider-box {
            padding: 15px;
            text-align: center;
            font-weight: bold;
            border-radius: 8px;
            color: var(--text-inverse);
            font-family: var(--font-primary);
        }
        .p-1 { background: #e74c3c; } .p-2 { background: #3498db; }
        .p-3 { background: #2ecc71; } .p-4 { background: #f1c40f; }
        .p-5 { background: #9b59b6; } .p-6 { background: #e67e22; }
        .p-7 { background: #1abc9c; } .p-8 { background: #34495e; }

        .review-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        .review-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 15px;
            border: 1px solid var(--border-light);
        }
        .review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--primary); }
        .review-name { font-weight: bold; color: var(--text-primary); }
        .review-stars { color: var(--warning); font-size: 12px; margin-bottom: 10px; }
        .review-text { color: var(--text-secondary); font-size: 14px; font-style: italic; }
        .review-date { display: block; margin-top: 10px; font-size: 12px; color: var(--text-muted); text-align: right; }

        .faq-section { margin-bottom: 40px; }
        .faq-item {
            background: var(--bg-surface);
            margin-bottom: 10px;
            border-radius: 10px;
            border: 1px solid var(--border-light);
            padding: 20px;
        }
        .faq-item h3 { color: var(--primary); font-size: 18px; margin-bottom: 10px; }
        .faq-item p { color: var(--text-secondary); font-size: 14px; }

        .security-footer {
            background: var(--bg-surface);
            padding: 30px;
            border-radius: 20px;
            text-align: center;
            border: 1px solid var(--border-light);
            margin-bottom: 40px;
        }
        .security-badges { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; margin-bottom: 20px; }
        .badge-item { display: flex; align-items: center; gap: 8px; color: var(--secondary); font-size: 14px; }
        .badge-item i { color: var(--success); }
        .security-text { font-size: 14px; color: var(--text-secondary); margin-bottom: 15px; }
        .security-link { color: var(--primary); text-decoration: none; font-weight: bold; }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            align-items: center;
            padding: 10px 0;
            border-top: 2px solid var(--primary);
            z-index: 2000;
        }
        .nav-item { 
            text-decoration: none; 
            color: var(--text-secondary); 
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            font-size: 11px; 
            gap: 5px;
            flex: 1;
        }
        .nav-item i { font-size: 20px; }
        .nav-item:hover { color: var(--primary); }

        footer {
            background: var(--bg-surface);
            padding: 40px 20px;
            border-top: 1px solid var(--border-light);
            text-align: center;
        }
        .footer-contact {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        .footer-contact a { color: var(--secondary); text-decoration: none; font-size: 14px; transition: 0.3s; }
        .footer-contact a:hover { color: var(--primary); }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            max-width: 800px;
            margin: 0 auto 30px;
            text-align: center;
        }
        .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 13px; }
        .footer-links a:hover { color: var(--primary); }
        .copyright { color: var(--text-muted); font-size: 12px; border-top: 1px solid var(--border-light); padding-top: 20px; }

        @media (max-width: 768px) {
            .footer-links { grid-template-columns: repeat(2, 1fr); }
            .hero-banner { aspect-ratio: 1/1; }
        }