:root {
            --primary-bg: #0f1218;
            --card-bg: #1a1d24;
            --accent: #d4af37;
            --text-main: #ffffff;
            --text-dim: #a0a0a0;
            --btn-grad: linear-gradient(135deg, #d4af37 0%, #f9e195 100%);
            --btn-red: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background: var(--primary-bg); color: var(--text-main); line-height: 1.5; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        header { position: sticky; top: 0; z-index: 100; background: #16191f; height: 60px; display: flex; align-items: center; justify-content: space-between; padding: 0 15px; border-bottom: 1px solid #2a2e35; }
        .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: 600; border: none; cursor: pointer; }
        .btn-login { background: transparent; color: var(--accent); border: 1px solid var(--accent); }
        .btn-reg { background: var(--btn-grad); color: #000; }
        main { max-width: 600px; margin: 0 auto; padding: 10px; }
        .banner { width: 100%; display: block; margin-bottom: 15px; border-radius: 12px; overflow: hidden; aspect-ratio: 2/1; 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: 20px; border: 1px solid #d4af3755; position: relative; overflow: hidden; }
        .jackpot-label { color: var(--accent); font-size: 12px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-val { font-size: 28px; font-weight: 800; color: #fff; text-shadow: 0 0 10px rgba(212, 175, 55, 0.5); margin: 5px 0; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
        .game-card { background: var(--card-bg); border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; transition: transform 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-info { padding: 8px; font-size: 13px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-card { background: var(--card-bg); border-radius: 12px; padding: 20px; margin-bottom: 20px; border-left: 4px solid var(--accent); }
        .intro-card h1 { font-size: 18px; margin-bottom: 10px; line-height: 1.3; color: var(--accent); }
        .intro-card p { font-size: 14px; color: var(--text-dim); }
        .section-title { font-size: 16px; margin: 15px 0 10px; display: flex; align-items: center; gap: 8px; color: var(--accent); }
        .guidelines { display: grid; grid-template-columns: 1fr; gap: 10px; margin-bottom: 20px; }
        .guide-item { background: var(--card-bg); padding: 12px; border-radius: 10px; font-size: 14px; }
        .guide-item h3 { font-size: 15px; margin-bottom: 5px; color: #eee; }
        .winners-box { background: var(--card-bg); border-radius: 12px; height: 200px; overflow-y: auto; padding: 10px; margin-bottom: 20px; }
        .winner-row { display: flex; justify-content: space-between; padding: 8px 5px; font-size: 12px; border-bottom: 1px solid #2a2e35; }
        .winner-row span:nth-child(2) { color: #2ecc71; font-weight: 700; }
        .trust-badges { display: flex; justify-content: space-around; padding: 15px 0; border-top: 1px solid #2a2e35; margin-top: 15px; }
        .badge-item { text-align: center; font-size: 10px; color: var(--text-dim); }
        .badge-item i { font-size: 20px; color: var(--accent); margin-bottom: 5px; display: block; }
        .comments { margin-bottom: 20px; }
        .comment-card { background: var(--card-bg); border-radius: 12px; padding: 15px; margin-bottom: 10px; }
        .comment-user { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; font-size: 13px; font-weight: bold; }
        .stars { color: #f1c40f; font-size: 10px; }
        .comment-text { font-size: 13px; color: var(--text-dim); font-style: italic; }
        .faq-section { background: var(--card-bg); border-radius: 12px; padding: 5px; margin-bottom: 20px; }
        .faq-item { padding: 15px; border-bottom: 1px solid #2a2e35; }
        .faq-item:last-child { border-bottom: none; }
        .faq-item h3 { font-size: 14px; margin-bottom: 8px; color: var(--accent); }
        .faq-item p { font-size: 13px; color: var(--text-dim); }
        .navigator { position: fixed; bottom: 0; width: 100%; background: #16191f; border-top: 1px solid #2a2e35; display: flex; justify-content: space-around; padding: 10px 0; z-index: 1000; }
        .nav-link { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; color: var(--text-dim); }
        .nav-link i { font-size: 18px; }
        footer { background: #0a0c10; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #2a2e35; }
        .footer-row { margin-bottom: 20px; }
        .footer-links { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; margin-bottom: 10px; }
        .footer-links a { font-size: 13px; color: var(--text-dim); }
        .copyright { font-size: 12px; color: #555; }