:root {
            --primary-gold: #D4AF37;
            --primary-gold-light: #F9E076;
            --secondary-red: #B22222;
            --accent-emerald: #00875A;
            --bg-base: #0B0C10;
            --bg-surface: #1F2833;
            --bg-elevated: #2C3531;
            --text-primary: #FFFFFF;
            --text-secondary: #C5C6C7;
            --text-muted: #898E95;
            --border-default: #45A29E;
            --border-active: #D4AF37;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-base);
            color: var(--text-primary);
            font-family: 'Inter', sans-serif;
            line-height: 1.5;
            padding-bottom: 70px;
        }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; color: var(--primary-gold); }
        a { text-decoration: none; color: inherit; }
        header {
            background-color: var(--bg-surface);
            border-bottom: 2px solid var(--border-default);
            padding: 10px 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .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(--text-primary); }
        .auth-btns { display: flex; gap: 8px; }
        .btn {
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        .btn-login { background: transparent; color: var(--primary-gold); border: 1px solid var(--primary-gold); }
        .btn-reg { background: var(--primary-gold); color: var(--bg-base); }
        main { max-width: 1000px; margin: 0 auto; padding: 15px; }
        .banner-container { width: 100%; aspect-ratio: 2/1; margin-bottom: 20px; border-radius: 12px; overflow: hidden; cursor: pointer; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box {
            background: linear-gradient(135deg, var(--bg-elevated), var(--bg-surface));
            border: 2px solid var(--primary-gold);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin-bottom: 25px;
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
        }
        .jackpot-title { font-family: 'Oswald', sans-serif; font-size: 18px; color: var(--text-secondary); text-transform: uppercase; }
        .jackpot-amount { font-family: 'Oswald', sans-serif; font-size: 36px; font-weight: 700; color: var(--primary-gold-light); margin: 10px 0; }
        .intro-card { background: var(--bg-surface); padding: 20px; border-radius: 12px; margin-bottom: 25px; border-left: 4px solid var(--primary-gold); }
        .intro-card h1 { font-size: 24px; margin-bottom: 12px; line-height: 1.2; }
        .intro-card p { font-size: 15px; color: var(--text-secondary); }
        .section-title { font-size: 22px; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 30px; }
        .game-card { background: var(--bg-surface); border-radius: 10px; overflow: hidden; transition: 0.3s; border: 1px solid var(--bg-elevated); }
        .game-card:hover { transform: translateY(-5px); border-color: var(--primary-gold); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { font-size: 14px; padding: 10px; text-align: center; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-methods { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 30px; }
        .payment-item { background: var(--bg-elevated); padding: 15px 5px; border-radius: 8px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 8px; }
        .payment-item i { font-size: 24px; color: var(--primary-gold); }
        .payment-item span { font-size: 11px; color: var(--text-muted); font-weight: 500; }
        .guide-section { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 30px; }
        .guide-item { background: var(--bg-surface); padding: 15px; border-radius: 10px; }
        .guide-item h2 { font-size: 18px; margin-bottom: 10px; }
        .guide-item p { font-size: 14px; color: var(--text-secondary); }
        .lottery-section { background: var(--bg-surface); padding: 15px; border-radius: 12px; margin-bottom: 30px; }
        .lottery-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--bg-elevated); font-size: 13px; }
        .lottery-item:last-child { border-bottom: none; }
        .win-user { color: var(--primary-gold); font-weight: 600; }
        .win-amount { color: var(--accent-emerald); font-weight: 700; }
        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 30px; }
        .provider-item { background: linear-gradient(to right, var(--bg-elevated), var(--bg-surface)); padding: 12px; text-align: center; border-radius: 6px; font-weight: 600; font-family: 'Oswald', sans-serif; color: var(--primary-gold); border: 1px solid var(--border-default); }
        .review-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 30px; }
        .review-card { background: var(--bg-elevated); padding: 15px; border-radius: 12px; }
        .review-user { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .review-user i { font-size: 20px; color: var(--text-muted); }
        .review-stars { color: var(--warning); font-size: 12px; margin-bottom: 8px; }
        .review-content { font-size: 14px; font-style: italic; color: var(--text-secondary); margin-bottom: 8px; }
        .review-date { font-size: 12px; color: var(--text-muted); }
        .faq-section { margin-bottom: 30px; }
        .faq-item { background: var(--bg-surface); margin-bottom: 8px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; cursor: pointer; font-weight: 600; display: flex; justify-content: space-between; align-items: center; color: var(--primary-gold); }
        .faq-answer { padding: 0 15px 15px; font-size: 14px; color: var(--text-secondary); }
        .security-section { background: var(--bg-surface); padding: 20px; border-radius: 12px; text-align: center; border: 1px dashed var(--accent-emerald); }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--accent-emerald); }
        .security-text { font-size: 13px; color: var(--text-muted); }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: var(--bg-surface); display: flex; justify-content: space-around; padding: 10px 0; border-top: 2px solid var(--primary-gold); z-index: 1001; }
        .nav-item { display: flex; flex-direction: column; align-items: center; font-size: 12px; color: var(--text-secondary); }
        .nav-item i { font-size: 20px; margin-bottom: 4px; color: var(--primary-gold); }
        footer { background: var(--bg-surface); padding: 30px 15px 80px; text-align: center; border-top: 1px solid var(--bg-elevated); }
        .footer-social { display: flex; justify-content: center; gap: 15px; margin-bottom: 20px; flex-wrap: wrap; }
        .footer-social a { color: var(--primary-gold); font-size: 14px; text-decoration: underline; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; text-align: left; }
        .footer-links a { font-size: 13px; color: var(--text-muted); transition: 0.2s; }
        .footer-links a:hover { color: var(--primary-gold); }
        .footer-copy { font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--bg-elevated); pt: 15px; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(3, 1fr); }
            .review-grid { grid-template-columns: 1fr 1fr; }
            .guide-section { grid-template-columns: 1fr 1fr; }
        }