* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #0f1115; color: #ffffff; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; 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; object-fit: contain; }
        .header-left strong { font-size: 16px; font-weight: normal; color: #f3ba2f; }
        .header-right { display: flex; gap: 10px; }
        .btn { padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: 0.3s; }
        .btn-login { background: transparent; color: #ffffff; border: 1px solid #f3ba2f; }
        .btn-register { background: linear-gradient(180deg, #f3ba2f 0%, #d4a017 100%); color: #000; }
        .banner { width: 100%; display: block; cursor: pointer; }
        .banner img { width: 100%; aspect-ratio: 2/1; object-fit: cover; display: block; }
        .jackpot-section { background: #1a1d24; margin: 15px; padding: 20px; border-radius: 15px; text-align: center; border: 1px solid #2d323d; box-shadow: 0 4px 15px rgba(0,0,0,0.3); }
        .jackpot-title { color: #f3ba2f; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #ffffff; text-shadow: 0 0 10px rgba(243,186,47,0.5); }
        .section-title { font-size: 18px; margin: 20px 15px 15px; display: flex; align-items: center; gap: 8px; color: #f3ba2f; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 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: 10px; text-align: center; }
        .game-info span { font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; }
        .intro-card { background: #1a1d24; margin: 20px 15px; padding: 20px; border-radius: 15px; border-left: 4px solid #f3ba2f; }
        .intro-card h1 { font-size: 18px; margin-bottom: 12px; color: #f3ba2f; }
        .intro-card p { font-size: 14px; color: #aeb4bc; text-align: justify; }
        .guidelines { padding: 0 15px; display: grid; grid-template-columns: 1fr; gap: 10px; }
        .guide-item { background: #1a1d24; padding: 15px; border-radius: 12px; border: 1px solid #2d323d; display: flex; align-items: flex-start; gap: 12px; }
        .guide-item i { color: #f3ba2f; font-size: 20px; margin-top: 3px; }
        .guide-item div h3 { font-size: 15px; margin-bottom: 5px; }
        .guide-item div p { font-size: 13px; color: #aeb4bc; }
        .winning-list { margin: 20px 15px; background: #1a1d24; border-radius: 15px; padding: 15px; border: 1px solid #2d323d; }
        .win-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #2d323d; font-size: 13px; }
        .win-item:last-child { border-bottom: none; }
        .win-user { color: #aeb4bc; }
        .win-amount { color: #4caf50; font-weight: bold; }
        .pro-elements { padding: 20px 15px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; text-align: center; }
        .pro-item i { font-size: 24px; color: #f3ba2f; margin-bottom: 8px; }
        .pro-item p { font-size: 12px; color: #aeb4bc; }
        .comments { padding: 0 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 .avatar { width: 35px; height: 35px; border-radius: 50%; background: #2d323d; display: flex; align-items: center; justify-content: center; font-weight: bold; color: #f3ba2f; }
        .comment-content { font-size: 13px; color: #aeb4bc; font-style: italic; }
        .faq-section { padding: 0 15px; }
        .faq-item { background: #1a1d24; border-radius: 12px; margin-bottom: 10px; border: 1px solid #2d323d; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; font-size: 14px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 0 15px 15px; font-size: 13px; color: #aeb4bc; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; 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; font-size: 11px; color: #aeb4bc; gap: 4px; }
        .nav-item i { font-size: 18px; }
        .nav-item.active { color: #f3ba2f; }
        footer { background: #0a0c0f; padding: 30px 15px 20px; text-align: center; color: #666; font-size: 12px; }
        .footer-row { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; margin-bottom: 15px; }
        .footer-link { color: #aeb4bc; }
        .copyright { margin-top: 15px; color: #444; }