* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1217; color: #ffffff; line-height: 1.6; overflow-x: hidden; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }
        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 #2d323d; }
        .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: #f3d47a; }
        .header-right { display: flex; gap: 10px; }
        .btn { padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: 0.3s; }
        .btn-login { background: transparent; color: #f3d47a; border: 1px solid #f3d47a; }
        .btn-register { background: linear-gradient(135deg, #f3d47a 0%, #d4af37 100%); color: #000; }
        .main-container { max-width: 800px; margin: 0 auto; padding: 10px; }
        .banner { width: 100%; aspect-ratio: 2/1; border-radius: 12px; overflow: hidden; margin-bottom: 15px; cursor: pointer; box-shadow: 0 4px 15px rgba(0,0,0,0.5); }
        .jackpot-section { background: radial-gradient(circle, #2d323d 0%, #1a1d24 100%); border-radius: 15px; padding: 20px; text-align: center; margin-bottom: 20px; border: 1px solid #3d4452; }
        .jackpot-title { color: #f3d47a; font-size: 18px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #ff4d4d; text-shadow: 0 0 10px rgba(255,77,77,0.5); font-family: monospace; }
        .section-title { font-size: 18px; margin: 20px 0 15px; display: flex; align-items: center; gap: 10px; border-left: 4px solid #f3d47a; padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 20px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; transition: 0.3s; border: 1px solid #2d323d; }
        .game-card:hover { transform: translateY(-5px); border-color: #f3d47a; }
        .game-image-wrap { position: relative; width: 100%; aspect-ratio: 1/1; background: #000; }
        .game-title { padding: 8px; font-size: 13px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; background: #242933; }
        .intro-card { background: #1a1d24; border-radius: 15px; padding: 20px; margin-bottom: 20px; border: 1px solid #2d323d; }
        .intro-card h1 { font-size: 20px; color: #f3d47a; margin-bottom: 10px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #b0b0b0; }
        .guidelines { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 25px; }
        .guide-item { background: #242933; padding: 15px; border-radius: 12px; display: flex; align-items: flex-start; gap: 15px; border-left: 3px solid #f3d47a; }
        .guide-item i { font-size: 24px; color: #f3d47a; width: 30px; }
        .guide-content h3 { font-size: 16px; margin-bottom: 5px; color: #fff; }
        .guide-content p { font-size: 13px; color: #9aa0ac; }
        .winners-box { background: #1a1d24; border-radius: 15px; padding: 15px; margin-bottom: 25px; max-height: 300px; overflow-y: auto; border: 1px solid #2d323d; }
        .winner-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #2d323d; font-size: 13px; }
        .winner-name { color: #f3d47a; }
        .winner-amount { color: #4caf50; font-weight: bold; }
        .casino-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; text-align: center; }
        .feature-item { background: #1a1d24; padding: 10px; border-radius: 10px; }
        .feature-item i { font-size: 20px; color: #f3d47a; margin-bottom: 5px; }
        .feature-item span { display: block; font-size: 11px; text-transform: uppercase; }
        .comments-section { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 25px; }
        .comment-card { background: #242933; padding: 15px; border-radius: 12px; position: relative; }
        .comment-user { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .user-avatar { width: 35px; height: 35px; border-radius: 50%; background: #3d4452; display: flex; align-items: center; justify-content: center; font-weight: bold; color: #f3d47a; }
        .user-info h4 { font-size: 14px; }
        .stars { color: #f3d47a; font-size: 10px; }
        .comment-text { font-size: 13px; color: #b0b0b0; font-style: italic; }
        .faq-section { margin-bottom: 25px; }
        .faq-item { background: #1a1d24; border-radius: 10px; margin-bottom: 10px; border: 1px solid #2d323d; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; font-size: 14px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: #f3d47a; }
        .faq-answer { padding: 0 15px 15px; font-size: 13px; color: #b0b0b0; border-top: 1px solid #242933; padding-top: 10px; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; height: 65px; background: #1a1d24; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #2d323d; z-index: 1000; box-shadow: 0 -5px 15px rgba(0,0,0,0.3); }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #9aa0ac; transition: 0.3s; }
        .nav-item i { font-size: 18px; }
        .nav-item span { font-size: 11px; }
        .nav-item:hover { color: #f3d47a; }
        footer { background: #0a0c10; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #1a1d24; }
        .footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 20px; font-size: 13px; color: #b0b0b0; }
        .footer-links a:hover { color: #f3d47a; }
        .copyright { font-size: 12px; color: #666; margin-top: 20px; }
        @media (min-width: 600px) {
            .game-grid { grid-template-columns: repeat(3, 1fr); }
            .guidelines, .comments-section { grid-template-columns: repeat(2, 1fr); }
        }