* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1115; color: #ffffff; line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        header { background: #1a1d24; padding: 10px 15px; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2d323d; display: flex; justify-content: space-between; align-items: center; }
        .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: #f1f1f1; }
        .header-right { display: flex; gap: 10px; }
        .btn { padding: 6px 16px; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: 0.3s; }
        .btn-login { background: transparent; color: #d4af37; border: 1px solid #d4af37; }
        .btn-register { background: linear-gradient(135deg, #d4af37, #b8860b); color: #000; }
        .banner { width: 100%; display: block; cursor: pointer; }
        .banner img { width: 100%; aspect-ratio: 2/1; object-fit: cover; display: block; }
        .jackpot-container { background: #1e222b; margin: 15px; padding: 15px; border-radius: 12px; text-align: center; border: 1px solid #3a3f4b; position: relative; overflow: hidden; }
        .jackpot-title { font-size: 12px; color: #d4af37; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-size: 28px; font-weight: bold; color: #ffffff; text-shadow: 0 0 10px rgba(212,175,55,0.5); font-family: monospace; margin: 5px 0; }
        .section-title { padding: 0 15px; margin: 20px 0 10px; font-size: 18px; border-left: 4px solid #d4af37; margin-left: 15px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; position: relative; 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; display: block; }
        .game-info { padding: 8px; text-align: center; }
        .game-info h3 { font-size: 13px; font-weight: normal; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-card { background: #1a1d24; margin: 20px 15px; padding: 20px; border-radius: 15px; border: 1px solid #2d323d; }
        .intro-card h1 { font-size: 20px; color: #d4af37; margin-bottom: 12px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #b0b0b0; }
        .guidelines-grid { display: grid; grid-template-columns: 1fr; gap: 10px; padding: 0 15px; }
        .guide-item { background: #252830; padding: 15px; border-radius: 10px; display: flex; align-items: flex-start; gap: 12px; }
        .guide-item i { color: #d4af37; font-size: 20px; margin-top: 3px; }
        .guide-text h4 { font-size: 15px; margin-bottom: 4px; }
        .guide-text p { font-size: 13px; color: #a0a0a0; }
        .winning-scroll { background: #1a1d24; margin: 20px 0; padding: 15px 0; border-top: 1px solid #2d323d; border-bottom: 1px solid #2d323d; }
        .winning-track { display: flex; overflow-x: auto; gap: 15px; padding: 0 15px; scrollbar-width: none; }
        .winning-track::-webkit-scrollbar { display: none; }
        .winner-pill { background: #252830; padding: 8px 15px; border-radius: 30px; border-left: 3px solid #d4af37; white-space: nowrap; flex-shrink: 0; font-size: 12px; }
        .winner-pill span { color: #d4af37; font-weight: bold; }
        .platform-features { padding: 15px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
        .feature-badge { background: #1e222b; border: 1px solid #333; padding: 8px 12px; border-radius: 8px; font-size: 12px; display: flex; align-items: center; gap: 6px; }
        .comments-section { padding: 0 15px; }
        .comment-card { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 12px; border: 1px solid #2d323d; }
        .comment-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
        .user-meta { display: flex; align-items: center; gap: 8px; }
        .user-avatar { width: 30px; height: 30px; background: #3a3f4b; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; }
        .stars { color: #ffc107; font-size: 12px; }
        .comment-body { font-size: 13px; color: #cccccc; font-style: italic; }
        .faq-section { padding: 20px 15px; background: #16181d; }
        .faq-item { margin-bottom: 15px; border-bottom: 1px solid #2d323d; padding-bottom: 15px; }
        .faq-item h4 { font-size: 15px; color: #d4af37; margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: #b0b0b0; }
        .navigator { position: fixed; bottom: 0; width: 100%; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 2px solid #d4af37; z-index: 1001; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; color: #a0a0a0; }
        .nav-item i { font-size: 18px; }
        footer { background: #0f1115; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #2d323d; }
        .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 20px; }
        .footer-links a { font-size: 13px; color: #808080; }
        .footer-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; }
        .footer-social a { font-size: 18px; color: #d4af37; }
        .copyright { font-size: 12px; color: #555; }