:root {
            --primary-gold: #D4AF37;
            --gold-light: #F9E076;
            --gold-dark: #996515;
            --accent-red: #8B0000;
            --bg-primary: #0A0A0B;
            --bg-secondary: #141416;
            --bg-tertiary: #1C1C1E;
            --text-primary: #FFFFFF;
            --text-secondary: #B1B1B1;
            --text-muted: #71717A;
            --border-default: #2D2D30;
            --success: #22C55E;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: 'Inter', 'Roboto', sans-serif;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
        }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--primary-gold); }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        header {
            background: var(--bg-secondary);
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-default);
        }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; object-fit: contain; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--text-primary); }
        .header-right { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 6px; font-weight: 600; font-size: 14px; border: none; cursor: pointer; }
        .btn-login { background: transparent; color: var(--primary-gold); border: 1px solid var(--primary-gold); }
        .btn-reg { background: linear-gradient(135deg, var(--primary-gold), var(--gold-dark)); color: var(--bg-primary); }
        main { max-width: 800px; margin: 0 auto; padding-bottom: 80px; }
        .banner-container { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box {
            margin: 20px 15px;
            background: radial-gradient(circle at center, #1C1C1E 0%, #0A0A0B 100%);
            border: 2px solid var(--primary-gold);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
        }
        .jackpot-title { font-size: 14px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount {
            font-family: 'Oswald', sans-serif;
            font-size: 40px;
            color: var(--gold-light);
            font-weight: 900;
            text-shadow: 0 0 10px rgba(249, 224, 118, 0.5);
            animation: pulse 2s infinite;
        }
        @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.8; } }
        .intro-card { margin: 15px; padding: 20px; background: var(--bg-secondary); border-radius: 12px; border: 1px solid var(--border-default); }
        .intro-card h1 { font-size: 24px; margin-bottom: 12px; line-height: 1.2; }
        .intro-card p { font-size: 14px; color: var(--text-secondary); }
        .section-title { margin: 25px 15px 15px; font-size: 20px; border-left: 4px solid var(--primary-gold); padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: var(--bg-tertiary); border-radius: 10px; overflow: hidden; border: 1px solid var(--border-default); transition: transform 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { font-size: 14px; padding: 10px; color: var(--text-primary); text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 15px; background: var(--bg-secondary); margin: 15px; border-radius: 12px; }
        .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 { padding: 15px; display: flex; flex-direction: column; gap: 15px; }
        .guide-item { background: var(--bg-secondary); padding: 15px; border-radius: 10px; border-left: 2px solid var(--accent-red); }
        .guide-item h3 { font-size: 16px; margin-bottom: 8px; color: var(--gold-light); }
        .guide-item p { font-size: 13px; color: var(--text-secondary); }
        .lottery-section { margin: 15px; background: var(--bg-secondary); border-radius: 12px; padding: 15px; }
        .lottery-item { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border-default); font-size: 13px; }
        .lottery-user { color: var(--primary-gold); font-weight: 600; }
        .lottery-win { color: var(--success); font-weight: 700; }
        .providers-wall { display: flex; flex-wrap: wrap; gap: 10px; padding: 15px; }
        .provider-tag { flex: 1; min-width: calc(50% - 5px); background: var(--bg-tertiary); color: var(--primary-gold); padding: 12px; text-align: center; border-radius: 6px; font-weight: 600; font-size: 14px; border: 1px solid var(--border-default); }
        .reviews-section { padding: 15px; display: grid; grid-template-columns: 1fr; gap: 15px; }
        .review-card { background: var(--bg-secondary); padding: 15px; border-radius: 12px; border: 1px solid var(--border-default); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--text-muted); }
        .review-user { font-weight: 600; font-size: 14px; }
        .review-stars { color: #FFD700; font-size: 12px; }
        .review-content { font-size: 13px; color: var(--text-secondary); margin-bottom: 8px; font-style: italic; }
        .review-date { font-size: 11px; color: var(--text-muted); }
        .faq-section { padding: 15px; }
        .faq-item { background: var(--bg-tertiary); margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; color: var(--gold-light); display: flex; justify-content: space-between; align-items: center; font-size: 14px; cursor: pointer; }
        .faq-answer { padding: 0 15px 15px; font-size: 13px; color: var(--text-secondary); }
        .security-section { margin: 15px; padding: 20px; background: linear-gradient(to bottom, var(--bg-secondary), var(--bg-primary)); border-radius: 12px; text-align: center; border: 1px solid var(--border-default); }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 30px; color: var(--primary-gold); }
        .security-text { font-size: 12px; color: var(--text-muted); margin-bottom: 10px; }
        .security-links a { color: var(--primary-gold); font-size: 12px; margin: 0 5px; text-decoration: underline; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--bg-secondary);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-default);
            z-index: 1001;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 12px; color: var(--text-secondary); }
        .nav-item i { font-size: 20px; }
        .nav-item:active { color: var(--primary-gold); }
        footer { background: var(--bg-secondary); padding: 30px 15px 100px; border-top: 1px solid var(--border-default); text-align: center; }
        .footer-row { margin-bottom: 20px; }
        .footer-contact { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; margin-bottom: 20px; }
        .footer-contact a { font-size: 14px; color: var(--primary-gold); border: 1px solid var(--border-default); padding: 5px 12px; border-radius: 20px; }
        .footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        .footer-grid a { font-size: 13px; color: var(--text-secondary); }
        .footer-copy { font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-default); padding-top: 20px; }