:root {
            --primary-bg: #1a1d24;
            --card-bg: #242832;
            --accent-gold: #ffc107;
            --text-white: #ffffff;
            --text-gray: #a0a0a0;
            --action-green: #28a745;
            --btn-grad: linear-gradient(180deg, #ffd700, #ff8c00);
        }
        * { 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; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; display: block; border-radius: 8px; }
        header { height: 60px; background: #11141a; display: flex; align-items: center; justify-content: space-between; padding: 0 15px; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.5); }
        .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(--accent-gold); letter-spacing: 1px; }
        .auth-btns { display: flex; gap: 8px; }
        .btn { padding: 6px 16px; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: transform 0.2s; }
        .btn:active { transform: scale(0.95); }
        .btn-login { background: transparent; border: 1px solid var(--accent-gold); color: var(--accent-gold); }
        .btn-reg { background: var(--btn-grad); color: #000; }
        .banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; margin-bottom: 20px; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        main { padding: 0 12px; }
        .jackpot-sec { background: radial-gradient(circle, #4a0e0e, #1a1d24); padding: 20px; border-radius: 15px; text-align: center; margin-bottom: 20px; border: 1px solid #5a1a1a; }
        .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,193,7,0.5); }
        .sec-title { display: flex; align-items: center; gap: 10px; margin: 25px 0 15px; font-size: 18px; color: var(--accent-gold); }
        .sec-title i { font-size: 20px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 25px; }
        .game-card { background: var(--card-bg); border-radius: 12px; overflow: hidden; transition: 0.3s; position: relative; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-info { padding: 8px; text-align: center; font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; background: rgba(0,0,0,0.3); }
        .intro-card { background: var(--card-bg); padding: 20px; border-radius: 15px; margin-bottom: 25px; border-left: 4px solid var(--accent-gold); }
        .intro-card h1 { font-size: 18px; line-height: 1.4; margin-bottom: 12px; color: var(--accent-gold); }
        .intro-card p { font-size: 14px; color: var(--text-gray); }
        .guidelines { display: grid; grid-template-columns: 1fr; gap: 12px; margin-bottom: 30px; }
        .guide-item { background: #2a2e38; padding: 15px; border-radius: 12px; display: flex; gap: 15px; align-items: center; }
        .guide-item i { font-size: 24px; color: var(--accent-gold); width: 40px; text-align: center; }
        .guide-item h3 { font-size: 15px; margin-bottom: 4px; }
        .guide-item p { font-size: 12px; color: var(--text-gray); }
        .winners-scroll { background: #11141a; border-radius: 15px; padding: 15px; height: 300px; overflow-y: auto; margin-bottom: 30px; }
        .win-record { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #242832; font-size: 12px; }
        .win-user { color: var(--text-gray); }
        .win-amount { color: var(--action-green); font-weight: bold; }
        .casino-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 30px 0; text-align: center; }
        .feat-item { font-size: 10px; color: var(--text-gray); }
        .feat-item i { font-size: 20px; color: var(--accent-gold); margin-bottom: 5px; display: block; }
        .comments-sec { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 30px; }
        .comment-card { background: var(--card-bg); padding: 15px; border-radius: 12px; }
        .com-user { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .user-avatar { width: 30px; height: 30px; border-radius: 50%; background: #444; display: flex; align-items: center; justify-content: center; font-size: 12px; }
        .com-rating { color: var(--accent-gold); font-size: 10px; }
        .com-text { font-size: 13px; font-style: italic; color: var(--text-gray); }
        .faq-sec { margin-bottom: 40px; }
        .faq-item { background: var(--card-bg); margin-bottom: 10px; border-radius: 8px; padding: 15px; }
        .faq-item h3 { font-size: 15px; color: var(--accent-gold); margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: var(--text-gray); }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; height: 65px; background: #11141a; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #333; z-index: 1001; }
        .nav-link { display: flex; flex-direction: column; align-items: center; font-size: 11px; color: var(--text-gray); }
        .nav-link i { font-size: 18px; margin-bottom: 4px; }
        .nav-link:nth-child(3) i { color: var(--accent-gold); font-size: 24px; }
        footer { background: #0b0d11; padding: 30px 15px 100px; text-align: center; border-top: 2px solid #222; }
        .foot-row { margin-bottom: 20px; display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
        .foot-link { font-size: 13px; color: var(--text-gray); }
        .copyright { font-size: 12px; color: #555; margin-top: 20px; border-top: 1px solid #222; padding-top: 15px; }