:root {
            --primary: #FFD700;
            --primary-hover: #FFC107;
            --secondary: #B22222;
            --accent: #FF4500;
            --bg-main: #0F0F0F;
            --bg-surface: #1A1A1A;
            --bg-overlay: rgba(0, 0, 0, 0.8);
            --bg-contrast: #262626;
            --text-heading: #FFFFFF;
            --text-body: #E0E0E0;
            --text-muted: #A0A0A0;
            --text-inverse: #000000;
            --success: #4CAF50;
            --error: #F44336;
            --warning: #FF9800;
            --info: #2196F3;
            --border-light: #333333;
            --border-medium: #444444;
            --border-strong: #FFD700;
            --font-heading: 'Montserrat', sans-serif;
            --font-body: 'Roboto', sans-serif;
            --font-accent: 'Poppins', sans-serif;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { 
            background-color: var(--bg-main); 
            color: var(--text-body); 
            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;
        }
        header .brand { display: flex; align-items: center; gap: 10px; }
        header .brand img { width: 25px; height: 25px; }
        header .brand strong { font-size: 16px; font-weight: normal; color: var(--text-heading); }
        header .auth-buttons { display: flex; gap: 10px; }
        header button {
            padding: 8px 16px;
            border-radius: 5px;
            cursor: pointer;
            font-family: var(--font-accent);
            font-weight: 600;
            transition: 0.3s;
            border: none;
        }
        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-hover); }

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

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

        .jackpot-container {
            background: linear-gradient(45deg, var(--secondary), var(--accent));
            padding: 20px;
            text-align: center;
            border-radius: 15px;
            margin-bottom: 20px;
            box-shadow: 0 0 20px rgba(255, 69, 0, 0.4);
        }
        .jackpot-label { color: var(--text-heading); font-family: var(--font-accent); font-weight: bold; font-size: 18px; text-transform: uppercase; }
        .jackpot-amount { 
            color: var(--primary); 
            font-size: 36px; 
            font-weight: 800; 
            font-family: var(--font-heading); 
            margin: 10px 0;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

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

        section { margin-bottom: 40px; }
        h2 { 
            font-family: var(--font-heading); 
            color: var(--primary); 
            font-size: 24px; 
            margin-bottom: 20px; 
            text-align: center; 
            text-transform: uppercase;
            border-bottom: 1px solid var(--border-light);
            padding-bottom: 10px;
        }

        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }
        .game-card {
            background: var(--bg-surface);
            border-radius: 12px;
            text-decoration: none;
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid var(--border-light);
            overflow: hidden;
        }
        .game-card:hover { transform: translateY(-5px); box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2); 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; 
            color: var(--text-heading); 
            text-align: center; 
            font-family: var(--font-accent);
        }

        .payment-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            text-align: center;
        }
        .payment-item {
            background: var(--bg-contrast);
            padding: 15px;
            border-radius: 10px;
            font-size: 14px;
            color: var(--text-muted);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            border: 1px solid var(--border-light);
        }
        .payment-item i { color: var(--primary); font-size: 20px; }

        .guides-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 { font-size: 14px; color: var(--text-muted); }

        .lottery-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
        }
        .lottery-table th, .lottery-table td {
            padding: 12px;
            text-align: center;
            border-bottom: 1px solid var(--border-light);
        }
        .lottery-table th { background: var(--bg-contrast); color: var(--primary); font-family: var(--font-accent); }
        .lottery-table td { font-size: 14px; }
        .win-amount { color: var(--success); font-weight: bold; }

        .providers-wall {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }
        .provider-box {
            padding: 15px;
            text-align: center;
            font-weight: bold;
            border-radius: 8px;
            color: var(--text-inverse);
            font-family: var(--font-accent);
        }
        .p-gold { background: var(--primary); color: var(--text-inverse); }
        .p-red { background: var(--secondary); color: #fff; }

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

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

        .security-footer {
            background: var(--bg-surface);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid 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-heading); font-weight: 600; }
        .badge i { color: var(--success); font-size: 24px; }
        .security-text { font-size: 14px; color: var(--text-muted); margin-bottom: 15px; }
        .security-text 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(--border-strong);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            z-index: 1001;
        }
        .nav-item {
            text-decoration: none;
            color: var(--text-muted);
            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: var(--bg-surface);
            padding: 40px 20px;
            border-top: 1px solid var(--border-light);
            text-align: center;
        }
        footer .contact-row {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        footer .contact-row a { color: var(--text-body); text-decoration: none; font-size: 14px; border: 1px solid var(--border-light); padding: 5px 15px; border-radius: 20px; transition: 0.3s; }
        footer .contact-row a:hover { background: var(--primary); color: var(--text-inverse); }
        
        footer .links-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            max-width: 800px;
            margin: 0 auto 30px;
            text-align: left;
        }
        footer .links-grid a { color: var(--text-muted); text-decoration: none; font-size: 14px; display: block; padding: 5px 0; }
        footer .links-grid a:hover { color: var(--primary); }
        footer .copyright { color: var(--text-muted); font-size: 13px; border-top: 1px solid var(--border-light); padding-top: 20px; }

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