* { margin: 0; padding: 0; box-sizing: border-box; }
        body { background-color: #0f1216; color: #ffffff; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        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; }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; object-fit: contain; }
        .header-left strong { font-size: 16px; font-weight: normal; color: #fff; }
        .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: #d4af37; border: 1px solid #d4af37; }
        .btn-register { background: linear-gradient(135deg, #d4af37, #f9e390); color: #000; }
        .banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section { background: radial-gradient(circle, #2a0a0a 0%, #0f1216 100%); margin: 20px 0; padding: 20px; border-radius: 12px; text-align: center; border: 1px solid #441111; }
        .jackpot-title { color: #d4af37; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-size: 32px; font-weight: bold; color: #ff3e3e; text-shadow: 0 0 10px rgba(255, 62, 62, 0.5); margin: 10px 0; }
        .section-title { font-size: 18px; margin: 20px 0 15px; display: flex; align-items: center; gap: 8px; border-left: 4px solid #d4af37; padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; transition: transform 0.2s; border: 1px solid #2a2e37; position: relative; }
        .game-card img { width: 100%; display: block; aspect-ratio: 1/1; object-fit: cover; }
        .game-info { padding: 8px; }
        .game-title { font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-card { background: #1a1d24; padding: 20px; border-radius: 15px; border: 1px solid #d4af37; margin: 25px 0; }
        .intro-card h1 { font-size: 20px; color: #d4af37; margin-bottom: 12px; }
        .intro-card p { font-size: 14px; color: #ccc; }
        .guidelines { display: grid; grid-template-columns: 1fr; gap: 15px; margin: 25px 0; }
        .guide-item { background: #1a1d24; padding: 15px; border-radius: 10px; display: flex; align-items: flex-start; gap: 12px; }
        .guide-item i { color: #d4af37; font-size: 20px; margin-top: 3px; }
        .guide-item h3 { font-size: 16px; margin-bottom: 5px; }
        .guide-item p { font-size: 13px; color: #aaa; }
        .winning-list { background: #16191f; border-radius: 12px; padding: 10px; max-height: 300px; overflow-y: auto; margin: 25px 0; border: 1px solid #2a2e37; }
        .winning-item { display: flex; justify-content: space-between; padding: 8px 5px; border-bottom: 1px solid #222; font-size: 12px; }
        .winner-name { color: #d4af37; }
        .winner-amount { color: #4caf50; font-weight: bold; }
        .trust-elements { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 15px; margin: 30px 0; padding: 20px; background: #1a1d24; border-radius: 10px; }
        .trust-item { text-align: center; font-size: 12px; color: #888; flex: 1; min-width: 80px; }
        .trust-item i { font-size: 24px; color: #d4af37; display: block; margin-bottom: 5px; }
        .comments { display: flex; flex-direction: column; gap: 15px; margin: 25px 0; }
        .comment-box { background: #1a1d24; padding: 15px; border-radius: 12px; border-left: 3px solid #d4af37; }
        .comment-user { font-weight: bold; font-size: 14px; display: flex; justify-content: space-between; margin-bottom: 5px; }
        .comment-stars { color: #ffc107; font-size: 12px; }
        .comment-text { font-size: 13px; color: #ddd; }
        .faq-section { margin: 30px 0; }
        .faq-item { background: #1a1d24; border-radius: 8px; margin-bottom: 10px; overflow: hidden; border: 1px solid #2a2e37; }
        .faq-question { padding: 15px; font-weight: bold; font-size: 14px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 0 15px 15px; font-size: 13px; color: #bbb; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; height: 65px; background: #1a1d24; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #2a2e37; z-index: 1000; box-shadow: 0 -2px 10px rgba(0,0,0,0.5); }
        .nav-item { display: flex; flex-direction: column; align-items: center; color: #888; font-size: 11px; }
        .nav-item i { font-size: 20px; margin-bottom: 3px; }
        .nav-item.active { color: #d4af37; }
        footer { background: #0a0c0f; padding: 30px 15px 100px; text-align: center; color: #666; font-size: 13px; }
        .footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 20px; }
        .footer-links a { color: #aaa; }
        .footer-bottom { border-top: 1px solid #222; padding-top: 15px; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(3, 1fr); }
            .guidelines { grid-template-columns: 1fr 1fr; }
        }