* { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1217; color: #ffffff; line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        header { background: #1a1d24; padding: 10px 15px; position: sticky; top: 0; z-index: 1000; border-bottom: 2px solid #d4af37; display: flex; align-items: center; justify-content: space-between; }
        .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: #d4af37; }
        .auth-btns { display: flex; gap: 10px; }
        .btn { padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: bold; cursor: pointer; border: none; transition: 0.3s; }
        .btn-login { background: transparent; color: #d4af37; border: 1px solid #d4af37; }
        .btn-register { background: linear-gradient(180deg, #ffd700, #d4af37); color: #000; }
        .main-content { 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-box { background: linear-gradient(135deg, #1a1d24 0%, #2a2e38 100%); border: 1px solid #d4af37; border-radius: 15px; padding: 20px; text-align: center; margin-bottom: 20px; position: relative; overflow: hidden; }
        .jackpot-title { font-size: 14px; color: #d4af37; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-size: 32px; font-weight: bold; color: #ffffff; text-shadow: 0 0 10px rgba(212,175,55,0.5); margin: 5px 0; }
        .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 #2a2e38; transition: transform 0.2s; }
        .game-card img { width: 100%; display: block; aspect-ratio: 1/1; object-fit: cover; }
        .game-info { padding: 8px; text-align: center; }
        .game-info h3 { font-size: 13px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #e0e0e0; }
        .intro-card { background: #1a1d24; border-radius: 15px; padding: 20px; margin-bottom: 25px; border-left: 4px solid #d4af37; }
        .intro-card h1 { font-size: 18px; color: #d4af37; margin-bottom: 10px; line-height: 1.4; }
        .intro-card p { font-size: 14px; color: #b0b0b0; }
        .section-title { font-size: 18px; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; color: #d4af37; }
        .section-title i { font-size: 16px; }
        .guideline-grid { display: grid; grid-template-columns: 1fr; gap: 10px; margin-bottom: 25px; }
        .guide-item { background: #1a1d24; padding: 15px; border-radius: 10px; display: flex; align-items: center; gap: 12px; }
        .guide-item i { color: #d4af37; font-size: 20px; width: 30px; text-align: center; }
        .winning-list { background: #1a1d24; border-radius: 15px; padding: 15px; height: 200px; overflow-y: auto; margin-bottom: 25px; border: 1px solid #2a2e38; }
        .win-record { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #2a2e38; font-size: 13px; }
        .win-user { color: #d4af37; }
        .win-amount { color: #00ff88; font-weight: bold; }
        .trust-elements { display: flex; justify-content: space-around; padding: 20px 0; margin-bottom: 25px; background: #16191f; border-radius: 12px; }
        .trust-item { text-align: center; font-size: 11px; color: #888; }
        .trust-item i { font-size: 24px; color: #d4af37; display: block; margin-bottom: 5px; }
        .comment-grid { display: flex; flex-direction: column; gap: 12px; margin-bottom: 25px; }
        .comment-card { background: #1a1d24; padding: 15px; border-radius: 12px; position: relative; }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .avatar { width: 35px; height: 35px; border-radius: 50%; background: #2a2e38; display: flex; align-items: center; justify-content: center; color: #d4af37; font-weight: bold; }
        .comment-body { font-size: 13px; color: #ccc; font-style: italic; }
        .stars { color: #ffd700; font-size: 10px; }
        .faq-section { margin-bottom: 25px; }
        .faq-item { background: #1a1d24; border-radius: 10px; margin-bottom: 10px; overflow: hidden; border: 1px solid #2a2e38; }
        .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: #b0b0b0; border-top: 1px solid #2a2e38; padding-top: 10px; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #d4af37; z-index: 1000; 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: 12px; }
        .nav-item.active, .nav-item:hover { color: #d4af37; }
        .nav-item i { font-size: 20px; }
        footer { background: #0a0c10; padding: 30px 15px; text-align: center; border-top: 1px solid #2a2e38; }
        .footer-row { margin-bottom: 20px; display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
        .footer-row a { font-size: 13px; color: #888; transition: 0.3s; }
        .footer-row a:hover { color: #d4af37; }
        .copyright { font-size: 12px; color: #555; border-top: 1px solid #1a1d24; padding-top: 20px; }