body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1218; color: #ffffff; margin: 0; padding: 0; line-height: 1.6; }
        a { text-decoration: none; color: inherit; }
        header { background: #1a1d24; padding: 10px 15px; position: sticky; top: 0; z-index: 1000; border-bottom: 2px solid #d4af37; display: flex; justify-content: space-between; align-items: center; }
        .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: #d4af37; }
        .header-right { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 20px; font-weight: bold; border: none; cursor: pointer; font-size: 14px; transition: transform 0.2s; }
        .btn-login { background: transparent; color: #ffffff; border: 1px solid #d4af37; }
        .btn-register { background: linear-gradient(180deg, #f9df7b 0%, #d4af37 100%); color: #000; }
        .btn:active { transform: scale(0.95); }
        main { padding-bottom: 100px; max-width: 600px; margin: 0 auto; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section { background: radial-gradient(circle, #2a2e38 0%, #1a1d24 100%); margin: 15px; padding: 20px; border-radius: 15px; border: 1px solid #d4af37; text-align: center; box-shadow: 0 0 15px rgba(212, 175, 55, 0.3); }
        .jackpot-title { color: #d4af37; font-size: 18px; text-transform: uppercase; margin-bottom: 10px; font-weight: bold; letter-spacing: 2px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #ffffff; text-shadow: 0 0 10px rgba(255,255,255,0.5); }
        .section-title { padding: 15px 15px 5px; font-size: 18px; color: #d4af37; display: flex; align-items: center; gap: 10px; }
        .section-title::before { content: ""; width: 4px; height: 18px; background: #d4af37; display: inline-block; border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 15px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; border: 1px solid #2d323d; transition: 0.3s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 8px; text-align: center; font-size: 13px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-card { background: #1a1d24; margin: 15px; padding: 20px; border-radius: 15px; border-left: 5px solid #d4af37; }
        .intro-card h1 { font-size: 18px; margin: 0 0 10px 0; color: #d4af37; line-height: 1.4; }
        .intro-card p { font-size: 14px; margin: 0; color: #b0b3b8; }
        .guidelines { display: grid; grid-template-columns: 1fr; gap: 10px; padding: 15px; }
        .guide-item { background: #1a1d24; padding: 15px; border-radius: 10px; border: 1px solid #2d323d; display: flex; align-items: flex-start; gap: 12px; }
        .guide-item i { color: #d4af37; font-size: 20px; margin-top: 3px; }
        .guide-item div h3 { font-size: 15px; margin: 0 0 5px 0; color: #ffffff; }
        .guide-item div p { font-size: 13px; margin: 0; color: #888; }
        .winning-list { margin: 15px; background: #1a1d24; border-radius: 12px; height: 250px; overflow-y: auto; padding: 10px; border: 1px solid #2d323d; }
        .winner-row { display: flex; justify-content: space-between; padding: 8px 5px; border-bottom: 1px solid #2d323d; font-size: 12px; }
        .winner-name { color: #d4af37; }
        .winner-amount { color: #4caf50; font-weight: bold; }
        .casino-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 15px; text-align: center; }
        .feature-item { font-size: 11px; color: #888; }
        .feature-item i { font-size: 24px; color: #d4af37; margin-bottom: 5px; display: block; }
        .comments { padding: 15px; }
        .comment-card { background: #242831; padding: 15px; border-radius: 12px; margin-bottom: 12px; position: relative; }
        .comment-user { font-size: 14px; font-weight: bold; color: #d4af37; margin-bottom: 5px; display: flex; align-items: center; gap: 5px; }
        .comment-text { font-size: 13px; color: #cfd1d4; font-style: italic; }
        .comment-rating { color: #ffc107; font-size: 10px; margin-top: 5px; }
        .faq-section { padding: 15px; }
        .faq-item { background: #1a1d24; border-radius: 10px; margin-bottom: 10px; border: 1px solid #2d323d; }
        .faq-question { padding: 15px; font-size: 14px; font-weight: bold; color: #d4af37; border-bottom: 1px solid #2d323d; }
        .faq-answer { padding: 15px; font-size: 13px; color: #b0b3b8; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 2px solid #d4af37; z-index: 1000; max-width: 600px; margin: 0 auto; }
        .nav-item { display: flex; flex-direction: column; align-items: center; font-size: 11px; color: #888; }
        .nav-item i { font-size: 20px; margin-bottom: 3px; }
        .nav-item.active { color: #d4af37; }
        footer { background: #0a0c10; padding: 30px 15px 120px; text-align: center; }
        .footer-row { margin-bottom: 20px; }
        .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 15px; }
        .footer-links a { font-size: 13px; color: #888; }
        .copyright { font-size: 12px; color: #555; }
        @media (min-width: 601px) {
            header, .navigator { left: 50%; transform: translateX(-50%); }
        }