* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1116; color: #ffffff; line-height: 1.5; -webkit-tap-highlight-color: transparent; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }
        header { background: #1a1d24; height: 60px; 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); }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; border-radius: 5px; }
        .header-left strong { font-size: 18px; font-weight: normal; color: #f3c75e; letter-spacing: 1px; }
        .header-right { display: flex; gap: 10px; }
        .btn { padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: bold; border: none; cursor: pointer; transition: 0.3s; }
        .btn-login { background: transparent; color: #f3c75e; border: 1px solid #f3c75e; }
        .btn-register { background: linear-gradient(180deg, #f3c75e 0%, #d4a017 100%); color: #000; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; overflow: hidden; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        main { padding: 15px; display: flex; flex-direction: column; gap: 20px; }
        .jackpot-card { background: linear-gradient(135deg, #1a1d24 0%, #2a2e38 100%); border: 1px solid #333; border-radius: 15px; padding: 20px; text-align: center; position: relative; overflow: hidden; }
        .jackpot-card::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(243,199,94,0.1) 0%, transparent 70%); }
        .jackpot-title { color: #f3c75e; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #ffffff; text-shadow: 0 0 10px rgba(243,199,94,0.5); }
        .jackpot-amount span { color: #f3c75e; margin-right: 5px; }
        .section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 15px; border-left: 4px solid #f3c75e; padding-left: 10px; }
        .section-header h2 { font-size: 18px; font-weight: 600; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
        .game-item { background: #1a1d24; border-radius: 12px; overflow: hidden; border: 1px solid #2a2e38; transition: transform 0.2s; }
        .game-item:active { transform: scale(0.95); }
        .game-img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-info { padding: 8px; text-align: center; }
        .game-title { font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #ccc; }
        .intro-card { background: #1a1d24; border-radius: 15px; padding: 20px; border: 1px solid #2a2e38; }
        .intro-card h1 { font-size: 20px; color: #f3c75e; margin-bottom: 12px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #aaa; text-align: justify; }
        .guidelines-grid { display: grid; grid-template-columns: 1fr; gap: 15px; }
        .guide-item { background: #1a1d24; padding: 15px; border-radius: 12px; display: flex; align-items: flex-start; gap: 12px; border: 1px solid #2a2e38; }
        .guide-icon { color: #f3c75e; font-size: 20px; width: 40px; }
        .guide-content h3 { font-size: 16px; margin-bottom: 5px; color: #fff; }
        .guide-content p { font-size: 13px; color: #888; }
        .winners-box { background: #1a1d24; border-radius: 15px; padding: 15px; max-height: 300px; overflow-y: auto; border: 1px solid #2a2e38; }
        .winner-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #252932; font-size: 13px; }
        .winner-row:last-child { border-bottom: none; }
        .winner-name { color: #aaa; }
        .winner-prize { color: #4caf50; font-weight: bold; }
        .casino-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
        .feature-card { background: #1a1d24; padding: 15px 5px; border-radius: 10px; text-align: center; border: 1px solid #2a2e38; }
        .feature-card i { font-size: 24px; color: #f3c75e; margin-bottom: 8px; }
        .feature-card span { display: block; font-size: 11px; color: #ccc; }
        .comments-list { display: flex; flex-direction: column; gap: 12px; }
        .comment-card { background: #1a1d24; border-radius: 12px; padding: 15px; border: 1px solid #2a2e38; }
        .comment-user { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .user-avatar { width: 35px; height: 35px; border-radius: 50%; background: #333; display: flex; align-items: center; justify-content: center; color: #f3c75e; font-weight: bold; }
        .user-meta { flex: 1; }
        .user-name { font-size: 14px; font-weight: 600; }
        .user-rating { color: #f3c75e; font-size: 10px; }
        .comment-text { font-size: 13px; color: #aaa; font-style: italic; }
        .faq-section { display: flex; flex-direction: column; gap: 10px; }
        .faq-item { background: #1a1d24; border-radius: 10px; border: 1px solid #2a2e38; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; font-size: 14px; color: #f3c75e; display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 0 15px 15px 15px; font-size: 13px; color: #888; border-top: 1px solid #252932; padding-top: 10px; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; height: 65px; background: #1a1d24; display: flex; justify-content: space-around; align-items: center; z-index: 1000; border-top: 1px solid #333; box-shadow: 0 -2px 10px rgba(0,0,0,0.5); }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #888; font-size: 11px; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: #f3c75e; }
        footer { background: #0f1116; padding: 30px 15px; text-align: center; border-top: 1px solid #1a1d24; }
        .footer-row { margin-bottom: 20px; display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; }
        .footer-link { color: #888; font-size: 13px; transition: color 0.3s; }
        .footer-link:hover { color: #f3c75e; }
        .copyright { font-size: 12px; color: #555; border-top: 1px solid #1a1d24; padding-top: 20px; }