* { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1218; color: #e0e0e0; line-height: 1.6; 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: #fff; }
        .header-right { display: flex; gap: 10px; }
        .btn-login { background: transparent; border: 1px solid #d4af37; color: #d4af37; padding: 6px 15px; border-radius: 20px; font-size: 14px; cursor: pointer; }
        .btn-register { background: linear-gradient(135deg, #d4af37, #f9e295); border: none; color: #1a1d24; padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: bold; cursor: pointer; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; display: block; overflow: hidden; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container { background: radial-gradient(circle, #2d323d 0%, #1a1d24 100%); margin: 15px; padding: 20px; border-radius: 15px; text-align: center; border: 1px solid #d4af37; box-shadow: 0 0 15px rgba(212, 175, 55, 0.2); }
        .jackpot-title { color: #d4af37; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; font-weight: bold; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #fff; text-shadow: 0 0 10px rgba(255,255,255,0.5); font-family: 'Courier New', monospace; }
        .section-title { padding: 15px 15px 5px; font-size: 18px; color: #f9e295; display: flex; align-items: center; gap: 8px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 15px; }
        .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 h3 { font-size: 13px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-card { background: #1a1d24; margin: 15px; padding: 20px; border-radius: 15px; border-left: 4px solid #d4af37; }
        .intro-card h1 { font-size: 20px; color: #fff; margin-bottom: 10px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #a0a0a0; text-align: justify; }
        .trust-elements { display: flex; justify-content: space-around; padding: 20px 15px; background: #16191f; margin: 15px 0; }
        .trust-item { text-align: center; font-size: 11px; color: #888; }
        .trust-item i { display: block; font-size: 24px; color: #d4af37; margin-bottom: 5px; }
        .guidelines { padding: 15px; }
        .guideline-item { background: #1a1d24; padding: 15px; border-radius: 10px; margin-bottom: 10px; border: 1px solid #2d323d; }
        .guideline-item h4 { font-size: 15px; color: #d4af37; margin-bottom: 5px; }
        .guideline-item p { font-size: 13px; color: #999; }
        .winning-list { height: 200px; overflow-y: hidden; background: #1a1d24; margin: 15px; border-radius: 15px; padding: 10px; border: 1px solid #2d323d; position: relative; }
        .winning-track { animation: scrollList 30s linear infinite; }
        @keyframes scrollList { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .win-row { display: flex; justify-content: space-between; padding: 8px 5px; border-bottom: 1px solid #2d323d; font-size: 13px; }
        .win-user { color: #aaa; }
        .win-amount { color: #4caf50; font-weight: bold; }
        .comments-section { padding: 15px; }
        .comment-card { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 12px; border-bottom: 2px solid #2d323d; }
        .comment-user { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .user-avatar { width: 30px; height: 30px; border-radius: 50%; background: #333; display: flex; align-items: center; justify-content: center; color: #d4af37; font-size: 12px; }
        .comment-text { font-size: 13px; color: #bbb; font-style: italic; }
        .faq-section { padding: 15px; }
        .faq-item { background: #1a1d24; border-radius: 8px; margin-bottom: 10px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: bold; color: #fff; font-size: 14px; background: #23272e; border-bottom: 1px solid #2d323d; }
        .faq-answer { padding: 15px; font-size: 13px; color: #999; text-align: justify; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: #1a1d24; height: 60px; 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: #888; font-size: 11px; gap: 4px; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: #d4af37; }
        footer { background: #0a0c10; padding: 30px 15px 90px; text-align: center; font-size: 12px; color: #666; }
        .footer-row { margin-bottom: 15px; display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; }
        .footer-link { color: #888; text-decoration: none; }
        .copyright { color: #444; border-top: 1px solid #1a1d24; padding-top: 15px; }