:root {
            --primary: #FFD700;
            --primary-variant: #B8860B;
            --secondary: #C0C0C0;
            --accent: #FF4500;
            --bg-main: #0B0B0B;
            --bg-surface: #1A1A1A;
            --bg-overlay: rgba(0, 0, 0, 0.8);
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-muted: #666666;
            --text-inverse: #000000;
            --success: #00C853;
            --warning: #FFAB00;
            --error: #FF1744;
            --info: #2979FF;
            --border-light: #333333;
            --border-medium: #444444;
            --border-strong: #FFD700;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            background-image: linear-gradient(to bottom, var(--bg-surface), var(--bg-main));
            color: var(--text-primary);
            font-family: 'Roboto', sans-serif;
            line-height: 1.5;
            overflow-x: hidden;
        }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul { list-style: none; }
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 20px;
            background: var(--bg-surface);
            border-bottom: 2px solid var(--border-strong);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        header .logo-section { 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(--primary); }
        header .auth-buttons { display: flex; gap: 10px; }
        .btn-auth {
            padding: 8px 16px;
            border-radius: 5px;
            font-family: 'Oswald', sans-serif;
            cursor: pointer;
            font-weight: 600;
            text-transform: uppercase;
            border: none;
            transition: 0.3s;
        }
        .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(--primary); color: var(--text-inverse); }
        .btn-register:hover { background: var(--primary-variant); color: #fff; }
        main { max-width: 1200px; margin: 0 auto; padding: 20px; padding-bottom: 80px; }
        .banner-container { width: 100%; aspect-ratio: 2/1; overflow: hidden; border-radius: 15px; cursor: pointer; margin-bottom: 20px; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section {
            background: linear-gradient(45deg, #000, #222);
            border: 2px solid var(--primary);
            border-radius: 15px;
            text-align: center;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
        }
        .jackpot-title { font-family: 'Oswald', sans-serif; color: var(--primary); font-size: 20px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount {
            font-size: 36px;
            font-weight: bold;
            color: #fff;
            margin: 10px 0;
            font-family: 'Oswald', sans-serif;
            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: 30px;
            text-align: center;
        }
        .intro-card h1 { font-size: 28px; color: var(--primary); margin-bottom: 15px; }
        .intro-card p { color: var(--text-secondary); font-size: 16px; }
        .section-title {
            font-size: 24px;
            text-align: center;
            margin: 40px 0 20px;
            color: var(--primary);
            position: relative;
            padding-bottom: 10px;
        }
        .section-title::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;
            margin-bottom: 30px;
        }
        .game-card {
            background: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-light);
            transition: 0.3s;
            text-align: center;
        }
        .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; color: #fff; }
        .payment-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 15px;
            margin: 30px 0;
        }
        .payment-item {
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            border: 1px solid var(--border-medium);
            color: var(--text-secondary);
            font-weight: 500;
        }
        .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;
            margin-bottom: 40px;
        }
        .guide-item {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 12px;
            border: 1px solid var(--border-light);
        }
        .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: 12px;
            overflow: hidden;
            margin-bottom: 40px;
        }
        .lottery-table th, .lottery-table td {
            padding: 12px;
            text-align: center;
            border-bottom: 1px solid var(--border-light);
        }
        .lottery-table th { background: var(--primary-variant); color: #fff; font-family: 'Oswald', sans-serif; }
        .lottery-table td { color: var(--text-secondary); }
        .win-amount { color: var(--success); font-weight: bold; }
        .provider-wall {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-bottom: 40px;
        }
        .provider-box {
            background: linear-gradient(135deg, var(--bg-surface), #252525);
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            font-weight: bold;
            color: var(--primary);
            border: 1px solid var(--border-medium);
        }
        .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: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--primary); }
        .review-header span { font-weight: bold; }
        .review-stars { color: var(--warning); margin-bottom: 10px; }
        .review-body { color: var(--text-secondary); font-size: 14px; margin-bottom: 10px; }
        .review-date { font-size: 12px; color: var(--text-muted); }
        .faq-section { margin-bottom: 40px; }
        .faq-item {
            background: var(--bg-surface);
            margin-bottom: 10px;
            border-radius: 8px;
            border: 1px solid var(--border-light);
            padding: 15px;
        }
        .faq-item h3 { color: var(--primary); font-size: 16px; margin-bottom: 10px; }
        .faq-item p { color: var(--text-secondary); font-size: 14px; }
        .security-section {
            text-align: center;
            background: var(--bg-surface);
            padding: 30px;
            border-radius: 15px;
            border: 1px solid var(--border-strong);
        }
        .security-icons { display: flex; justify-content: center; gap: 30px; margin-bottom: 20px; flex-wrap: wrap; }
        .security-icon { color: var(--primary); font-size: 40px; }
        .security-text { color: var(--text-secondary); font-size: 14px; max-width: 700px; margin: 0 auto 20px; }
        .security-link { color: var(--accent); 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 {
            display: flex;
            flex-direction: column;
            align-items: center;
            color: var(--text-secondary);
            font-size: 12px;
            gap: 5px;
        }
        .nav-item i { font-size: 20px; color: var(--primary); }
        footer {
            background: #000;
            padding: 40px 20px;
            text-align: center;
            border-top: 1px solid var(--border-light);
        }
        .footer-contact { margin-bottom: 30px; }
        .footer-contact h2 { font-size: 20px; margin-bottom: 15px; color: #fff; }
        .contact-links { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
        .contact-links a { color: var(--primary); font-size: 14px; }
        .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); font-size: 13px; }
        .footer-copy { color: var(--text-muted); font-size: 12px; }
        @media (max-width: 768px) {
            .footer-links { grid-template-columns: repeat(2, 1fr); }
            .intro-card h1 { font-size: 22px; }
        }