:root {
            --primary-gold: #FFD700;
            --primary-dark-gold: #B8860B;
            --secondary-blue: #1E3A8A;
            --accent-yellow: #FACC15;
            --bg-base: #0F172A;
            --bg-surface: #1E293B;
            --bg-overlay: #334155;
            --text-primary: #F8FAFC;
            --text-secondary: #CBD5E1;
            --text-muted: #94A3B8;
            --text-brand: #FFD700;
            --border-subtle: #334155;
            --border-strong: #475569;
            --font-primary: 'Montserrat', sans-serif;
            --font-secondary: 'Inter', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-base);
            color: var(--text-primary);
            font-family: var(--font-secondary);
            line-height: 1.5;
            padding-bottom: 70px;
        }
        header {
            background-color: var(--bg-surface);
            padding: 12px 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-subtle);
        }
        header .logo-box { display: flex; align-items: center; gap: 8px; }
        header img { width: 25px; height: 25px; object-fit: contain; }
        header strong { font-family: var(--font-primary); font-size: 16px; font-weight: 400; color: var(--text-primary); }
        header .actions { display: flex; gap: 10px; }
        header button {
            padding: 8px 16px;
            border-radius: 6px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            font-size: 14px;
        }
        .btn-login { background-color: transparent; color: var(--text-primary); border: 1px solid var(--primary-gold); }
        .btn-register { background-color: var(--primary-gold); color: #000; }
        main { max-width: 800px; margin: 0 auto; padding: 15px; }
        .banner {
            width: 100%;
            aspect-ratio: 2/1;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 20px;
            cursor: pointer;
            background-color: var(--bg-overlay);
        }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box {
            background: linear-gradient(135deg, var(--secondary-blue), #000);
            border: 2px solid var(--primary-gold);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
        }
        .jackpot-title { color: var(--primary-gold); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { font-family: var(--font-primary); font-size: 32px; font-weight: 800; color: var(--accent-yellow); text-shadow: 0 0 10px rgba(250, 204, 21, 0.5); }
        .intro-card { background-color: var(--bg-surface); border-radius: 12px; padding: 20px; border-left: 4px solid var(--primary-gold); margin-bottom: 25px; }
        .intro-card h1 { font-size: 24px; margin-bottom: 12px; color: var(--primary-gold); line-height: 1.2; }
        .intro-card p { color: var(--text-secondary); font-size: 15px; }
        h2 { font-size: 20px; margin: 20px 0 15px; color: var(--text-primary); border-bottom: 2px solid var(--primary-gold); display: inline-block; padding-bottom: 4px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background-color: var(--bg-surface); border-radius: 10px; overflow: hidden; text-decoration: none; border: 1px solid var(--border-subtle); transition: transform 0.2s; }
        .game-card:active { transform: scale(0.98); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 { padding: 10px; font-size: 14px; color: var(--text-primary); text-align: center; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; background-color: var(--bg-surface); padding: 15px; border-radius: 12px; margin-bottom: 25px; }
        .payment-item { display: flex; flex-direction: column; align-items: center; gap: 5px; font-size: 10px; color: var(--text-muted); }
        .payment-item i { font-size: 24px; color: var(--primary-gold); }
        .guide-section { margin-bottom: 30px; }
        .guide-item { background-color: var(--bg-surface); padding: 15px; border-radius: 10px; margin-bottom: 12px; }
        .guide-item h3 { font-size: 16px; color: var(--primary-gold); margin-bottom: 8px; }
        .guide-item p { font-size: 14px; color: var(--text-secondary); }
        .lottery-box { background-color: var(--bg-surface); border-radius: 12px; padding: 15px; margin-bottom: 25px; }
        .lottery-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border-subtle); font-size: 13px; }
        .lottery-row:last-child { border-bottom: none; }
        .lottery-user { color: var(--primary-gold); font-weight: 600; }
        .lottery-win { color: var(--accent-yellow); font-weight: 700; }
        .providers-wall { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 10px; margin-bottom: 25px; }
        .provider-tag { background: linear-gradient(45deg, var(--secondary-blue), var(--bg-overlay)); padding: 10px 20px; border-radius: 20px; white-space: nowrap; font-weight: 600; font-size: 14px; border: 1px solid var(--primary-dark-gold); }
        .comment-grid { display: flex; flex-direction: column; gap: 12px; margin-bottom: 25px; }
        .comment-card { background-color: var(--bg-surface); padding: 15px; border-radius: 12px; border: 1px solid var(--border-subtle); }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-header i { font-size: 20px; color: var(--text-muted); }
        .comment-name { font-weight: 600; font-size: 14px; }
        .comment-stars { color: var(--accent-yellow); font-size: 12px; }
        .comment-content { font-size: 13px; color: var(--text-secondary); font-style: italic; }
        .comment-date { font-size: 11px; color: var(--text-muted); margin-top: 8px; text-align: right; }
        .faq-section { margin-bottom: 30px; }
        .faq-item { background-color: var(--bg-surface); border-radius: 10px; margin-bottom: 10px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; color: var(--primary-gold); cursor: pointer; display: flex; justify-content: space-between; }
        .faq-answer { padding: 0 15px 15px; font-size: 14px; color: var(--text-secondary); }
        .security-section { background-color: #0c1221; padding: 20px; border-radius: 12px; text-align: center; border: 1px dashed var(--primary-dark-gold); margin-bottom: 20px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--primary-gold); }
        .security-text { font-size: 13px; color: var(--text-muted); margin-bottom: 10px; }
        .security-links a { color: var(--accent-yellow); text-decoration: underline; font-size: 12px; margin: 0 5px; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: 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-muted); display: flex; flex-direction: column; align-items: center; font-size: 11px; }
        .navigator i { font-size: 18px; margin-bottom: 4px; }
        footer { background-color: #070b14; padding: 30px 15px 100px; text-align: center; }
        footer .contact-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 25px; }
        footer .contact-row a { color: var(--text-primary); text-decoration: none; font-size: 14px; display: flex; align-items: center; gap: 5px; }
        footer .links-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; }
        footer .links-grid a { color: var(--text-muted); text-decoration: none; font-size: 13px; }
        footer .copyright { font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-subtle); padding-top: 15px; }