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

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { 
            background-color: var(--bg-main); 
            background: linear-gradient(to bottom, var(--grad-start), var(--grad-end));
            color: var(--text-primary); 
            font-family: var(--font-body); 
            line-height: 1.5; 
            overflow-x: hidden;
            padding-bottom: 80px;
        }

        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;
            box-shadow: 0 4px 10px rgba(0,0,0,0.5);
        }
        header .logo-area { display: flex; align-items: center; gap: 10px; }
        header .logo-area img { width: 25px; height: 25px; }
        header .logo-area strong { font-size: 16px; font-weight: normal; color: var(--primary); }
        header .auth-btns { display: flex; gap: 10px; }
        header .btn { 
            padding: 8px 16px; 
            border-radius: 5px; 
            cursor: pointer; 
            font-weight: 600; 
            border: none; 
            transition: 0.3s; 
            font-family: var(--font-heading);
        }
        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-reg { background: var(--primary); color: var(--text-inverse); }
        header .btn-reg:hover { background: var(--primary-dark); }

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

        .jackpot-box {
            background: linear-gradient(45deg, #B8860B, #FFD700);
            color: #000;
            text-align: center;
            padding: 20px;
            margin: 20px 0;
            border-radius: 15px;
            font-family: var(--font-heading);
            box-shadow: 0 0 15px var(--primary);
        }
        .jackpot-box h2 { font-size: 20px; text-transform: uppercase; margin-bottom: 10px; }
        .jackpot-amount { 
            font-size: 36px; 
            font-weight: 800; 
            font-family: 'JetBrains Mono', monospace;
            animation: pulse 2s infinite;
        }
        @keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.05); } 100% { transform: scale(1); } }

        .intro-card {
            background: var(--bg-surface);
            border-left: 5px solid var(--primary);
            padding: 25px;
            border-radius: 0 15px 15px 0;
            margin-bottom: 30px;
        }
        .intro-card h1 { 
            font-family: var(--font-heading); 
            color: var(--primary); 
            font-size: 28px; 
            margin-bottom: 15px; 
            line-height: 1.2;
        }
        .intro-card p { color: var(--text-secondary); font-size: 16px; }

        .section-title { 
            font-family: var(--font-heading); 
            color: var(--primary); 
            margin: 40px 0 20px; 
            text-align: center; 
            font-size: 24px; 
            text-transform: uppercase;
        }

        .game-grid { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); 
            gap: 15px; 
        }
        .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; }
        .game-card h3 { 
            padding: 12px; 
            font-size: 16px; 
            text-align: center; 
            color: var(--text-primary); 
            font-family: var(--font-heading);
        }

        .payment-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin: 30px 0;
        }
        .payment-item {
            background: var(--bg-surface);
            padding: 15px;
            text-align: center;
            border-radius: 10px;
            font-size: 14px;
            border: 1px solid var(--border-medium);
            color: var(--text-secondary);
        }
        .payment-item i { display: block; font-size: 24px; color: var(--primary); margin-bottom: 8px; }

        .guide-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }
        .guide-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 12px;
            border: 1px solid var(--border-light);
        }
        .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: 12px;
            overflow: hidden;
            margin: 20px 0;
        }
        .lottery-table th, .lottery-table td {
            padding: 12px;
            text-align: left;
            border-bottom: 1px solid var(--border-light);
            font-size: 14px;
        }
        .lottery-table th { background: var(--border-medium); color: var(--primary); }
        .lottery-table td:nth-child(3) { color: var(--success); font-weight: bold; }

        .provider-wall {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            margin: 30px 0;
        }
        .provider-box {
            padding: 15px;
            text-align: center;
            font-weight: bold;
            border-radius: 8px;
            font-family: var(--font-heading);
        }
        .provider-box:nth-child(odd) { background: var(--primary-dark); color: #000; }
        .provider-box:nth-child(even) { background: var(--border-medium); color: var(--primary); }

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

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

        .security-box {
            text-align: center;
            padding: 30px;
            background: var(--bg-surface);
            border-radius: 15px;
            border: 1px dashed var(--primary);
            margin-top: 40px;
        }
        .security-box i { font-size: 40px; color: var(--success); margin-bottom: 15px; }
        .security-box p { margin-bottom: 10px; color: var(--text-secondary); }
        .security-box a { color: var(--primary); text-decoration: none; font-weight: bold; }

        .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;
        }
        .nav-item {
            text-decoration: none;
            color: var(--text-secondary);
            text-align: center;
            font-size: 12px;
            transition: 0.3s;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .nav-item i { font-size: 20px; margin-bottom: 4px; }
        .nav-item:hover { color: var(--primary); }

        footer {
            background: var(--bg-surface);
            padding: 40px 20px;
            border-top: 1px solid var(--border-medium);
            text-align: center;
            font-size: 14px;
        }
        .footer-contact { margin-bottom: 30px; }
        .footer-contact p { color: var(--primary); margin-bottom: 15px; font-family: var(--font-heading); }
        .footer-contact a { color: var(--text-secondary); margin: 0 10px; text-decoration: none; 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; transition: 0.3s; }
        .footer-links a:hover { color: var(--primary); }
        .copyright { color: var(--text-muted); border-top: 1px solid var(--border-light); padding-top: 20px; }

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