* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #0f1218; color: #ffffff; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        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 #2a2e37; }
        .logo-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-box strong { font-size: 16px; font-weight: normal; color: #f39c12; letter-spacing: 0.5px; }
        .header-btns { display: flex; gap: 10px; }
        .btn-login, .btn-reg { padding: 6px 16px; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: 0.3s; }
        .btn-login { background: transparent; color: #ffffff; border: 1px solid #f39c12; }
        .btn-reg { background: linear-gradient(135deg, #f39c12, #e67e22); color: #fff; }
        .banner-container { width: 100%; aspect-ratio: 2/1; overflow: hidden; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; cursor: pointer; }
        .jackpot-box { margin: 15px; background: linear-gradient(45deg, #2c3e50, #000); border: 2px solid #f39c12; border-radius: 12px; padding: 20px; text-align: center; box-shadow: 0 0 15px rgba(243, 156, 18, 0.3); }
        .jackpot-title { font-size: 14px; color: #f39c12; text-transform: uppercase; font-weight: bold; margin-bottom: 5px; }
        .jackpot-amount { font-size: 28px; font-weight: 800; color: #fff; text-shadow: 0 0 10px #f39c12; }
        .section-title { padding: 15px 15px 5px; font-size: 18px; display: flex; align-items: center; gap: 8px; color: #f39c12; }
        .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 #2a2e37; transition: transform 0.2s; }
        .game-card:active { transform: scale(0.96); }
        .game-card img { width: 100%; display: block; 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 { margin: 15px; background: #1a1d24; border-radius: 15px; padding: 20px; border-left: 4px solid #f39c12; }
        .intro-card h1 { font-size: 18px; margin-bottom: 10px; color: #f39c12; }
        .intro-card p { font-size: 14px; color: #bdc3c7; }
        .guidelines-grid { display: grid; grid-template-columns: 1fr; gap: 10px; padding: 15px; }
        .guide-item { background: #1a1d24; padding: 15px; border-radius: 10px; display: flex; gap: 15px; align-items: center; }
        .guide-item i { font-size: 24px; color: #f39c12; width: 30px; text-align: center; }
        .guide-text h3 { font-size: 15px; margin-bottom: 2px; }
        .guide-text p { font-size: 12px; color: #95a5a6; }
        .winning-scroll { margin: 15px; background: #1a1d24; border-radius: 12px; height: 200px; overflow-y: auto; padding: 10px; border: 1px solid #2a2e37; }
        .winner-row { display: flex; justify-content: space-between; padding: 8px 5px; border-bottom: 1px solid #2a2e37; font-size: 13px; }
        .winner-name { color: #ecf0f1; }
        .winner-amount { color: #2ecc71; font-weight: bold; }
        .winner-game { color: #f39c12; }
        .casino-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 15px; }
        .stat-card { background: #1a1d24; padding: 15px; border-radius: 12px; text-align: center; }
        .stat-card i { font-size: 20px; color: #f39c12; margin-bottom: 8px; }
        .stat-val { font-size: 16px; font-weight: bold; }
        .stat-lab { font-size: 11px; color: #95a5a6; }
        .comments-grid { padding: 15px; display: flex; flex-direction: column; gap: 12px; }
        .comment-card { background: #1a1d24; padding: 15px; border-radius: 12px; border: 1px solid #2a2e37; }
        .comment-user { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .user-avatar { width: 35px; height: 35px; border-radius: 50%; background: #2c3e50; display: flex; align-items: center; justify-content: center; color: #f39c12; font-weight: bold; }
        .user-meta h4 { font-size: 14px; }
        .stars { color: #f1c40f; font-size: 10px; }
        .comment-content { font-size: 13px; color: #bdc3c7; font-style: italic; }
        .faq-container { padding: 15px; }
        .faq-item { background: #1a1d24; border-radius: 10px; margin-bottom: 10px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; font-size: 14px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; background: #21252d; }
        .faq-answer { padding: 15px; font-size: 13px; color: #bdc3c7; border-top: 1px solid #2a2e37; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; height: 65px; background: #1a1d24; border-top: 1px solid #2a2e37; display: flex; justify-content: space-around; align-items: center; z-index: 2000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #95a5a6; }
        .nav-item i { font-size: 20px; }
        .nav-item span { font-size: 11px; }
        .nav-item.active { color: #f39c12; }
        footer { background: #0a0c10; padding: 30px 15px 100px; text-align: center; }
        .footer-row { margin-bottom: 20px; display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; }
        .footer-link { color: #bdc3c7; font-size: 13px; }
        .footer-link:hover { color: #f39c12; }
        .copyright { font-size: 12px; color: #7f8c8d; margin-top: 20px; }