:root {
            --primary-gold: #d4af37;
            --accent-gold: #f9e282;
            --dark-bg: #0f1216;
            --card-bg: #1a1d24;
            --text-main: #ffffff;
            --text-dim: #b0b3b8;
            --btn-grad: linear-gradient(135deg, #d4af37 0%, #8a6d3b 100%);
            --shadow: 0 4px 15px rgba(0,0,0,0.5);
        }
        * { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: var(--dark-bg); color: var(--text-main); line-height: 1.5; overflow-x: hidden; }
        header { position: sticky; top: 0; z-index: 1000; background: #16191e; padding: 10px 15px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #2a2e35; box-shadow: var(--shadow); }
        .logo-box { display: flex; align-items: center; gap: 8px; text-decoration: none; color: inherit; }
        .logo-box img { width: 25px; height: 25px; object-fit: contain; }
        .logo-box strong { font-size: 16px; font-weight: normal; letter-spacing: 1px; }
        .auth-btns { display: flex; gap: 10px; }
        .btn { padding: 6px 16px; border-radius: 20px; font-size: 14px; font-weight: bold; cursor: pointer; border: none; transition: transform 0.2s; }
        .btn-login { background: transparent; color: var(--primary-gold); border: 1px solid var(--primary-gold); }
        .btn-reg { background: var(--btn-grad); color: #000; }
        .btn:active { transform: scale(0.95); }
        main { padding-bottom: 80px; }
        .banner { width: 100%; aspect-ratio: 2/1; display: block; cursor: pointer; overflow: hidden; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container { background: #000; margin: 15px; padding: 20px; border-radius: 15px; border: 2px solid var(--primary-gold); text-align: center; box-shadow: 0 0 15px rgba(212,175,55,0.3); }
        .jackpot-label { font-size: 12px; color: var(--primary-gold); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 5px; }
        .jackpot-amount { font-size: 28px; font-weight: 800; color: #fff; text-shadow: 0 0 10px var(--primary-gold); font-family: monospace; }
        .section-title { padding: 20px 15px 10px; font-size: 18px; color: var(--accent-gold); display: flex; align-items: center; gap: 10px; }
        .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; text-decoration: none; color: inherit; box-shadow: var(--shadow); border: 1px solid #2a2e35; transition: transform 0.3s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 8px; text-align: center; }
        .game-info h3 { font-size: 13px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-card { margin: 20px 15px; padding: 20px; background: var(--card-bg); border-radius: 15px; border-left: 4px solid var(--primary-gold); }
        .intro-card h1 { font-size: 20px; margin-bottom: 12px; color: var(--primary-gold); }
        .intro-card p { font-size: 14px; color: var(--text-dim); }
        .trust-bar { display: flex; justify-content: space-around; padding: 20px 15px; background: #16191e; margin: 20px 0; }
        .trust-item { text-align: center; font-size: 10px; color: var(--text-dim); }
        .trust-item i { display: block; font-size: 24px; color: var(--primary-gold); margin-bottom: 5px; }
        .guidelines { margin: 20px 15px; display: grid; grid-template-columns: 1fr; gap: 10px; }
        .guide-item { background: #1d2127; padding: 15px; border-radius: 10px; border: 1px solid #2a2e35; }
        .guide-item h4 { font-size: 15px; color: var(--accent-gold); margin-bottom: 5px; }
        .guide-item p { font-size: 13px; color: var(--text-dim); }
        .winners-box { margin: 20px 15px; padding: 15px; background: #000; border-radius: 15px; border: 1px solid #333; height: 300px; overflow-y: auto; }
        .winner-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #222; font-size: 13px; }
        .winner-name { color: var(--text-dim); }
        .winner-val { color: #4caf50; font-weight: bold; }
        .comments-section { padding: 15px; }
        .comment-card { background: var(--card-bg); padding: 15px; border-radius: 12px; margin-bottom: 15px; border: 1px solid #2a2e35; }
        .comment-user { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .user-avatar { width: 35px; height: 35px; border-radius: 50%; background: #343a40; display: flex; align-items: center; justify-content: center; font-weight: bold; color: var(--primary-gold); }
        .comment-text { font-size: 13px; font-style: italic; color: var(--text-dim); }
        .faq-section { padding: 15px; }
        .faq-item { background: #1d2127; margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-q { padding: 15px; font-size: 14px; font-weight: bold; cursor: pointer; color: var(--accent-gold); position: relative; }
        .faq-a { padding: 0 15px 15px; font-size: 13px; color: var(--text-dim); }
        .navigator { position: fixed; bottom: 0; width: 100%; background: #16191e; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2a2e35; z-index: 1000; }
        .nav-item { text-align: center; text-decoration: none; color: var(--text-dim); font-size: 11px; flex: 1; }
        .nav-item i { display: block; font-size: 18px; margin-bottom: 3px; }
        .nav-item.active { color: var(--primary-gold); }
        footer { background: #0a0b0d; padding: 30px 20px 100px; text-align: center; border-top: 2px solid #1a1d24; }
        .footer-row { margin-bottom: 20px; display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; }
        .footer-link { color: var(--text-dim); text-decoration: none; font-size: 13px; }
        .footer-link:hover { color: var(--primary-gold); }
        .copyright { font-size: 12px; color: #555; border-top: 1px solid #222; padding-top: 15px; }