:root {
            --bg-dark: #0f1217;
            --card-bg: #1a1d24;
            --primary-gold: #d4af37;
            --primary-gold-dark: #b8860b;
            --text-light: #f0f0f0;
            --text-muted: #a0a0a0;
            --accent-red: #ff4d4d;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: var(--bg-dark); color: var(--text-light); line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; height: auto; display: block; }
        header { background: #1a1d24; padding: 10px 15px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2a2e38; }
        .logo-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; }
        .logo-box strong { font-size: 16px; font-weight: normal; color: var(--primary-gold); }
        .header-btns { display: flex; gap: 10px; }
        .btn-login, .btn-reg { padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; }
        .btn-login { background: transparent; color: var(--text-light); border: 1px solid var(--primary-gold); }
        .btn-reg { background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-dark)); color: #000; }
        .banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-sec { margin: 15px; background: linear-gradient(45deg, #2c1a1a, #1a1d24); border: 1px solid var(--primary-gold); border-radius: 12px; padding: 15px; text-align: center; }
        .jackpot-title { font-size: 14px; color: var(--primary-gold); text-transform: uppercase; letter-spacing: 1px; }
        .jackpot-amount { font-size: 28px; font-weight: bold; color: #fff; text-shadow: 0 0 10px rgba(212,175,55,0.5); margin: 5px 0; font-family: monospace; }
        .section-title { padding: 10px 15px; font-size: 18px; color: var(--primary-gold); display: flex; align-items: center; gap: 8px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 15px 15px; }
        .game-card { background: var(--card-bg); border-radius: 12px; overflow: hidden; box-shadow: 0 4px 6px rgba(0,0,0,0.3); transition: transform 0.2s; }
        .game-card:active { transform: scale(0.95); }
        .game-img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-info { padding: 8px; text-align: center; font-size: 13px; font-weight: 500; }
        .intro-card { margin: 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: 10px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: var(--text-muted); }
        .guidelines { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 15px; }
        .guide-item { background: var(--card-bg); padding: 15px; border-radius: 10px; text-align: center; }
        .guide-item i { font-size: 24px; color: var(--primary-gold); margin-bottom: 8px; }
        .guide-item h3 { font-size: 14px; margin-bottom: 5px; }
        .guide-item p { font-size: 12px; color: var(--text-muted); }
        .winners-box { margin: 15px; background: var(--card-bg); border-radius: 12px; padding: 10px; height: 200px; overflow-y: hidden; position: relative; }
        .winners-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 5px; border-bottom: 1px solid #2a2e38; font-size: 13px; }
        .winner-name { color: var(--text-muted); }
        .winner-amount { color: #4caf50; font-weight: bold; }
        .trust-elements { display: flex; justify-content: space-around; padding: 20px 15px; background: #15181d; margin: 15px 0; }
        .trust-item { text-align: center; font-size: 10px; color: var(--text-muted); }
        .trust-item i { font-size: 20px; color: var(--primary-gold); display: block; margin-bottom: 5px; }
        .comments { padding: 15px; }
        .comment-card { background: var(--card-bg); padding: 15px; border-radius: 12px; margin-bottom: 10px; }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .comment-avatar { width: 35px; height: 35px; border-radius: 50%; background: #333; display: flex; align-items: center; justify-content: center; font-weight: bold; }
        .comment-user { font-size: 14px; font-weight: 600; }
        .comment-rating { color: #ffc107; font-size: 12px; }
        .comment-text { font-size: 13px; color: var(--text-muted); }
        .faq-section { padding: 15px; }
        .faq-item { background: var(--card-bg); margin-bottom: 10px; border-radius: 10px; overflow: hidden; }
        .faq-q { padding: 15px; font-weight: 600; font-size: 14px; display: flex; justify-content: space-between; cursor: pointer; color: var(--primary-gold); }
        .faq-a { padding: 0 15px 15px; font-size: 13px; color: var(--text-muted); }
        .navigator { position: fixed; bottom: 0; width: 100%; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2a2e38; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; font-size: 11px; color: var(--text-muted); }
        .nav-item i { font-size: 18px; margin-bottom: 4px; }
        .nav-item.active { color: var(--primary-gold); }
        footer { background: #0b0d10; padding: 30px 15px 100px; text-align: center; border-top: 2px solid #1a1d24; }
        .footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 20px; }
        .footer-links a { font-size: 13px; color: var(--text-muted); }
        .copyright { font-size: 12px; color: #555; }