* { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1216; color: #ffffff; line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        header { background-color: #1a1d24; height: 60px; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2d323d; }
        .header-content { display: flex; align-items: center; justify-content: space-between; height: 100%; padding: 0 15px; }
        .logo-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; object-fit: contain; }
        .logo-box strong { font-size: 16px; font-weight: normal; color: #fff; text-transform: lowercase; }
        .header-btns { display: flex; gap: 10px; }
        .btn-login { padding: 6px 15px; border-radius: 20px; font-size: 14px; background: #2d323d; color: #fff; border: 1px solid #444; cursor: pointer; }
        .btn-register { padding: 6px 15px; border-radius: 20px; font-size: 14px; background: linear-gradient(135deg, #ffd700, #ff8c00); color: #000; font-weight: bold; border: none; cursor: pointer; }
        .banner { width: 100%; aspect-ratio: 2 / 1; overflow: hidden; cursor: pointer; }
        .jackpot-section { margin: 20px 15px; background: radial-gradient(circle at center, #2c3e50, #000); padding: 20px; border-radius: 15px; border: 2px solid #ffd700; text-align: center; box-shadow: 0 0 20px rgba(255, 215, 0, 0.3); }
        .jackpot-title { color: #ffd700; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: bold; color: #fff; font-family: 'Courier New', monospace; text-shadow: 0 0 10px #ffd700; }
        .section-title { padding: 20px 15px 10px; font-size: 18px; color: #ffd700; display: flex; align-items: center; gap: 8px; }
        .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.96); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card p { padding: 8px; font-size: 13px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #ccc; }
        .intro-card { margin: 25px 15px; background: #1a1d24; border-radius: 15px; padding: 20px; border-left: 4px solid #ffd700; }
        .intro-card h1 { font-size: 20px; margin-bottom: 12px; color: #fff; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #a0a0a0; text-align: justify; }
        .guidelines { display: grid; grid-template-columns: 1fr; gap: 15px; padding: 15px; }
        .guide-item { background: #1a1d24; padding: 15px; border-radius: 12px; display: flex; align-items: flex-start; gap: 15px; border: 1px solid #2d323d; }
        .guide-icon { font-size: 24px; color: #ffd700; width: 40px; }
        .guide-content h3 { font-size: 15px; color: #fff; margin-bottom: 5px; }
        .guide-content p { font-size: 13px; color: #888; }
        .winners-box { margin: 15px; background: #1a1d24; border-radius: 15px; padding: 15px; height: 250px; overflow-y: auto; border: 1px solid #2d323d; }
        .winner-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid #252a34; }
        .winner-user { font-size: 13px; color: #fff; }
        .winner-amount { font-size: 13px; color: #4caf50; font-weight: bold; }
        .winner-game { font-size: 12px; color: #777; }
        .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 15px; text-align: center; }
        .feature-item { background: #1a1d24; padding: 15px 10px; border-radius: 12px; border: 1px solid #2d323d; }
        .feature-item i { font-size: 20px; color: #ffd700; margin-bottom: 8px; }
        .feature-item span { font-size: 11px; display: block; color: #ccc; }
        .comment-grid { padding: 15px; display: flex; flex-direction: column; gap: 12px; }
        .comment-card { background: #1a1d24; border-radius: 12px; padding: 15px; border: 1px solid #2d323d; }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .comment-avatar { width: 35px; height: 35px; border-radius: 50%; background: #333; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 14px; }
        .comment-info h4 { font-size: 14px; color: #fff; }
        .comment-stars { color: #ffd700; font-size: 12px; }
        .comment-text { font-size: 13px; color: #999; font-style: italic; }
        .faq-section { padding: 15px; }
        .faq-item { background: #1a1d24; border-radius: 12px; margin-bottom: 10px; padding: 15px; border: 1px solid #2d323d; }
        .faq-item h3 { font-size: 15px; color: #fff; margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: #888; text-align: justify; }
        .navigator { position: fixed; bottom: 0; width: 100%; background: #1a1d24; display: flex; height: 60px; border-top: 1px solid #2d323d; z-index: 1000; box-shadow: 0 -5px 15px rgba(0,0,0,0.5); }
        .nav-item { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #888; }
        .nav-item i { font-size: 18px; margin-bottom: 4px; }
        .nav-item span { font-size: 11px; }
        .nav-item.active { color: #ffd700; }
        footer { background: #0a0c10; padding: 30px 15px 20px; border-top: 1px solid #1a1d24; }
        .footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 20px; }
        .footer-links a { font-size: 13px; color: #666; transition: color 0.3s; }
        .footer-links a:hover { color: #ffd700; }
        .copyright { text-align: center; font-size: 12px; color: #444; margin-top: 20px; }
        .badge-list { display: flex; justify-content: center; gap: 15px; margin-top: 20px; filter: grayscale(1); opacity: 0.5; }
        .badge-list i { font-size: 24px; }