:root {
            --primary-bg: #1a1d24;
            --card-bg: #252a34;
            --accent-gold: #f39c12;
            --accent-gold-hover: #e67e22;
            --text-main: #ffffff;
            --text-dim: #a0a0a0;
            --success: #27ae60;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; background-color: var(--primary-bg); color: var(--text-main); line-height: 1.6; -webkit-tap-highlight-color: transparent; }
        a { text-decoration: none; color: inherit; }
        header { position: sticky; top: 0; z-index: 1000; background-color: var(--primary-bg); padding: 10px 15px; display: flex; align-items: center; justify-content: space-between; box-shadow: 0 2px 10px rgba(0,0,0,0.5); }
        .logo-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; object-fit: contain; }
        .logo-box strong { font-size: 16px; font-weight: normal; }
        .header-btns { display: flex; gap: 10px; }
        .btn { padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: bold; border: none; cursor: pointer; transition: 0.3s; }
        .btn-login { background-color: transparent; border: 1px solid var(--accent-gold); color: var(--accent-gold); }
        .btn-reg { background-color: var(--accent-gold); color: #000; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        main { padding: 15px; padding-bottom: 80px; }
        .jackpot-box { background: linear-gradient(135deg, #2c3e50, #000); border: 2px solid var(--accent-gold); border-radius: 12px; padding: 20px; text-align: center; margin-bottom: 20px; position: relative; overflow: hidden; }
        .jackpot-title { color: var(--accent-gold); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-size: 28px; font-weight: bold; color: #fff; text-shadow: 0 0 10px var(--accent-gold); margin: 5px 0; }
        .jackpot-amount span { color: var(--accent-gold); }
        .section-title { font-size: 18px; margin: 20px 0 10px; display: flex; align-items: center; gap: 10px; border-left: 4px solid var(--accent-gold); padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
        .game-card { background: var(--card-bg); border-radius: 12px; overflow: hidden; transition: transform 0.2s; position: relative; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card .info { padding: 8px; font-size: 12px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-card { background: var(--card-bg); border-radius: 15px; padding: 20px; margin: 25px 0; }
        .intro-card h1 { font-size: 20px; color: var(--accent-gold); margin-bottom: 10px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: var(--text-dim); }
        .guidelines-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
        .guide-item { background: #1e222a; border-radius: 8px; padding: 12px; font-size: 13px; border: 1px solid #333; }
        .guide-item i { color: var(--accent-gold); margin-bottom: 5px; font-size: 18px; }
        .winning-scroll { background: var(--card-bg); border-radius: 12px; padding: 15px; max-height: 300px; overflow-y: auto; margin-bottom: 20px; }
        .winner-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid #333; font-size: 13px; }
        .winner-id { color: var(--text-dim); }
        .winner-amt { color: var(--success); font-weight: bold; }
        .reviews-container { display: flex; flex-direction: column; gap: 12px; margin: 20px 0; }
        .review-card { background: var(--card-bg); padding: 15px; border-radius: 12px; border-left: 3px solid var(--accent-gold); }
        .review-user { font-weight: bold; font-size: 14px; margin-bottom: 5px; display: flex; align-items: center; gap: 8px; }
        .review-user span { color: var(--accent-gold); font-size: 10px; }
        .review-text { font-size: 13px; color: var(--text-dim); font-style: italic; }
        .faq-section { background: var(--card-bg); border-radius: 12px; padding: 10px; margin-top: 20px; }
        .faq-item { border-bottom: 1px solid #333; padding: 15px 5px; }
        .faq-item:last-child { border: none; }
        .faq-q { font-weight: bold; font-size: 14px; color: var(--accent-gold); margin-bottom: 8px; display: block; }
        .faq-a { font-size: 13px; color: var(--text-dim); }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: #11141a; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #333; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; color: var(--text-dim); font-size: 11px; }
        .nav-item i { font-size: 20px; margin-bottom: 3px; }
        .nav-item.active { color: var(--accent-gold); }
        footer { background: #0d0f13; padding: 30px 15px 100px; text-align: center; }
        .footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 15px; }
        .footer-links a { font-size: 13px; color: var(--text-dim); }
        .copyright { font-size: 12px; color: #555; margin-top: 15px; }
        .provider-strip { display: flex; justify-content: center; gap: 15px; filter: grayscale(1); opacity: 0.5; margin: 20px 0; font-size: 24px; }
        @keyframes pulse { 0% { opacity: 0.8; } 50% { opacity: 1; } 100% { opacity: 0.8; } }
        .jackpot-amount { animation: pulse 2s infinite; }