* { margin: 0; padding: 0; box-sizing: border-box; outline: none; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1216; color: #ffffff; line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        img { max-width: 100%; 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 #2d323e; }
        .logo-area { display: flex; align-items: center; gap: 10px; }
        .logo-area img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-area strong { font-size: 16px; font-weight: normal; color: #fff; }
        .header-btns { display: flex; gap: 8px; }
        .btn { padding: 8px 16px; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: transform 0.2s; }
        .btn-login { background: transparent; color: #fff; border: 1px solid #4a5162; }
        .btn-register { background: linear-gradient(135deg, #f39c12, #d35400); color: #fff; }
        .btn:active { transform: scale(0.95); }
        .banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section { background: #1a1d24; margin: 15px; padding: 20px; border-radius: 15px; border: 1px solid #d4af37; text-align: center; box-shadow: 0 0 20px rgba(212, 175, 55, 0.2); }
        .jackpot-title { font-size: 14px; color: #d4af37; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { font-size: 28px; font-weight: 800; color: #fff; font-family: monospace; letter-spacing: 1px; }
        .section-container { padding: 15px; }
        .section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 15px; padding-left: 10px; border-left: 4px solid #f39c12; }
        .section-header h2 { font-size: 18px; color: #fff; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; border: 1px solid #2d323e; transition: 0.3s; }
        .game-card:hover { border-color: #f39c12; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-info { padding: 10px; text-align: center; }
        .game-info h3 { font-size: 13px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #cbd5e0; }
        .intro-card { background: #1a1d24; margin: 15px; padding: 20px; border-radius: 15px; border: 1px solid #2d323e; }
        .intro-card h1 { font-size: 20px; color: #f39c12; margin-bottom: 15px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #a0aec0; text-align: justify; }
        .guidelines-grid { display: grid; grid-template-columns: 1fr; gap: 10px; margin: 15px; }
        .guide-item { background: #1a1d24; padding: 15px; border-radius: 12px; border: 1px solid #2d323e; display: flex; align-items: center; gap: 15px; }
        .guide-item i { font-size: 24px; color: #f39c12; width: 30px; }
        .guide-item h3 { font-size: 15px; color: #fff; }
        .winning-list { background: #1a1d24; margin: 15px; border-radius: 15px; overflow: hidden; border: 1px solid #2d323e; }
        .winning-item { display: flex; align-items: center; justify-content: space-between; padding: 12px 15px; border-bottom: 1px solid #2d323e; font-size: 13px; }
        .winning-item:last-child { border-bottom: none; }
        .winner-name { color: #a0aec0; }
        .winner-game { color: #f39c12; }
        .winner-amount { color: #48bb78; font-weight: bold; }
        .pro-elements { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 20px; padding: 25px 15px; background: #11141a; }
        .pro-item { text-align: center; width: 45%; }
        .pro-item i { font-size: 30px; color: #f39c12; margin-bottom: 10px; }
        .pro-item span { display: block; font-size: 12px; color: #a0aec0; }
        .comment-section { padding: 15px; }
        .comment-card { background: #1a1d24; padding: 15px; border-radius: 12px; border: 1px solid #2d323e; margin-bottom: 12px; }
        .comment-user { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .comment-user i { color: #f39c12; }
        .comment-text { font-size: 13px; color: #a0aec0; font-style: italic; }
        .faq-section { padding: 15px; }
        .faq-item { background: #1a1d24; border-radius: 12px; border: 1px solid #2d323e; margin-bottom: 10px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; font-size: 14px; color: #f39c12; border-bottom: 1px solid #2d323e; display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 15px; font-size: 13px; color: #a0aec0; line-height: 1.6; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1d24; height: 65px; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #2d323e; z-index: 1000; padding-bottom: 5px; }
        .nav-item { text-align: center; color: #718096; transition: 0.3s; }
        .nav-item i { font-size: 20px; display: block; margin-bottom: 4px; }
        .nav-item span { font-size: 11px; }
        .nav-item:active { color: #f39c12; }
        footer { background: #0a0c10; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #2d323e; }
        .footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 20px; }
        .footer-links a { color: #a0aec0; font-size: 13px; }
        .footer-copy { font-size: 12px; color: #4a5568; margin-top: 20px; border-top: 1px solid #1a1d24; padding-top: 20px; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(3, 1fr); }
            .guidelines-grid { grid-template-columns: 1fr 1fr; }
            main { max-width: 800px; margin: 0 auto; }
        }