:root {
            --primary-bg: #121418;
            --card-bg: #1e222a;
            --accent-gold: #ffc107;
            --text-main: #ffffff;
            --text-dim: #a0a6b1;
            --btn-grad: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
        }
        * { 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; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        header { position: sticky; top: 0; z-index: 1000; background: #1a1d24; padding: 10px 15px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #2d333d; }
        .logo-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; border-radius: 5px; }
        .logo-box strong { font-size: 16px; font-weight: normal; color: var(--accent-gold); }
        .auth-btns { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 20px; font-size: 14px; font-weight: 600; border: none; cursor: pointer; }
        .btn-login { background: transparent; color: var(--accent-gold); border: 1px solid var(--accent-gold); }
        .btn-reg { background: var(--btn-grad); color: #000; }
        main { max-width: 600px; margin: 0 auto; padding: 10px; }
        .banner { width: 100%; aspect-ratio: 2/1; border-radius: 12px; overflow: hidden; margin-bottom: 15px; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-sec { background: var(--card-bg); border-radius: 12px; padding: 15px; text-align: center; margin-bottom: 15px; border: 1px solid #333; }
        .jackpot-val { font-size: 28px; color: var(--accent-gold); font-weight: 800; text-shadow: 0 0 10px rgba(255,193,7,0.4); }
        .section-title { font-size: 18px; margin: 15px 0 10px; display: flex; align-items: center; gap: 8px; }
        .section-title i { color: var(--accent-gold); }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 20px; }
        .game-card { background: var(--card-bg); border-radius: 12px; overflow: hidden; display: block; border: 1px solid #2d333d; transition: transform 0.2s; }
        .game-card:active { transform: scale(0.97); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card span { display: block; padding: 8px; font-size: 13px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--text-dim); }
        .intro-card { background: var(--card-bg); border-radius: 15px; padding: 20px; margin-bottom: 20px; border-left: 4px solid var(--accent-gold); }
        .intro-card h1 { font-size: 20px; margin-bottom: 10px; color: var(--accent-gold); line-height: 1.3; }
        .intro-card p { font-size: 14px; color: var(--text-dim); }
        .guidelines-grid { display: grid; grid-template-columns: 1fr; gap: 10px; margin-bottom: 20px; }
        .guide-item { background: #1e222a; padding: 15px; border-radius: 10px; display: flex; align-items: flex-start; gap: 12px; }
        .guide-item i { font-size: 20px; color: var(--accent-gold); padding-top: 3px; }
        .guide-text h3 { font-size: 15px; margin-bottom: 4px; }
        .guide-text p { font-size: 13px; color: var(--text-dim); }
        .winning-scroll { background: var(--card-bg); border-radius: 12px; padding: 10px; height: 250px; overflow-y: auto; margin-bottom: 20px; border: 1px solid #2d333d; }
        .win-row { display: flex; justify-content: space-between; padding: 8px 5px; border-bottom: 1px solid #2d333d; font-size: 13px; }
        .win-user { color: var(--text-dim); }
        .win-amt { color: #4caf50; font-weight: bold; }
        .pro-badges { display: flex; justify-content: space-around; padding: 20px 0; border-top: 1px solid #2d333d; border-bottom: 1px solid #2d333d; margin-bottom: 20px; }
        .badge-item { text-align: center; font-size: 11px; color: var(--text-dim); }
        .badge-item i { display: block; font-size: 24px; color: var(--accent-gold); margin-bottom: 5px; }
        .comments-sec { margin-bottom: 20px; }
        .comment-card { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 10px; border: 1px solid #2d333d; }
        .comment-user { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
        .comment-user img { width: 30px; height: 30px; border-radius: 50%; }
        .comment-user strong { font-size: 14px; }
        .stars { color: var(--accent-gold); font-size: 12px; }
        .comment-body { font-size: 13px; color: var(--text-dim); font-style: italic; }
        .faq-sec { margin-bottom: 20px; }
        .faq-item { background: var(--card-bg); border-radius: 10px; padding: 15px; margin-bottom: 10px; }
        .faq-item h3 { font-size: 15px; margin-bottom: 8px; color: var(--accent-gold); }
        .faq-item p { font-size: 13px; color: var(--text-dim); }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2d333d; z-index: 1000; }
        .nav-item { text-align: center; color: var(--text-dim); font-size: 11px; }
        .nav-item i { display: block; font-size: 18px; margin-bottom: 3px; }
        footer { background: #0d0f12; padding: 30px 15px 100px; text-align: center; color: var(--text-dim); font-size: 13px; }
        .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 20px; }
        .footer-links a { color: var(--text-dim); }
        .copy-text { font-size: 11px; opacity: 0.6; }