* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1218; color: #ffffff; line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        header { background: #1a1d24; height: 60px; display: flex; align-items: center; justify-content: space-between; padding: 0 15px; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2d323d; }
        .logo-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-box strong { font-size: 16px; font-weight: normal; color: #ffd700; }
        .header-btns { display: flex; gap: 10px; }
        .btn-login, .btn-register { padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; }
        .btn-login { background: transparent; color: #ffffff; border: 1px solid #4a4e5a; }
        .btn-register { background: linear-gradient(180deg, #ffde00 0%, #ff9900 100%); color: #000; }
        main { max-width: 600px; margin: 0 auto; padding: 10px; }
        .banner { width: 100%; aspect-ratio: 2/1; border-radius: 12px; overflow: hidden; margin-bottom: 15px; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section { background: linear-gradient(135deg, #2c3e50, #000000); border: 2px solid #ffd700; border-radius: 15px; padding: 20px; text-align: center; margin-bottom: 20px; position: relative; overflow: hidden; }
        .jackpot-title { font-size: 14px; color: #ffd700; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #ffffff; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); margin: 10px 0; }
        .section-header { display: flex; align-items: center; gap: 10px; margin: 20px 0 15px; }
        .section-header i { color: #ffd700; font-size: 20px; }
        .section-header h2 { font-size: 18px; font-weight: 600; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 25px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; border: 1px solid #2d323d; transition: transform 0.2s; }
        .game-card:active { transform: scale(0.96); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 8px; text-align: center; }
        .game-info p { font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-card { background: #1a1d24; border-radius: 15px; padding: 20px; margin: 25px 0; border: 1px solid #2d323d; }
        .intro-card h1 { font-size: 20px; color: #ffd700; margin-bottom: 12px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #a0a5b1; text-align: justify; }
        .guidelines-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 25px; }
        .guide-item { background: #1a1d24; padding: 15px; border-radius: 12px; text-align: center; border-bottom: 3px solid #ffd700; }
        .guide-item i { font-size: 24px; color: #ffd700; margin-bottom: 8px; }
        .guide-item h3 { font-size: 14px; margin-bottom: 5px; }
        .winners-box { background: #1a1d24; border-radius: 15px; padding: 15px; margin-bottom: 25px; max-height: 300px; overflow-y: auto; }
        .winner-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid #2d323d; font-size: 13px; }
        .winner-name { color: #ffd700; }
        .winner-amt { color: #4caf50; font-weight: bold; }
        .pro-elements { display: flex; justify-content: space-around; background: #1a1d24; padding: 20px; border-radius: 15px; margin-bottom: 25px; flex-wrap: wrap; gap: 15px; }
        .pro-item { text-align: center; width: 45%; }
        .pro-item i { font-size: 30px; color: #ffd700; margin-bottom: 10px; }
        .pro-item span { display: block; font-size: 12px; font-weight: 600; }
        .comments-list { margin-bottom: 25px; }
        .comment-card { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 10px; border-left: 4px solid #ffd700; }
        .comment-user { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .user-avatar { width: 30px; height: 30px; background: #3d424d; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; }
        .rating { color: #ffcc00; font-size: 12px; }
        .comment-text { font-size: 13px; color: #ced4da; font-style: italic; }
        .faq-section { margin-bottom: 30px; }
        .faq-item { background: #1a1d24; border-radius: 10px; padding: 15px; margin-bottom: 10px; }
        .faq-question { font-weight: 600; font-size: 15px; color: #ffd700; margin-bottom: 8px; display: flex; align-items: flex-start; gap: 8px; }
        .faq-answer { font-size: 14px; color: #a0a5b1; line-height: 1.5; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; height: 65px; background: #1a1d24; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #2d323d; z-index: 1000; padding: 0 5px; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #a0a5b1; font-size: 11px; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: #ffd700; }
        .download-nav { background: #ffd700; color: #000; width: 45px; height: 45px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-top: -25px; box-shadow: 0 -4px 10px rgba(255, 215, 0, 0.3); }
        .download-nav i { color: #000; font-size: 22px; }
        footer { background: #11141a; padding: 30px 15px; text-align: center; border-top: 1px solid #2d323d; }
        .footer-row { margin-bottom: 20px; display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; }
        .footer-link { font-size: 13px; color: #a0a5b1; transition: color 0.2s; }
        .footer-link:hover { color: #ffd700; }
        .copyright { font-size: 12px; color: #6c757d; border-top: 1px solid #2d323d; padding-top: 20px; }