* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1218; color: #ffffff; line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        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 #2d323e; }
        .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: #f3ba2f; }
        .auth-buttons { display: flex; gap: 10px; }
        .btn-login, .btn-register { padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: 0.3s; }
        .btn-login { background-color: transparent; color: #f3ba2f; border: 1px solid #f3ba2f; }
        .btn-register { background-color: #f3ba2f; color: #000; }
        .banner { width: 100%; display: block; cursor: pointer; }
        .banner img { width: 100%; aspect-ratio: 2/1; object-fit: cover; }
        .jackpot-section { background: linear-gradient(135deg, #1a1d24 0%, #2c3e50 100%); margin: 15px; padding: 20px; border-radius: 15px; text-align: center; border: 1px solid #f3ba2f33; }
        .jackpot-title { color: #f3ba2f; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #ffffff; text-shadow: 0 0 10px rgba(243, 186, 47, 0.5); margin: 5px 0; }
        .section-title { padding: 15px 15px 10px; font-size: 18px; display: flex; align-items: center; gap: 10px; }
        .section-title i { color: #f3ba2f; }
        .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 #2d323e; transition: transform 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card .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 #f3ba2f; }
        .intro-card h1 { font-size: 18px; color: #f3ba2f; margin-bottom: 10px; }
        .intro-card p { font-size: 14px; color: #b0b3b8; }
        .guidelines { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 15px; margin-bottom: 20px; }
        .guide-item { background: #1a1d24; padding: 15px; border-radius: 12px; text-align: center; }
        .guide-item i { font-size: 24px; color: #f3ba2f; margin-bottom: 8px; display: block; }
        .guide-item h3 { font-size: 14px; margin-bottom: 5px; }
        .guide-item p { font-size: 11px; color: #888; }
        .winners-list { margin: 15px; background: #1a1d24; border-radius: 15px; padding: 10px; height: 200px; overflow-y: auto; }
        .winner-row { display: flex; justify-content: space-between; padding: 8px 10px; border-bottom: 1px solid #2d323e; font-size: 12px; }
        .winner-row span:last-child { color: #4caf50; font-weight: bold; }
        .casino-features { padding: 20px 15px; background: #16191f; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
        .feature-badge { background: #1a1d24; padding: 5px 12px; border-radius: 20px; font-size: 11px; border: 1px solid #2d323e; display: flex; align-items: center; gap: 5px; }
        .comments-section { padding: 0 15px; margin: 20px 0; }
        .comment-card { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 10px; border: 1px solid #2d323e; }
        .comment-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
        .comment-user { font-size: 13px; font-weight: bold; color: #f3ba2f; }
        .comment-stars { color: #ffc107; font-size: 10px; }
        .comment-text { font-size: 12px; color: #b0b3b8; font-style: italic; }
        .faq-section { padding: 0 15px; margin: 25px 0; }
        .faq-item { background: #1a1d24; border-radius: 12px; padding: 15px; margin-bottom: 12px; }
        .faq-item h3 { font-size: 15px; color: #f3ba2f; margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: #b0b3b8; text-align: justify; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2d323e; z-index: 1001; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #8e9297; font-size: 11px; }
        .nav-item i { font-size: 18px; }
        .nav-item.active { color: #f3ba2f; }
        footer { background: #1a1d24; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #2d323e; }
        .footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 20px; }
        .footer-links a { font-size: 13px; color: #8e9297; }
        .copyright { font-size: 12px; color: #5c6066; margin-top: 15px; }