:root {
            --primary-bg: #1a1d24;
            --card-bg: #252932;
            --accent-gold: #d4af37;
            --accent-blue: #3498db;
            --text-main: #ffffff;
            --text-dim: #a0a0a0;
            --btn-register: linear-gradient(180deg, #ffd700, #b8860b);
            --btn-login: #3e4451;
            --shadow: 0 4px 15px rgba(0,0,0,0.5);
        }
        * { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
        body { background-color: var(--primary-bg); color: var(--text-main); font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; line-height: 1.5; overflow-x: hidden; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        header { background: #121418; height: 60px; display: flex; align-items: center; justify-content: space-between; padding: 0 15px; position: sticky; top: 0; z-index: 1000; box-shadow: var(--shadow); }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; border-radius: 5px; }
        .header-left strong { font-size: 16px; font-weight: normal; letter-spacing: 0.5px; }
        .header-right { display: flex; gap: 10px; }
        .btn { padding: 6px 15px; border-radius: 20px; font-weight: 600; font-size: 14px; border: none; cursor: pointer; transition: transform 0.2s; }
        .btn:active { transform: scale(0.95); }
        .btn-login { background-color: var(--btn-login); color: #fff; }
        .btn-register { background: var(--btn-register); color: #000; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; overflow: hidden; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box { margin: 15px; background: radial-gradient(circle, #2c3e50 0%, #000000 100%); padding: 20px; border-radius: 15px; text-align: center; border: 1px solid var(--accent-gold); box-shadow: inset 0 0 20px rgba(212,175,55,0.2); }
        .jackpot-title { font-size: 14px; color: var(--accent-gold); text-transform: uppercase; margin-bottom: 5px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #fff; text-shadow: 0 0 10px rgba(255,255,255,0.5); }
        .section-title { padding: 0 15px; margin: 20px 0 10px; font-size: 18px; border-left: 4px solid var(--accent-gold); margin-left: 15px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: var(--card-bg); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); transition: transform 0.2s; }
        .game-card:active { transform: scale(0.98); }
        .game-card img { width: 100%; height: auto; display: block; }
        .game-info { padding: 10px; text-align: center; }
        .game-info h3 { font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 400; }
        .intro-card { margin: 15px; padding: 20px; background: var(--card-bg); border-radius: 15px; border: 1px solid #333; }
        .intro-card h1 { font-size: 20px; color: var(--accent-gold); margin-bottom: 15px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: var(--text-dim); }
        .guidelines { padding: 0 15px; margin-top: 20px; }
        .guide-item { background: #2a2e38; padding: 15px; border-radius: 10px; margin-bottom: 10px; }
        .guide-item h4 { color: var(--accent-gold); margin-bottom: 5px; font-size: 15px; }
        .guide-item p { font-size: 13px; color: #ccc; }
        .winners-box { margin: 15px; background: #121418; border-radius: 15px; padding: 15px; height: 300px; overflow-y: hidden; position: relative; }
        .winner-scroll { animation: scrollList 30s linear infinite; }
        @keyframes scrollList { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .winner-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #222; font-size: 13px; }
        .winner-name { color: var(--accent-blue); }
        .winner-prize { color: #2ecc71; font-weight: bold; }
        .trust-elements { display: flex; justify-content: space-around; padding: 20px 15px; background: #1a1d24; flex-wrap: wrap; gap: 15px; }
        .trust-item { text-align: center; width: 30%; }
        .trust-item i { font-size: 24px; color: var(--accent-gold); margin-bottom: 8px; }
        .trust-item span { display: block; font-size: 11px; color: var(--text-dim); }
        .comments { padding: 0 15px; margin-bottom: 20px; }
        .comment-card { background: var(--card-bg); padding: 15px; border-radius: 12px; margin-bottom: 12px; border-left: 3px solid var(--accent-blue); }
        .comment-user { font-weight: bold; font-size: 14px; margin-bottom: 5px; display: flex; align-items: center; gap: 8px; }
        .comment-user i { color: var(--accent-gold); font-size: 12px; }
        .comment-text { font-size: 13px; font-style: italic; color: #ddd; }
        .faq { padding: 0 15px; }
        .faq-item { margin-bottom: 15px; background: #252932; padding: 15px; border-radius: 10px; }
        .faq-item h3 { font-size: 15px; color: var(--accent-gold); margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: #bbb; line-height: 1.6; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; height: 65px; background: #121418; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #333; z-index: 1001; }
        .nav-item { text-align: center; color: var(--text-dim); }
        .nav-item i { font-size: 20px; display: block; margin-bottom: 4px; }
        .nav-item span { font-size: 11px; }
        footer { padding: 30px 15px 100px; background: #0c0e12; text-align: center; border-top: 2px solid #222; }
        .footer-row { margin-bottom: 20px; }
        .footer-links { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; margin-bottom: 15px; }
        .footer-links a { color: var(--text-dim); font-size: 13px; }
        .copyright { font-size: 12px; color: #666; }