* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; }
        body { background-color: #0f1216; color: #ffffff; line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        header { background: linear-gradient(180deg, #1e222d 0%, #11141b 100%); 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 #2c313c; }
        .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: #e0e0e0; }
        .header-right { display: flex; gap: 8px; }
        .btn { padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: 600; border: none; cursor: pointer; transition: 0.3s; }
        .btn-login { background-color: transparent; border: 1px solid #d4af37; color: #d4af37; }
        .btn-register { background: linear-gradient(90deg, #d4af37 0%, #f9e297 100%); color: #000; }
        .banner { width: 100%; display: block; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container { margin: 15px; background: radial-gradient(circle, #2c313c 0%, #1a1d24 100%); border-radius: 15px; padding: 20px; text-align: center; border: 1px solid #3d4451; position: relative; overflow: hidden; }
        .jackpot-title { font-size: 14px; color: #d4af37; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #ffffff; margin: 10px 0; font-family: 'Courier New', monospace; text-shadow: 0 0 10px rgba(212, 175, 55, 0.5); }
        .section-title { padding: 15px 15px 5px; font-size: 18px; display: flex; align-items: center; gap: 10px; color: #d4af37; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 15px; }
        .game-card { background: #1e222d; border-radius: 12px; overflow: hidden; border: 1px solid #2c313c; display: block; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 8px; text-align: center; font-size: 13px; color: #ccc; }
        .intro-card { margin: 15px; background: #1e222d; padding: 20px; border-radius: 15px; border-left: 4px solid #d4af37; }
        .intro-card h1 { font-size: 20px; margin-bottom: 10px; color: #d4af37; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #a0aab7; text-align: justify; }
        .guidelines-grid { display: grid; grid-template-columns: 1fr; gap: 10px; padding: 0 15px; }
        .guide-item { background: #1a1d24; padding: 15px; border-radius: 10px; border: 1px solid #2c313c; }
        .guide-item h3 { font-size: 15px; color: #d4af37; margin-bottom: 5px; }
        .guide-item p { font-size: 13px; color: #8a94a1; }
        .winners-section { margin: 20px 15px; background: #161a21; border-radius: 12px; padding: 15px; height: 250px; overflow-y: auto; border: 1px solid #2c313c; }
        .winner-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #242933; font-size: 13px; }
        .winner-name { color: #e0e0e0; }
        .winner-amount { color: #4caf50; font-weight: bold; }
        .pro-elements { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; padding: 25px 15px; background: #11141b; margin-top: 20px; }
        .pro-item { text-align: center; width: 80px; }
        .pro-item i { font-size: 24px; color: #d4af37; margin-bottom: 8px; }
        .pro-item span { display: block; font-size: 11px; color: #8a94a1; }
        .comments-section { padding: 15px; }
        .comment-card { background: #1e222d; padding: 15px; border-radius: 12px; margin-bottom: 15px; position: relative; }
        .comment-user { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .user-avatar { width: 35px; height: 35px; background: #3d4451; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #d4af37; }
        .comment-text { font-size: 13px; font-style: italic; color: #b0b8c4; }
        .faq-section { padding: 15px; margin-bottom: 20px; }
        .faq-item { background: #1a1d24; border: 1px solid #2c313c; border-radius: 8px; margin-bottom: 10px; padding: 15px; }
        .faq-question { font-weight: 600; color: #d4af37; margin-bottom: 8px; font-size: 15px; }
        .faq-answer { font-size: 14px; color: #a0aab7; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; height: 65px; background: #1e222d; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #2c313c; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; color: #8a94a1; font-size: 12px; }
        .nav-item i { font-size: 20px; margin-bottom: 4px; }
        .nav-item.active { color: #d4af37; }
        footer { background: #0b0d11; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #1e222d; }
        .footer-row { margin-bottom: 20px; display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
        .footer-link { color: #8a94a1; font-size: 13px; transition: 0.3s; }
        .footer-link:hover { color: #d4af37; }
        .copyright { font-size: 12px; color: #5a6370; margin-top: 10px; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: 1fr 1fr 1fr 1fr; }
            .guidelines-grid { grid-template-columns: 1fr 1fr; }
        }