* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #11141a; color: #ffffff; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        .flex { display: flex; }
        .grid { display: grid; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        
        header { background: #1a1d24; height: 60px; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2d323d; }
        .header-wrap { height: 100%; justify-content: space-between; align-items: center; padding: 0 15px; }
        .logo-area { align-items: center; gap: 8px; }
        .logo-area img { width: 25px; height: 25px; object-fit: contain; }
        .logo-area strong { font-size: 16px; font-weight: normal; color: #fbc02d; }
        .auth-btns { gap: 10px; }
        .btn { padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: transform 0.2s; }
        .btn:active { transform: scale(0.95); }
        .btn-login { background: transparent; color: #fbc02d; border: 1px solid #fbc02d; }
        .btn-reg { background: linear-gradient(180deg, #ffd700, #fbc02d); color: #000; }

        .banner { width: 100%; display: block; overflow: hidden; }
        .banner img { width: 100%; aspect-ratio: 2/1; display: block; object-fit: cover; }

        .jackpot-box { background: linear-gradient(135deg, #2c3e50, #000000); margin: 20px 15px; padding: 20px; border-radius: 15px; text-align: center; border: 2px solid #fbc02d; box-shadow: 0 0 15px rgba(251, 192, 45, 0.3); }
        .jackpot-title { font-size: 14px; color: #fbc02d; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #fff; text-shadow: 0 0 10px #fbc02d; font-family: monospace; margin: 5px 0; }

        .section-title { padding: 0 15px; margin: 20px 0 10px; font-size: 18px; border-left: 4px solid #fbc02d; margin-left: 15px; }
        .game-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 15px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; border: 1px solid #2d323d; }
        .game-card img { width: 100%; display: block; aspect-ratio: 1/1; object-fit: cover; }
        .game-card-title { padding: 8px; font-size: 13px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

        .intro-card { background: #1a1d24; margin: 20px 15px; padding: 20px; border-radius: 15px; border-top: 3px solid #fbc02d; }
        .intro-card h1 { font-size: 20px; margin-bottom: 12px; color: #fbc02d; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #ccc; text-align: justify; }

        .guidelines { grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 0 15px; }
        .guide-item { background: #252932; padding: 15px; border-radius: 10px; text-align: center; }
        .guide-item i { font-size: 24px; color: #fbc02d; margin-bottom: 8px; }
        .guide-item span { display: block; font-size: 12px; }

        .winning-scroll { background: #1a1d24; margin: 20px 15px; padding: 15px; border-radius: 12px; height: 200px; overflow-y: auto; }
        .win-item { justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #2d323d; font-size: 13px; }
        .win-name { color: #fbc02d; }
        .win-amt { color: #4caf50; font-weight: bold; }

        .trust-badges { justify-content: space-around; padding: 20px 15px; background: #1a1d24; margin: 20px 0; }
        .badge { text-align: center; font-size: 10px; opacity: 0.7; }
        .badge i { font-size: 20px; display: block; margin-bottom: 5px; }

        .comments { grid-template-columns: 1fr; gap: 15px; padding: 0 15px; }
        .comment-card { background: #252932; padding: 15px; border-radius: 12px; position: relative; }
        .user-info { align-items: center; gap: 10px; margin-bottom: 10px; }
        .user-avatar { width: 35px; height: 35px; background: #3d4452; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
        .stars { color: #fbc02d; font-size: 12px; }
        .comment-text { font-size: 13px; font-style: italic; color: #eee; }

        .faq-section { padding: 0 15px; margin-bottom: 30px; }
        .faq-item { background: #1a1d24; margin-bottom: 10px; border-radius: 8px; padding: 15px; }
        .faq-q { font-weight: 600; color: #fbc02d; margin-bottom: 8px; font-size: 15px; }
        .faq-a { font-size: 13px; color: #ccc; text-align: justify; }

        .navigator { position: fixed; bottom: 0; width: 100%; background: #1a1d24; display: flex; height: 65px; border-top: 1px solid #2d323d; z-index: 1000; }
        .nav-item { flex: 1; flex-direction: column; align-items: center; justify-content: center; font-size: 11px; color: #8e94a3; }
        .nav-item i { font-size: 20px; margin-bottom: 4px; }
        .nav-item.active { color: #fbc02d; }

        footer { background: #0a0c10; padding: 30px 15px 100px; text-align: center; font-size: 12px; color: #666; }
        .footer-row { margin-bottom: 20px; flex-wrap: wrap; justify-content: center; gap: 15px; }
        .footer-row a { color: #999; }
        .copyright { margin-top: 20px; border-top: 1px solid #222; padding-top: 20px; }

        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .comments { grid-template-columns: repeat(3, 1fr); }
            .guidelines { grid-template-columns: repeat(6, 1fr); }
        }