:root {
            --primary: #D4AF37;
            --primary-variant: #C5A028;
            --secondary: #006400;
            --accent: #FFD700;
            --bg-base: #0A0A0B;
            --bg-surface: #121214;
            --bg-overlay: #1C1C1E;
            --text-primary: #FFFFFF;
            --text-secondary: #A1A1AA;
            --text-muted: #71717A;
            --text-brand: #D4AF37;
            --success: #22C55E;
            --error: #EF4444;
            --warning: #F59E0B;
            --info: #3B82F6;
            --border-subtle: #27272A;
            --border-default: #3F3F46;
            --border-active: #D4AF37;
            --font-heading: 'Montserrat', system-ui, -apple-system, sans-serif;
            --font-body: 'Inter', system-ui, -apple-system, sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-base);
            color: var(--text-primary);
            font-family: var(--font-body);
            line-height: 1.5;
            padding-bottom: 70px;
        }
        header {
            background-color: var(--bg-surface);
            border-bottom: 1px solid var(--border-subtle);
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 16px;
            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; object-fit: contain; }
        header .brand strong { font-size: 16px; font-weight: 400; font-family: var(--font-heading); }
        header .actions { display: flex; gap: 8px; }
        header .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: opacity 0.2s;
        }
        header .btn-login { background-color: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        header .btn-register { background-color: var(--primary); color: #000; }
        main { max-width: 1000px; margin: 0 auto; padding: 16px; }
        .banner { width: 100%; border-radius: 12px; overflow: hidden; margin-bottom: 20px; cursor: pointer; aspect-ratio: 2 / 1; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container {
            background: linear-gradient(135deg, var(--secondary), #004d00);
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            margin-bottom: 24px;
            border: 1px solid var(--primary);
            box-shadow: 0 4px 20px rgba(0,0,0,0.5);
        }
        .jackpot-title { font-family: var(--font-heading); color: var(--accent); font-size: 1.25rem; font-weight: 700; margin-bottom: 10px; text-transform: uppercase; }
        .jackpot-amount { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 900; color: #fff; text-shadow: 0 0 10px rgba(255,255,255,0.5); }
        .platform-intro { background-color: var(--bg-surface); padding: 24px; border-radius: 16px; margin-bottom: 24px; border: 1px solid var(--border-subtle); }
        .platform-intro h1 { font-family: var(--font-heading); font-size: 1.5rem; color: var(--primary); margin-bottom: 12px; line-height: 1.2; }
        .platform-intro p { color: var(--text-secondary); font-size: 0.95rem; }
        h2 { font-family: var(--font-heading); font-size: 1.25rem; margin: 24px 0 16px; color: var(--text-primary); display: flex; align-items: center; gap: 8px; }
        h2::before { content: ''; width: 4px; height: 18px; background: var(--primary); border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
        .game-card { background-color: var(--bg-surface); border-radius: 12px; overflow: hidden; text-decoration: none; transition: transform 0.2s; border: 1px solid var(--border-subtle); }
        .game-card:active { transform: scale(0.98); }
        .game-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
        .game-card h3 { padding: 8px; font-size: 0.875rem; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 500; }
        .payments-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 24px; }
        .payment-item { background: var(--bg-surface); padding: 12px; border-radius: 8px; text-align: center; border: 1px solid var(--border-subtle); }
        .payment-item i { font-size: 1.5rem; color: var(--primary); margin-bottom: 6px; }
        .payment-item span { display: block; font-size: 0.65rem; color: var(--text-secondary); font-weight: 500; }
        .guides-container { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 24px; }
        .guide-card { background: var(--bg-overlay); padding: 16px; border-radius: 12px; border-left: 3px solid var(--primary); }
        .guide-card h3 { font-family: var(--font-heading); font-size: 1.1rem; margin-bottom: 8px; color: var(--primary); }
        .guide-card p { font-size: 0.875rem; color: var(--text-secondary); text-align: justify; }
        .lottery-box { background: var(--bg-surface); border-radius: 12px; padding: 12px; overflow: hidden; height: 200px; position: relative; border: 1px solid var(--border-subtle); }
        .lottery-track { animation: scrollUp 20s linear infinite; }
        @keyframes scrollUp { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .lottery-item { padding: 10px; border-bottom: 1px solid var(--border-subtle); display: flex; justify-content: space-between; font-size: 0.8rem; }
        .lottery-item .user { color: var(--accent); font-weight: 600; }
        .lottery-item .win { color: var(--success); font-weight: 700; }
        .providers-wall { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
        .provider-tag { background: var(--secondary); color: white; padding: 6px 12px; border-radius: 4px; font-size: 0.85rem; font-weight: 600; flex: 1 0 45%; text-align: center; }
        .reviews-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 24px; }
        .review-card { background: var(--bg-surface); padding: 16px; border-radius: 12px; border: 1px solid var(--border-subtle); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 1.5rem; color: var(--text-muted); }
        .review-header .name { font-weight: 600; font-size: 0.9rem; }
        .review-stars { color: var(--accent); font-size: 0.75rem; margin-bottom: 8px; }
        .review-content { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 8px; }
        .review-date { font-size: 0.75rem; color: var(--text-muted); }
        .faq-section { margin-bottom: 24px; }
        .faq-item { background: var(--bg-surface); border-radius: 8px; margin-bottom: 10px; overflow: hidden; border: 1px solid var(--border-subtle); }
        .faq-question { padding: 16px; font-weight: 600; font-size: 0.95rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: var(--text-brand); }
        .faq-answer { padding: 0 16px 16px; font-size: 0.875rem; color: var(--text-secondary); }
        .security-section { background: var(--bg-overlay); padding: 20px; border-radius: 12px; text-align: center; border: 1px solid var(--border-subtle); }
        .security-icons { display: flex; justify-content: center; gap: 20px; font-size: 2rem; color: var(--primary); margin-bottom: 16px; }
        .security-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 12px; }
        .security-links a { font-size: 0.75rem; color: var(--text-muted); text-decoration: none; border: 1px solid var(--border-default); padding: 4px 8px; border-radius: 4px; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-subtle);
            z-index: 1000;
        }
        .navigator a { text-decoration: none; color: var(--text-secondary); display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 10px; font-weight: 500; }
        .navigator a i { font-size: 18px; color: var(--text-muted); }
        .navigator a:nth-child(3) i { color: var(--primary); font-size: 22px; }
        footer { background: var(--bg-surface); padding: 32px 16px 80px; border-top: 1px solid var(--border-subtle); }
        footer .contact-row { display: flex; flex-wrap: wrap; gap: 15px; margin-bottom: 24px; justify-content: center; }
        footer .contact-row a { color: var(--text-primary); text-decoration: none; font-size: 0.9rem; font-weight: 500; }
        footer .links-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 24px; text-align: center; }
        footer .links-grid a { color: var(--text-secondary); text-decoration: none; font-size: 0.8rem; }
        footer .copyright { text-align: center; color: var(--text-muted); font-size: 0.75rem; border-top: 1px solid var(--border-subtle); pt: 16px; }