* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1216; color: #e0e0e0; 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; }
        .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 { padding: 6px 16px; border: 1px solid #f0c14b; color: #f0c14b; border-radius: 20px; font-size: 14px; font-weight: 600; }
        .btn-register { padding: 6px 16px; background: linear-gradient(135deg, #f0c14b, #ba8b02); color: #1a1d24; border-radius: 20px; font-size: 14px; font-weight: 600; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; display: block; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container { background: radial-gradient(circle at center, #2d323d 0%, #1a1d24 100%); margin: 15px; padding: 20px; border-radius: 12px; border: 1px solid #3a404d; text-align: center; }
        .jackpot-title { color: #f0c14b; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { font-size: 28px; font-weight: 800; color: #fff; text-shadow: 0 0 10px rgba(240, 193, 75, 0.5); font-family: monospace; }
        .section-title { padding: 15px 15px 5px; font-size: 18px; color: #f0c14b; display: flex; align-items: center; gap: 8px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 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.95); }
        .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; color: #ccc; }
        .intro-card { background: #1a1d24; margin: 15px; padding: 20px; border-radius: 12px; border: 1px solid #2d323d; }
        .intro-card h1 { font-size: 18px; color: #f0c14b; margin-bottom: 12px; line-height: 1.4; }
        .intro-card p { font-size: 14px; color: #9da3af; }
        .pro-elements { display: flex; justify-content: space-around; padding: 20px 15px; background: #16191f; margin: 10px 0; }
        .pro-item { text-align: center; }
        .pro-item i { font-size: 24px; color: #f0c14b; margin-bottom: 8px; }
        .pro-item span { display: block; font-size: 11px; color: #888; }
        .guidelines { padding: 15px; }
        .guide-item { background: #1a1d24; padding: 15px; border-radius: 10px; margin-bottom: 10px; border-left: 4px solid #f0c14b; }
        .guide-item h3 { font-size: 15px; color: #fff; margin-bottom: 5px; }
        .guide-item p { font-size: 13px; color: #9da3af; }
        .winning-scroll { background: #1a1d24; margin: 15px; border-radius: 12px; height: 200px; overflow-y: auto; padding: 10px; border: 1px solid #2d323d; }
        .win-record { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #2d323d; font-size: 13px; }
        .win-user { color: #9da3af; }
        .win-amount { color: #4caf50; font-weight: bold; }
        .comments-section { padding: 15px; }
        .comment-card { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 12px; border: 1px solid #2d323d; }
        .comment-user { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .comment-user i { font-size: 20px; color: #f0c14b; }
        .comment-name { font-weight: bold; font-size: 14px; }
        .comment-text { font-size: 13px; color: #9da3af; font-style: italic; }
        .faq-section { padding: 15px; }
        .faq-item { margin-bottom: 15px; background: #1a1d24; border-radius: 8px; padding: 15px; }
        .faq-item h3 { font-size: 15px; color: #f0c14b; margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: #9da3af; }
        .navigator { position: fixed; bottom: 0; width: 100%; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2d323d; z-index: 1000; }
        .nav-item { text-align: center; color: #9da3af; }
        .nav-item i { font-size: 20px; display: block; margin-bottom: 2px; }
        .nav-item span { font-size: 11px; }
        footer { background: #0a0c10; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #2d323d; }
        .footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 20px; }
        .footer-links a { font-size: 13px; color: #9da3af; }
        .copyright { font-size: 12px; color: #555; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            body { max-width: 600px; margin: 0 auto; border-left: 1px solid #2d323d; border-right: 1px solid #2d323d; }
            .navigator { max-width: 600px; left: 50%; transform: translateX(-50%); }
        }