* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #0f1218; color: #ffffff; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; line-height: 1.5; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        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; }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: normal; color: #f3ba2f; }
        .header-right { display: flex; gap: 10px; }
        .btn-login { background: #2d323d; color: #fff; border: none; padding: 6px 15px; border-radius: 20px; font-size: 14px; cursor: pointer; }
        .btn-register { background: linear-gradient(180deg, #f3ba2f 0%, #d4a017 100%); color: #000; border: none; padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: bold; cursor: pointer; }
        main { padding: 10px; max-width: 800px; margin: 0 auto; }
        .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; }
        .section-title { font-size: 18px; margin: 20px 0 10px; display: flex; align-items: center; gap: 8px; color: #f3ba2f; }
        .section-title i { font-size: 16px; }
        .jackpot-box { background: linear-gradient(45deg, #2c1a05, #4a3208); border: 2px solid #f3ba2f; border-radius: 15px; padding: 20px; text-align: center; margin-bottom: 20px; box-shadow: 0 4px 15px rgba(243, 186, 47, 0.2); }
        .jackpot-label { font-size: 14px; text-transform: uppercase; color: #f3ba2f; letter-spacing: 2px; }
        .jackpot-amount { font-size: 32px; font-weight: bold; color: #fff; margin: 5px 0; text-shadow: 0 0 10px rgba(255,255,255,0.5); }
        .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 img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 8px; text-align: center; }
        .game-info h3 { font-size: 13px; font-weight: normal; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-card { background: #1a1d24; border-radius: 16px; padding: 20px; margin-bottom: 25px; border-left: 4px solid #f3ba2f; }
        .intro-card h1 { font-size: 20px; margin-bottom: 10px; line-height: 1.3; color: #f3ba2f; }
        .intro-card p { font-size: 14px; color: #a0a0a0; }
        .guideline-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 25px; }
        .guideline-item { background: #1a1d24; padding: 15px; border-radius: 12px; text-align: center; }
        .guideline-item i { font-size: 24px; color: #f3ba2f; margin-bottom: 8px; }
        .guideline-item h3 { font-size: 14px; color: #fff; }
        .winner-list { background: #1a1d24; border-radius: 12px; height: 200px; overflow-y: auto; padding: 10px; margin-bottom: 25px; border: 1px solid #2d323d; }
        .winner-item { display: flex; justify-content: space-between; padding: 8px 5px; border-bottom: 1px solid #252932; font-size: 13px; }
        .winner-name { color: #f3ba2f; }
        .winner-amount { color: #4caf50; font-weight: bold; }
        .trust-badges { display: flex; justify-content: space-around; padding: 20px 0; margin-bottom: 25px; opacity: 0.7; }
        .trust-badges i { font-size: 30px; }
        .comment-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 25px; }
        .comment-card { background: #1a1d24; padding: 15px; border-radius: 12px; position: relative; }
        .comment-user { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .comment-avatar { width: 35px; height: 35px; border-radius: 50%; background: #2d323d; display: flex; align-items: center; justify-content: center; color: #f3ba2f; }
        .comment-stars { color: #f3ba2f; font-size: 12px; }
        .comment-text { font-size: 13px; font-style: italic; color: #d0d0d0; }
        .faq-container { margin-bottom: 25px; }
        .faq-item { background: #1a1d24; border-radius: 12px; margin-bottom: 10px; overflow: hidden; border: 1px solid #2d323d; }
        .faq-question { padding: 15px; font-weight: bold; font-size: 14px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 0 15px 15px; font-size: 13px; color: #a0a0a0; border-top: 1px solid #252932; padding-top: 10px; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; height: 60px; background: #1a1d24; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #2d323d; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; color: #a0a0a0; font-size: 11px; gap: 4px; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: #f3ba2f; }
        footer { background: #0a0c10; padding: 30px 15px 80px; text-align: center; border-top: 1px solid #1a1d24; }
        .footer-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 15px; font-size: 13px; color: #808080; }
        .footer-row a:hover { color: #f3ba2f; }
        .copyright { font-size: 12px; color: #505050; margin-top: 10px; }