* { margin: 0; padding: 0; box-sizing: border-box; }
        body { background-color: #0f1218; color: #ffffff; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        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 #333; }
        .header-left { display: flex; align-items: center; gap: 10px; }
        .header-left img { width: 25px; height: 25px; border-radius: 5px; }
        .header-left strong { font-size: 16px; font-weight: normal; color: #f1c40f; }
        .header-right { display: flex; gap: 8px; }
        .btn { padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; }
        .btn-login { background: transparent; color: #fff; border: 1px solid #f1c40f; }
        .btn-register { background: linear-gradient(180deg, #f1c40f, #d4ac0d); color: #000; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .container { padding: 15px; max-width: 800px; margin: 0 auto; }
        .jackpot-card { background: linear-gradient(135deg, #2c3e50, #000); border: 2px solid #f1c40f; border-radius: 15px; padding: 20px; text-align: center; margin-bottom: 20px; box-shadow: 0 0 20px rgba(241, 196, 15, 0.2); }
        .jackpot-title { color: #f1c40f; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #fff; margin: 10px 0; font-family: monospace; }
        .section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 15px; border-left: 4px solid #f1c40f; padding-left: 10px; }
        .section-header h2 { font-size: 18px; text-transform: uppercase; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; border: 1px solid #333; transition: transform 0.2s; }
        .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; padding: 20px; border-radius: 15px; margin-bottom: 25px; border-top: 3px solid #f1c40f; }
        .intro-card h1 { font-size: 20px; margin-bottom: 12px; color: #f1c40f; }
        .intro-card p { font-size: 14px; color: #ccc; }
        .guidelines { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 25px; }
        .guide-item { background: #1a1d24; padding: 15px; border-radius: 10px; text-align: center; border: 1px solid #333; }
        .guide-item i { font-size: 24px; color: #f1c40f; margin-bottom: 8px; }
        .guide-item h3 { font-size: 14px; margin-bottom: 5px; }
        .winners-box { background: #1a1d24; border-radius: 15px; padding: 15px; margin-bottom: 25px; height: 300px; overflow-y: auto; border: 1px solid #333; }
        .winner-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #2a2d34; font-size: 13px; }
        .winner-name { color: #f1c40f; }
        .winner-amount { color: #2ecc71; font-weight: bold; }
        .pro-elements { display: flex; justify-content: space-around; padding: 20px 0; background: #16191f; border-radius: 15px; margin-bottom: 25px; }
        .pro-item { text-align: center; font-size: 11px; color: #888; }
        .pro-item i { font-size: 20px; color: #f1c40f; display: block; margin-bottom: 5px; }
        .comments { margin-bottom: 25px; }
        .comment-card { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 10px; border-left: 3px solid #f1c40f; }
        .comment-user { font-weight: bold; font-size: 14px; display: flex; align-items: center; gap: 8px; margin-bottom: 5px; }
        .comment-stars { color: #f1c40f; font-size: 12px; }
        .comment-text { font-size: 13px; color: #bbb; }
        .faq-section { margin-bottom: 25px; }
        .faq-item { background: #1a1d24; border-radius: 10px; margin-bottom: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; font-size: 14px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #333; }
        .faq-answer { padding: 15px; font-size: 13px; color: #bbb; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #333; z-index: 1000; }
        .nav-item { text-align: center; color: #888; font-size: 11px; }
        .nav-item i { font-size: 18px; display: block; margin-bottom: 2px; }
        .nav-item:hover { color: #f1c40f; }
        footer { background: #1a1d24; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #333; }
        .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 20px; }
        .footer-links a { color: #888; font-size: 13px; }
        .footer-links a:hover { color: #f1c40f; }
        .footer-copy { font-size: 12px; color: #555; }