:root {
            --primary-bg: #1a1d24;
            --card-bg: #252932;
            --accent-gold: #f3ba2f;
            --text-white: #ffffff;
            --text-gray: #aeb3b7;
            --btn-grad: linear-gradient(180deg, #f3ba2f 0%, #d4a017 100%);
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: var(--primary-bg); color: var(--text-white); line-height: 1.6; -webkit-tap-highlight-color: transparent; }
        a { text-decoration: none; color: inherit; }
        header { position: sticky; top: 0; z-index: 1000; background: #121418; padding: 10px 15px; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 2px 10px rgba(0,0,0,0.5); }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; object-fit: contain; }
        .header-left strong { font-size: 16px; font-weight: normal; color: var(--accent-gold); }
        .header-right { display: flex; gap: 10px; }
        .btn-login, .btn-register { padding: 6px 15px; border-radius: 20px; font-size: 13px; font-weight: 600; cursor: pointer; border: none; }
        .btn-login { background: transparent; color: var(--text-white); border: 1px solid var(--text-gray); }
        .btn-register { background: var(--btn-grad); color: #000; }
        main { padding-bottom: 80px; }
        .banner { width: 100%; aspect-ratio: 2/1; display: block; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .section-title { padding: 20px 15px 10px; font-size: 18px; color: var(--accent-gold); display: flex; align-items: center; gap: 8px; }
        .section-title i { font-size: 16px; }
        .jackpot-container { margin: 15px; padding: 20px; background: radial-gradient(circle at center, #3a3f4b 0%, #252932 100%); border-radius: 15px; text-align: center; border: 1px solid #444; }
        .jackpot-title { font-size: 14px; text-transform: uppercase; letter-spacing: 2px; color: var(--text-gray); }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: var(--accent-gold); text-shadow: 0 0 10px rgba(243,186,47,0.5); margin: 5px 0; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 15px; }
        .game-card { background: var(--card-bg); border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; transition: transform 0.2s; }
        .game-card:active { transform: scale(0.95); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card span { padding: 8px; font-size: 12px; text-align: center; 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(--accent-gold); }
        .intro-card h1 { font-size: 18px; margin-bottom: 10px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: var(--text-gray); text-align: justify; }
        .guidelines { padding: 0 15px; margin-bottom: 20px; }
        .guide-item { background: #2a2f38; padding: 15px; border-radius: 10px; margin-bottom: 10px; display: flex; align-items: center; gap: 12px; }
        .guide-item i { color: var(--accent-gold); font-size: 20px; }
        .winners-list { margin: 0 15px 20px; background: var(--card-bg); border-radius: 15px; overflow: hidden; }
        .winner-row { display: flex; justify-content: space-between; padding: 10px 15px; border-bottom: 1px solid #333; font-size: 13px; }
        .winner-row:last-child { border-bottom: none; }
        .winner-name { color: var(--text-gray); }
        .winner-amount { color: #4caf50; font-weight: bold; }
        .trust-elements { display: flex; justify-content: space-around; padding: 20px 15px; background: #121418; margin: 20px 0; }
        .trust-item { text-align: center; font-size: 11px; color: var(--text-gray); }
        .trust-item i { display: block; font-size: 24px; color: var(--accent-gold); margin-bottom: 5px; }
        .comments-section { padding: 0 15px; }
        .comment-card { background: #2a2f38; padding: 15px; border-radius: 12px; margin-bottom: 15px; position: relative; }
        .comment-user { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .comment-user i { font-size: 30px; color: #555; }
        .comment-user .name { font-weight: 600; font-size: 14px; }
        .stars { color: var(--accent-gold); font-size: 10px; }
        .comment-text { font-size: 13px; color: var(--text-gray); font-style: italic; }
        .faq-section { padding: 0 15px; margin-top: 20px; }
        .faq-item { margin-bottom: 15px; background: var(--card-bg); border-radius: 10px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; font-size: 14px; border-bottom: 1px solid #333; color: var(--accent-gold); }
        .faq-answer { padding: 15px; font-size: 13px; color: var(--text-gray); text-align: justify; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #121418; display: flex; justify-content: space-around; padding: 10px 0 25px; border-top: 1px solid #333; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; color: var(--text-gray); width: 20%; }
        .nav-item i { font-size: 18px; }
        .nav-item.active { color: var(--accent-gold); }
        footer { background: #0d0f12; padding: 30px 15px 100px; text-align: center; }
        .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 20px; font-size: 13px; }
        .footer-links a { color: var(--text-gray); }
        .footer-contact { margin-bottom: 20px; border-bottom: 1px solid #222; padding-bottom: 20px; }
        .footer-copy { font-size: 12px; color: #555; }