:root {
            --primary: #FFD700;
            --primary-variant: #B8860B;
            --secondary: #1E40AF;
            --accent: #FACC15;
            --bg-default: #0F172A;
            --bg-paper: #1E293B;
            --bg-surface: #020617;
            --text-primary: #FFFFFF;
            --text-secondary: #94A3B8;
            --success: #22C55E;
            --border: #334155;
            --highlight: #FFD700;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-default);
            color: var(--text-primary);
            font-family: 'Inter', 'Roboto', sans-serif;
            line-height: 1.5;
            padding-bottom: 70px;
        }
        header {
            background-color: var(--bg-surface);
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border);
        }
        header .brand { display: flex; align-items: center; gap: 8px; }
        header .brand img { width: 25px; height: 25px; border-radius: 4px; }
        header .brand strong { font-size: 16px; font-weight: 400; color: var(--primary); font-family: 'Montserrat', sans-serif; }
        header .actions { display: flex; gap: 10px; }
        header button {
            padding: 6px 16px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border); }
        .btn-register { background: var(--primary); color: var(--bg-surface); }
        main { max-width: 1000px; margin: 0 auto; padding: 15px; }
        .banner { width: 100%; border-radius: 12px; overflow: hidden; cursor: pointer; aspect-ratio: 2/1; margin-bottom: 20px; box-shadow: 0 4px 20px rgba(0,0,0,0.5); }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container {
            background: linear-gradient(135deg, var(--bg-paper), var(--bg-surface));
            border: 2px solid var(--highlight);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
            position: relative;
            overflow: hidden;
        }
        .jackpot-label { color: var(--primary); font-family: 'Montserrat', sans-serif; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; font-size: 14px; margin-bottom: 10px; }
        .jackpot-amount { font-size: 36px; font-weight: 800; color: #FFFFFF; text-shadow: 0 0 15px rgba(255, 215, 0, 0.6); font-family: 'JetBrains Mono', monospace; }
        .intro-card { background: var(--bg-paper); border-radius: 15px; padding: 25px; margin-bottom: 25px; border-left: 4px solid var(--primary); }
        .intro-card h1 { font-size: 24px; font-family: 'Montserrat', sans-serif; color: var(--primary); margin-bottom: 12px; }
        .intro-card p { color: var(--text-secondary); font-size: 15px; }
        .section-title { font-family: 'Montserrat', sans-serif; font-size: 20px; margin: 25px 0 15px; display: flex; align-items: center; gap: 10px; }
        .section-title::before { content: ''; width: 4px; height: 20px; background: var(--primary); border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
        .game-card { background: var(--bg-paper); border-radius: 12px; overflow: hidden; text-decoration: none; color: inherit; transition: transform 0.2s; border: 1px solid var(--border); }
        .game-card:active { transform: scale(0.95); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { padding: 10px; font-size: 14px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payments-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 30px; }
        .payment-item { background: var(--bg-surface); border: 1px solid var(--border); border-radius: 8px; padding: 12px 5px; text-align: center; }
        .payment-item i { font-size: 24px; color: var(--primary); margin-bottom: 8px; display: block; }
        .payment-item span { font-size: 11px; color: var(--text-secondary); font-weight: 500; }
        .guides-container { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 30px; }
        .guide-box { background: var(--bg-paper); padding: 20px; border-radius: 12px; border: 1px solid var(--border); }
        .guide-box h2 { font-size: 18px; color: var(--accent); margin-bottom: 10px; }
        .lottery-box { background: var(--bg-surface); border-radius: 12px; padding: 15px; border: 1px solid var(--border); margin-bottom: 30px; }
        .lottery-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
        .lottery-item:last-child { border-bottom: none; }
        .lottery-user { color: var(--primary); font-weight: 600; }
        .lottery-amount { color: var(--success); font-weight: 700; }
        .providers-wall { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 30px; }
        .provider-tag { background: linear-gradient(45deg, var(--secondary), #1e3a8a); padding: 15px; border-radius: 8px; text-align: center; font-weight: 700; font-size: 14px; }
        .reviews-container { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 30px; }
        .review-card { background: var(--bg-paper); padding: 20px; border-radius: 12px; position: relative; }
        .review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--text-secondary); }
        .review-user { font-weight: 600; font-size: 15px; }
        .stars { color: var(--accent); font-size: 12px; margin-bottom: 8px; }
        .review-content { font-size: 14px; color: var(--text-secondary); font-style: italic; }
        .faq-container { margin-bottom: 30px; }
        .faq-item { background: var(--bg-paper); border-radius: 8px; margin-bottom: 10px; padding: 15px; border: 1px solid var(--border); }
        .faq-item h3 { font-size: 16px; color: var(--primary); margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }
        .security-section { background: var(--bg-surface); padding: 25px; border-radius: 15px; border: 1px solid var(--border); text-align: center; }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 30px; color: var(--primary); }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 65px;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border);
            z-index: 1000;
        }
        .nav-item { text-decoration: none; display: flex; flex-direction: column; align-items: center; gap: 5px; color: var(--text-secondary); }
        .nav-item i { font-size: 20px; }
        .nav-item span { font-size: 12px; }
        footer {
            background-color: var(--bg-surface);
            padding: 40px 20px 20px;
            border-top: 1px solid var(--border);
        }
        .footer-row { margin-bottom: 30px; }
        .contact-links { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
        .contact-links a { color: var(--primary); text-decoration: none; font-size: 14px; display: flex; align-items: center; gap: 8px; }
        .footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
        .footer-grid a { color: var(--text-secondary); text-decoration: none; font-size: 13px; }
        .copyright { text-align: center; color: var(--text-hint); font-size: 12px; margin-top: 30px; padding-top: 20px; border-top: 1px solid var(--border); }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(3, 1fr); }
            .guides-container, .reviews-container { grid-template-columns: 1fr 1fr; }
        }