:root {
            --primary: #FFD700;
            --primary-dark: #C5A000;
            --primary-light: #FFEC8B;
            --accent: #E61C23;
            --accent-hover: #B3151A;
            --bg-main: #0F0F0F;
            --bg-surface: #1A1A1A;
            --bg-surface-light: #2A2A2A;
            --bg-overlay: rgba(0, 0, 0, 0.8);
            --text-heading: #FFFFFF;
            --text-body: #E0E0E0;
            --text-muted: #999999;
            --text-inverse: #000000;
            --text-link: #FFD700;
            --success: #4CAF50;
            --error: #F44336;
            --warning: #FF9800;
            --info: #2196F3;
            --border-default: #333333;
            --border-highlight: #FFD700;
            --border-subtle: #222222;
            --font-primary: 'Montserrat', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            --font-secondary: 'Open Sans', sans-serif;
            --font-accent: 'Playfair Display', serif;
        }

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

        header {
            background-color: var(--bg-surface);
            border-bottom: 2px solid var(--primary);
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        header .logo-area { display: flex; align-items: center; gap: 10px; }
        header img { width: 25px; height: 25px; object-fit: contain; }
        header strong { font-size: 16px; font-weight: normal; color: var(--text-heading); }
        header .auth-buttons { display: flex; gap: 10px; }
        .btn-auth { 
            padding: 8px 16px; 
            border-radius: 5px; 
            cursor: pointer; 
            font-weight: 600; 
            transition: 0.3s; 
            border: none; 
            font-family: var(--font-primary);
        }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-login:hover { background: var(--primary); color: var(--text-inverse); }
        .btn-register { background: var(--accent); color: white; }
        .btn-register:hover { background: var(--accent-hover); }

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

        .jackpot-section {
            background: linear-gradient(145deg, #1a1a1a, #000);
            border: 2px solid var(--primary);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
        }
        .jackpot-title { color: var(--primary); font-size: 20px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { 
            font-family: var(--font-accent); 
            font-size: 48px; 
            font-weight: bold; 
            color: #fff; 
            text-shadow: 0 0 10px var(--primary);
        }

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

        h2 { color: var(--primary); font-size: 28px; margin: 40px 0 20px; text-align: center; text-transform: uppercase; }
        
        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }
        .game-card {
            background: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            transition: transform 0.3s, border 0.3s;
            border: 1px solid var(--border-default);
            display: block;
        }
        .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: 15px; 
            color: var(--text-heading); 
            font-size: 16px; 
            text-align: center; 
            font-weight: 500; 
        }

        .payment-methods {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            margin-bottom: 40px;
        }
        .payment-item {
            background: var(--bg-surface-light);
            padding: 15px;
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 10px;
            color: var(--text-heading);
            font-size: 14px;
            border: 1px solid var(--border-subtle);
        }
        .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-bottom: 40px;
        }
        .guide-item {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 12px;
            border: 1px solid var(--border-default);
        }
        .guide-item h3 { color: var(--primary); margin-bottom: 10px; font-size: 18px; }
        .guide-item p { font-size: 14px; color: var(--text-muted); }

        .lottery-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 40px;
        }
        .lottery-table th, .lottery-table td { 
            padding: 15px; 
            text-align: left; 
            border-bottom: 1px solid var(--border-subtle); 
        }
        .lottery-table th { background: var(--bg-surface-light); color: var(--primary); }
        .lottery-table tr:hover { background: rgba(255,215,0,0.05); }

        .provider-wall {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-bottom: 40px;
        }
        .provider-box {
            padding: 15px;
            background: var(--bg-surface-light);
            color: var(--text-heading);
            font-weight: bold;
            text-align: center;
            border-radius: 8px;
            border-left: 4px solid var(--primary);
        }

        .comment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        .comment-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 12px;
            border: 1px solid var(--border-default);
        }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-header i { font-size: 30px; color: var(--primary); }
        .comment-name { font-weight: bold; color: var(--text-heading); }
        .comment-stars { color: var(--primary); margin: 5px 0; font-size: 14px; }
        .comment-text { font-size: 14px; color: var(--text-body); margin-bottom: 10px; }
        .comment-date { font-size: 12px; color: var(--text-muted); }

        .faq-section {
            display: grid;
            gap: 15px;
            margin-bottom: 40px;
        }
        .faq-item {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 12px;
            border: 1px solid var(--border-default);
        }
        .faq-item h3 { color: var(--primary); font-size: 17px; margin-bottom: 10px; }
        .faq-item p { font-size: 14px; color: var(--text-body); }

        .security-footer {
            background: var(--bg-surface-light);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            margin-bottom: 40px;
            border: 1px dashed var(--primary);
        }
        .security-footer .badge { display: flex; justify-content: center; gap: 30px; margin-bottom: 20px; font-size: 20px; color: var(--primary); }
        .security-footer p { font-size: 14px; color: var(--text-muted); margin-bottom: 10px; }
        .security-footer a { color: var(--primary); text-decoration: none; }

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

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

        @media (max-width: 768px) {
            .payment-methods { grid-template-columns: repeat(2, 1fr); }
            .footer-cols { grid-template-columns: repeat(2, 1fr); }
            .provider-wall { grid-template-columns: 1fr; }
            .jackpot-amount { font-size: 32px; }
        }