* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #0f1216; color: #e0e0e0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; display: block; }
        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 #333; }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; }
        .header-left strong { font-size: 16px; font-weight: normal; color: #fff; }
        .header-right { display: flex; gap: 10px; }
        .btn-login, .btn-register { padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; }
        .btn-login { background: transparent; color: #ffd700; border: 1px solid #ffd700; }
        .btn-register { background: linear-gradient(180deg, #ffd700, #b8860b); color: #000; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; overflow: hidden; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container { background: #1a1d24; margin: 15px; padding: 20px; border-radius: 12px; text-align: center; border: 1px solid #2d323d; box-shadow: 0 4px 15px rgba(0,0,0,0.5); }
        .jackpot-title { color: #ffd700; font-size: 18px; text-transform: uppercase; margin-bottom: 10px; font-weight: bold; letter-spacing: 1px; }
        .jackpot-amount { font-size: 32px; color: #fff; font-weight: 800; text-shadow: 0 0 10px rgba(255,215,0,0.5); font-family: monospace; }
        .section-title { padding: 0 15px; margin: 20px 0 10px; font-size: 18px; color: #fff; display: flex; align-items: center; gap: 8px; border-left: 4px solid #ffd700; }
        .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; }
        .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: 20px 15px; padding: 20px; border-radius: 12px; border: 1px solid #2d323d; }
        .intro-card h1 { font-size: 18px; color: #ffd700; margin-bottom: 12px; line-height: 1.4; }
        .intro-card p { font-size: 14px; color: #b0b0b0; text-align: justify; }
        .guidelines { grid-template-columns: 1fr 1fr; display: grid; gap: 10px; padding: 0 15px; }
        .guide-item { background: #1a1d24; padding: 15px; border-radius: 10px; border: 1px solid #2d323d; text-align: center; }
        .guide-item i { font-size: 24px; color: #ffd700; margin-bottom: 8px; }
        .guide-item span { display: block; font-size: 13px; font-weight: 500; }
        .winners-list { background: #1a1d24; margin: 20px 15px; border-radius: 12px; height: 200px; overflow-y: auto; border: 1px solid #2d323d; }
        .winner-row { display: flex; justify-content: space-between; padding: 10px 15px; border-bottom: 1px solid #2d323d; font-size: 12px; }
        .winner-name { color: #ffd700; }
        .winner-amount { color: #4caf50; font-weight: bold; }
        .casino-features { padding: 20px 15px; display: flex; flex-direction: column; gap: 15px; }
        .feature-box { display: flex; align-items: center; gap: 15px; background: rgba(255, 215, 0, 0.05); padding: 15px; border-radius: 10px; border-left: 3px solid #ffd700; }
        .feature-box i { font-size: 20px; color: #ffd700; }
        .comments-section { padding: 0 15px; display: flex; flex-direction: column; gap: 10px; }
        .comment-card { background: #1a1d24; padding: 15px; border-radius: 12px; border: 1px 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; font-size: 12px; }
        .user-rating { color: #ffd700; font-size: 10px; }
        .comment-text { font-size: 13px; color: #b0b0b0; font-style: italic; }
        .faq-section { padding: 0 15px; margin-bottom: 30px; }
        .faq-item { background: #1a1d24; margin-bottom: 10px; border-radius: 10px; border: 1px solid #2d323d; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; color: #fff; 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 #2d323d; padding-top: 10px; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #333; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #b0b0b0; font-size: 12px; }
        .nav-item i { font-size: 18px; }
        footer { background: #1a1d24; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #333; }
        .footer-row { margin-bottom: 20px; display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
        .footer-link { font-size: 13px; color: #b0b0b0; }
        .footer-link:hover { color: #ffd700; }
        .copyright { font-size: 12px; color: #666; margin-top: 20px; border-top: 1px solid #2d323d; padding-top: 15px; }