:root {
            --primary: #FFD700;
            --primary-hover: #FFB800;
            --secondary: #C0C0C0;
            --accent: #FF0000;
            --bg-main: #0B0D17;
            --bg-surface: #161B2D;
            --bg-overlay: rgba(0, 0, 0, 0.8);
            --grad-start: #1A1F35;
            --grad-end: #0B0D17;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B3B8;
            --text-muted: #6B7280;
            --text-inverse: #0B0D17;
            --success: #00C853;
            --warning: #FFAB00;
            --error: #FF5252;
            --info: #2196F3;
            --border-default: #2D344D;
            --border-highlight: #FFD700;
            --border-subtle: #1F2937;
            --font-primary: 'Montserrat', sans-serif;
            --font-secondary: 'Roboto', sans-serif;
            --font-heading: 'Poppins', sans-serif;
        }

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

        header {
            background: var(--bg-surface);
            border-bottom: 2px solid var(--border-highlight);
            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; text-decoration: none; color: inherit; }
        header .brand img { width: 25px; height: 25px; }
        header .brand strong { font-size: 16px; font-weight: normal; }
        header .auth-btns { display: flex; gap: 10px; }
        header .btn { 
            padding: 8px 16px; 
            border-radius: 6px; 
            cursor: pointer; 
            font-family: var(--font-primary); 
            font-weight: 600; 
            transition: 0.3s; 
            border: none; 
            text-decoration: none;
        }
        header .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-highlight); }
        header .btn-login:hover { background: var(--border-highlight); color: var(--text-inverse); }
        header .btn-reg { background: var(--primary); color: var(--text-inverse); }
        header .btn-reg:hover { background: var(--primary-hover); }

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

        .jackpot-container {
            background: linear-gradient(45deg, #B8860B, #FFD700);
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            margin-bottom: 25px;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
            color: var(--text-inverse);
        }
        .jackpot-title { font-family: var(--font-heading); font-weight: 700; font-size: 20px; text-transform: uppercase; }
        .jackpot-amount { 
            font-family: 'Courier New', monospace; 
            font-size: 36px; 
            font-weight: 800; 
            margin: 10px 0; 
            display: block;
        }

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

        section { margin-bottom: 40px; }
        section h2 { 
            font-family: var(--font-heading); 
            font-size: 24px; 
            margin-bottom: 20px; 
            text-align: center; 
            color: var(--primary);
            position: relative;
            padding-bottom: 10px;
        }
        section h2::after { 
            content: ''; 
            position: absolute; 
            bottom: 0; 
            left: 50%; 
            transform: translateX(-50%); 
            width: 60px; 
            height: 3px; 
            background: var(--primary); 
        }

        .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; 
            color: inherit; 
            transition: 0.3s; 
            border: 1px solid var(--border-default);
        }
        .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; 
            font-family: var(--font-secondary);
        }

        .payment-methods { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); 
            gap: 15px; 
            text-align: center; 
        }
        .payment-item { 
            background: var(--bg-surface); 
            padding: 15px; 
            border-radius: 10px; 
            border: 1px solid var(--border-subtle);
            color: var(--text-secondary);
            font-size: 14px;
        }
        .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-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 { color: var(--text-secondary); font-size: 14px; }

        .lottery-table { 
            width: 100%; 
            border-collapse: collapse; 
            background: var(--bg-surface); 
            border-radius: 10px; 
            overflow: hidden; 
        }
        .lottery-table th, .lottery-table td { 
            padding: 12px; 
            text-align: left; 
            border-bottom: 1px solid var(--border-default); 
        }
        .lottery-table th { background: var(--grad-start); color: var(--primary); }
        .lottery-table tr:last-child td { border-bottom: none; }
        .win-amount { color: var(--success); font-weight: bold; }

        .provider-wall { 
            display: grid; 
            grid-template-columns: 1fr 1fr; 
            gap: 10px; 
        }
        .provider-box { 
            padding: 15px; 
            border-radius: 8px; 
            font-weight: bold; 
            text-align: center; 
            color: var(--text-inverse);
        }
        .provider-box:nth-child(odd) { background: var(--primary); }
        .provider-box:nth-child(even) { background: var(--secondary); }

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

        .faq-section { max-width: 800px; margin: 0 auto; }
        .faq-item { 
            background: var(--bg-surface); 
            margin-bottom: 15px; 
            border-radius: 10px; 
            border: 1px solid var(--border-default); 
            overflow: hidden; 
        }
        .faq-question { 
            padding: 15px 20px; 
            cursor: pointer; 
            font-weight: 600; 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
            background: #1C223A;
        }
        .faq-answer { padding: 15px 20px; color: var(--text-secondary); font-size: 14px; line-height: 1.6; }

        .security-footer { 
            text-align: center; 
            padding: 30px; 
            background: var(--bg-surface); 
            border-radius: 20px; 
            border: 1px solid var(--border-default);
        }
        .security-icons { display: flex; justify-content: center; gap: 30px; margin-bottom: 20px; flex-wrap: wrap; }
        .sec-item { color: var(--text-secondary); font-size: 14px; display: flex; align-items: center; gap: 8px; }
        .sec-item i { color: var(--success); }
        .age-limit { font-weight: bold; color: var(--accent); margin: 15px 0; }
        .support-link { color: var(--primary); text-decoration: underline; font-size: 14px; }

        .navigator { 
            position: fixed; 
            bottom: 20px; 
            left: 50%; 
            transform: translateX(-50%); 
            background: var(--bg-surface); 
            display: flex; 
            gap: 10px; 
            padding: 10px 20px; 
            border-radius: 50px; 
            border: 1px solid var(--primary); 
            box-shadow: 0 10px 30px rgba(0,0,0,0.5); 
            z-index: 2000; 
            width: fit-content; 
            max-width: 95vw; 
            overflow-x: auto;
        }
        .nav-item { 
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            text-decoration: none; 
            color: var(--text-secondary); 
            font-size: 11px; 
            min-width: 60px; 
            transition: 0.3s;
        }
        .nav-item i { font-size: 20px; margin-bottom: 4px; }
        .nav-item:hover { color: var(--primary); }

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

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