* { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1218; color: #ffffff; line-height: 1.6; overflow-x: hidden; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; display: block; }
        header { background: #1a1d24; padding: 10px 15px; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 1000; border-bottom: 2px solid #d4af37; }
        .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: #d4af37; }
        .header-right { display: flex; gap: 10px; }
        .btn-login { padding: 6px 15px; border-radius: 20px; border: 1px solid #d4af37; color: #d4af37; font-size: 14px; background: transparent; cursor: pointer; }
        .btn-register { padding: 6px 15px; border-radius: 20px; background: linear-gradient(135deg, #d4af37, #f9e076); color: #000; font-size: 14px; font-weight: bold; border: none; cursor: pointer; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; background: #1a1d24; overflow: hidden; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container { background: radial-gradient(circle, #2c3e50 0%, #000000 100%); margin: 15px; padding: 20px; border-radius: 15px; border: 1px solid #d4af37; text-align: center; box-shadow: 0 0 20px rgba(212, 175, 55, 0.3); }
        .jackpot-label { color: #d4af37; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 5px; }
        .jackpot-amount { font-size: 28px; font-weight: 800; color: #ffffff; text-shadow: 0 0 10px #d4af37; font-family: 'Courier New', monospace; }
        .section-title { padding: 15px 15px 5px; font-size: 18px; color: #d4af37; display: flex; align-items: center; gap: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 15px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; border: 1px solid #2a2e38; 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; font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-card { background: #1a1d24; margin: 15px; padding: 20px; border-radius: 15px; border-left: 4px solid #d4af37; }
        .intro-card h1 { font-size: 20px; margin-bottom: 10px; color: #d4af37; }
        .intro-card p { font-size: 14px; color: #b0b0b0; }
        .pro-elements { display: flex; flex-wrap: wrap; gap: 10px; padding: 15px; justify-content: center; }
        .pro-item { background: #1a1d24; padding: 10px; border-radius: 8px; flex: 1; min-width: 140px; text-align: center; border: 1px solid #2a2e38; }
        .pro-item i { font-size: 20px; color: #d4af37; margin-bottom: 5px; }
        .pro-item span { display: block; font-size: 12px; color: #eee; }
        .guidelines { padding: 15px; }
        .guide-item { background: #1a1d24; padding: 15px; border-radius: 10px; margin-bottom: 10px; border-right: 3px solid #d4af37; }
        .guide-item h3 { font-size: 16px; margin-bottom: 5px; color: #f9e076; }
        .guide-item p { font-size: 13px; color: #ccc; }
        .winners-list { margin: 15px; background: #1a1d24; border-radius: 15px; padding: 10px; height: 250px; overflow-y: auto; border: 1px solid #2a2e38; }
        .winner-row { display: flex; justify-content: space-between; padding: 8px; border-bottom: 1px solid #2a2e38; font-size: 13px; }
        .winner-name { color: #d4af37; }
        .winner-amount { color: #4caf50; font-weight: bold; }
        .comments-section { padding: 15px; }
        .comment-card { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 15px; position: relative; }
        .comment-user { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .user-avatar { width: 35px; height: 35px; border-radius: 50%; background: #333; display: flex; align-items: center; justify-content: center; color: #d4af37; }
        .user-meta { font-size: 14px; }
        .user-stars { color: #ffc107; font-size: 12px; }
        .comment-text { font-size: 13px; font-style: italic; color: #ccc; }
        .faq-section { padding: 15px; }
        .faq-item { background: #1a1d24; border-radius: 10px; margin-bottom: 10px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: bold; color: #d4af37; font-size: 15px; border-bottom: 1px solid #2a2e38; }
        .faq-answer { padding: 15px; font-size: 14px; color: #ccc; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2a2e38; z-index: 1000; box-shadow: 0 -2px 10px rgba(0,0,0,0.5); }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; color: #8e8e93; width: 20%; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: #d4af37; }
        footer { background: #0a0c10; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #2a2e38; }
        .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 20px; }
        .footer-links a { font-size: 13px; color: #8e8e93; }
        .footer-copyright { font-size: 12px; color: #555; margin-top: 20px; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: 1fr 1fr 1fr 1fr; }
            body { max-width: 600px; margin: 0 auto; border-left: 1px solid #2a2e38; border-right: 1px solid #2a2e38; }
        }