* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #0f1216; 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-color: #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: #ffd700; }
        .header-right { display: flex; gap: 10px; }
        .btn-login { padding: 6px 15px; border-radius: 20px; border: 1px solid #ffd700; color: #ffd700; font-size: 14px; }
        .btn-register { padding: 6px 15px; border-radius: 20px; background: linear-gradient(180deg, #ffd700, #ff8c00); color: #000; font-size: 14px; font-weight: bold; }
        .banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container { margin: 15px; padding: 20px; background: linear-gradient(135deg, #1e222b, #2a2e38); border-radius: 15px; text-align: center; border: 1px solid #3d4451; position: relative; overflow: hidden; }
        .jackpot-title { font-size: 14px; color: #ffd700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
        .jackpot-amount { font-size: 28px; font-weight: bold; color: #ffffff; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); font-family: monospace; }
        .section-title { margin: 20px 15px 10px; font-size: 18px; border-left: 4px solid #ffd700; padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 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: 8px; text-align: center; font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-card { margin: 20px 15px; padding: 20px; background: #1a1d24; border-radius: 15px; border: 1px solid #2d323d; }
        .intro-card h1 { font-size: 18px; color: #ffd700; margin-bottom: 10px; }
        .intro-card p { font-size: 14px; color: #b0b0b0; text-align: justify; }
        .trust-elements { display: flex; flex-wrap: wrap; gap: 10px; padding: 0 15px; margin: 20px 0; }
        .trust-item { flex: 1; min-width: 45%; background: #23272f; padding: 10px; border-radius: 10px; text-align: center; font-size: 12px; border: 1px solid #343a46; }
        .trust-item i { font-size: 20px; color: #ffd700; margin-bottom: 5px; display: block; }
        .guidelines { padding: 0 15px; margin: 20px 0; }
        .guideline-item { background: #1a1d24; padding: 15px; border-radius: 10px; margin-bottom: 10px; border-left: 3px solid #ffd700; font-size: 14px; }
        .winners-section { background: #1a1d24; margin: 20px 0; padding: 15px; }
        .winner-list { max-height: 300px; overflow-y: hidden; }
        .winner-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #2d323d; font-size: 13px; }
        .winner-name { color: #b0b0b0; }
        .winner-amount { color: #4caf50; font-weight: bold; }
        .comments-section { padding: 0 15px; margin: 20px 0; }
        .comment-card { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 15px; border: 1px solid #2d323d; }
        .comment-user { font-weight: bold; font-size: 14px; color: #ffd700; margin-bottom: 5px; display: flex; align-items: center; gap: 8px; }
        .comment-stars { color: #ffc107; font-size: 12px; }
        .comment-text { font-size: 13px; color: #d0d0d0; }
        .faq-section { padding: 0 15px; margin: 20px 0; }
        .faq-item { margin-bottom: 20px; }
        .faq-item h3 { font-size: 15px; color: #ffd700; margin-bottom: 8px; display: flex; align-items: flex-start; gap: 8px; }
        .faq-item p { font-size: 14px; color: #b0b0b0; padding-left: 24px; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; height: 65px; background: #1a1d24; border-top: 1px solid #2d323d; display: flex; justify-content: space-around; align-items: center; z-index: 1001; }
        .nav-item { text-align: center; color: #b0b0b0; font-size: 11px; flex: 1; }
        .nav-item i { font-size: 18px; display: block; margin-bottom: 3px; }
        .nav-item.active { color: #ffd700; }
        footer { background: #0a0c10; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #2d323d; }
        .footer-row { margin-bottom: 20px; display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
        .footer-link { font-size: 13px; color: #888; }
        .copyright { font-size: 12px; color: #555; border-top: 1px solid #222; padding-top: 20px; }