:root {
            --primary-gold: #D4AF37;
            --secondary-gold: #FFD700;
            --accent-red: #B22222;
            --premium-black: #0A0B0D;
            --main-bg: #0F1116;
            --card-bg: #1C1F26;
            --overlay-bg: #252A34;
            --primary-text: #FFFFFF;
            --secondary-text: #94A3B8;
            --muted-text: #64748B;
            --brand-text: #D4AF37;
            --success-win: #22C55E;
            --error-loss: #EF4444;
            --warning-pending: #F59E0B;
            --info-blue: #3B82F6;
            --default-border: #2D3748;
            --highlight-border: #D4AF37;
            --subtle-border: #1E293B;
            --heading-font: 'Montserrat', sans-serif;
            --body-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: var(--main-bg); color: var(--primary-text); font-family: var(--body-font); line-height: 1.5; -webkit-tap-highlight-color: transparent; padding-bottom: 70px; }
        h1, h2, h3 { font-family: var(--heading-font); font-weight: 700; color: var(--primary-gold); }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; height: auto; display: block; }
        header { background-color: var(--premium-black); 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(--default-border); }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--primary-text); }
        .header-right { display: flex; gap: 10px; }
        .btn { padding: 6px 15px; border-radius: 20px; font-weight: 600; font-size: 14px; cursor: pointer; border: none; transition: transform 0.2s; }
        .btn-login { background-color: transparent; color: var(--primary-text); border: 1px solid var(--primary-gold); }
        .btn-register { background-color: var(--primary-gold); color: var(--premium-black); }
        .btn:active { transform: scale(0.95); }
        main { padding: 10px; display: flex; flex-direction: column; gap: 20px; }
        .banner { width: 100%; aspect-ratio: 2/1; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.5); cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container { background: linear-gradient(135deg, var(--card-bg), var(--premium-black)); border: 2px solid var(--highlight-border); border-radius: 15px; padding: 20px; text-align: center; position: relative; overflow: hidden; }
        .jackpot-label { color: var(--secondary-text); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 5px; }
        .jackpot-amount { color: var(--secondary-gold); font-size: 32px; font-weight: 900; font-family: 'Roboto Mono', monospace; text-shadow: 0 0 10px rgba(212,175,55,0.5); }
        .intro-card { background-color: var(--card-bg); padding: 20px; border-radius: 15px; border-left: 4px solid var(--primary-gold); }
        .intro-card h1 { font-size: 20px; margin-bottom: 10px; }
        .intro-card p { color: var(--secondary-text); font-size: 14px; }
        .section-title { font-size: 18px; border-left: 3px solid var(--accent-red); padding-left: 10px; margin-bottom: 15px; display: flex; justify-content: space-between; align-items: center; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
        .game-card { background-color: var(--card-bg); border-radius: 10px; overflow: hidden; border: 1px solid var(--subtle-border); transition: 0.3s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 { font-size: 14px; padding: 10px; text-align: center; color: var(--primary-text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payments-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; background-color: var(--card-bg); padding: 15px; border-radius: 12px; }
        .payment-item { display: flex; flex-direction: column; align-items: center; gap: 5px; color: var(--muted-text); font-size: 10px; }
        .payment-item i { font-size: 24px; color: var(--primary-gold); }
        .guide-section { display: grid; grid-template-columns: 1fr; gap: 15px; }
        .guide-card { background-color: var(--card-bg); padding: 15px; border-radius: 12px; }
        .guide-card h2 { font-size: 16px; margin-bottom: 8px; color: var(--secondary-gold); }
        .guide-card p { font-size: 13px; color: var(--secondary-text); }
        .lottery-section { background-color: var(--card-bg); border-radius: 12px; padding: 15px; }
        .lottery-item { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--subtle-border); }
        .lottery-item:last-child { border-bottom: none; }
        .user-info { display: flex; flex-direction: column; }
        .user-name { font-weight: 600; font-size: 13px; }
        .game-name { font-size: 12px; color: var(--muted-text); }
        .win-amount { color: var(--success-win); font-weight: 700; font-size: 14px; }
        .providers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
        .provider-block { background: linear-gradient(45deg, #1e293b, #0f172a); padding: 15px; text-align: center; border-radius: 8px; font-weight: 700; border: 1px solid var(--default-border); color: var(--primary-gold); }
        .reviews-section { display: flex; flex-direction: column; gap: 12px; }
        .review-card { background-color: var(--card-bg); padding: 15px; border-radius: 12px; border: 1px solid var(--subtle-border); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--muted-text); }
        .review-user h3 { font-size: 14px; color: var(--primary-text); }
        .stars { color: var(--secondary-gold); font-size: 12px; }
        .review-content { font-size: 13px; color: var(--secondary-text); font-style: italic; }
        .faq-section { display: flex; flex-direction: column; gap: 10px; }
        .faq-item { background-color: var(--card-bg); border-radius: 8px; padding: 15px; }
        .faq-item h3 { font-size: 14px; margin-bottom: 8px; color: var(--primary-gold); }
        .faq-item p { font-size: 13px; color: var(--secondary-text); }
        .security-section { background-color: var(--premium-black); padding: 20px; border-radius: 12px; border: 1px dashed var(--muted-text); text-align: center; }
        .security-icons { display: flex; justify-content: center; gap: 15px; margin-bottom: 15px; }
        .security-icons i { font-size: 24px; color: var(--success-win); }
        .security-text { font-size: 12px; color: var(--muted-text); }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background-color: var(--premium-black); height: 60px; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid var(--default-border); z-index: 1001; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--secondary-text); font-size: 12px; }
        .nav-item i { font-size: 20px; }
        footer { background-color: var(--premium-black); padding: 30px 15px 100px; border-top: 1px solid var(--default-border); }
        .footer-contact { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 25px; }
        .footer-contact a { color: var(--primary-gold); font-size: 14px; display: flex; align-items: center; gap: 5px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; }
        .footer-links a { color: var(--muted-text); font-size: 13px; text-align: center; }
        .footer-copy { text-align: center; color: var(--muted-text); font-size: 11px; border-top: 1px solid var(--subtle-border); padding-top: 20px; }