* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1217; color: #ffffff; line-height: 1.5; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }
        .container { width: 100%; max-width: 600px; margin: 0 auto; padding: 0 12px; }
        header { background-color: #1a1d24; height: 60px; display: flex; align-items: center; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2d323e; }
        .nav-wrapper { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 0 15px; }
        .logo-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-box strong { font-size: 16px; font-weight: normal; color: #fff; }
        .auth-btns { display: flex; gap: 8px; }
        .btn { padding: 6px 14px; border-radius: 20px; font-size: 13px; font-weight: 600; cursor: pointer; border: none; transition: 0.3s; }
        .btn-login { background-color: transparent; color: #ffb000; border: 1px solid #ffb000; }
        .btn-register { background: linear-gradient(135deg, #ffb000, #ff8c00); color: #000; }
        .banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; border-radius: 0 0 15px 15px; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-card { background: linear-gradient(135deg, #1a1d24, #242932); margin: 15px 0; padding: 20px; border-radius: 15px; text-align: center; border: 1px solid #3d4452; box-shadow: 0 4px 15px rgba(0,0,0,0.3); }
        .jackpot-title { font-size: 14px; color: #ffb000; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #fff; text-shadow: 0 0 10px rgba(255, 176, 0, 0.5); font-family: monospace; }
        .section-header { display: flex; align-items: center; gap: 10px; margin: 20px 0 12px; }
        .section-header i { color: #ffb000; }
        .section-header h2 { font-size: 18px; font-weight: 600; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
        .game-card { background-color: #1a1d24; border-radius: 12px; overflow: hidden; border: 1px solid #2d323e; transition: transform 0.2s; }
        .game-card:active { transform: scale(0.97); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-info { padding: 8px; text-align: center; }
        .game-info h3 { font-size: 13px; font-weight: normal; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #e0e0e0; }
        .intro-card { background-color: #1a1d24; border-radius: 15px; padding: 20px; margin: 20px 0; border: 1px solid #2d323e; }
        .intro-card h1 { font-size: 18px; color: #ffb000; margin-bottom: 12px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #a0a0a0; }
        .guidelines { display: grid; grid-template-columns: 1fr; gap: 10px; margin: 20px 0; }
        .guide-item { background-color: #1a1d24; padding: 15px; border-radius: 10px; display: flex; align-items: center; gap: 15px; border-left: 4px solid #ffb000; }
        .guide-item i { font-size: 20px; color: #ffb000; width: 30px; text-align: center; }
        .guide-text h4 { font-size: 15px; margin-bottom: 2px; }
        .guide-text p { font-size: 12px; color: #888; }
        .winners-box { background-color: #1a1d24; border-radius: 15px; padding: 15px; margin: 20px 0; height: 300px; overflow-y: auto; border: 1px solid #2d323e; }
        .winner-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #2d323e; font-size: 13px; }
        .winner-name { color: #fff; }
        .winner-amount { color: #4caf50; font-weight: bold; }
        .trust-section { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 20px 0; text-align: center; }
        .trust-item { background-color: #1a1d24; padding: 12px; border-radius: 10px; border: 1px solid #2d323e; }
        .trust-item i { font-size: 24px; color: #ffb000; margin-bottom: 8px; }
        .trust-item span { display: block; font-size: 11px; color: #aaa; }
        .comment-grid { display: grid; grid-template-columns: 1fr; gap: 12px; margin: 20px 0; }
        .comment-card { background-color: #1a1d24; padding: 15px; border-radius: 15px; border: 1px solid #2d323e; }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .comment-avatar { width: 35px; height: 35px; border-radius: 50%; background-color: #3d4452; display: flex; align-items: center; justify-content: center; font-weight: bold; }
        .comment-meta h5 { font-size: 14px; }
        .comment-stars { color: #ffb000; font-size: 10px; }
        .comment-card p { font-size: 13px; color: #aaa; font-style: italic; }
        .faq-section { margin: 25px 0; }
        .faq-item { background-color: #1a1d24; border-radius: 10px; margin-bottom: 10px; overflow: hidden; border: 1px solid #2d323e; }
        .faq-question { padding: 15px; font-weight: 600; font-size: 14px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 0 15px 15px; font-size: 13px; color: #aaa; border-top: 1px solid #2d323e; padding-top: 15px; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background-color: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2d323e; z-index: 1000; }
        .nav-item { text-align: center; color: #888; font-size: 11px; display: flex; flex-direction: column; gap: 4px; }
        .nav-item i { font-size: 18px; }
        .nav-item.active { color: #ffb000; }
        footer { background-color: #0f1217; padding: 30px 15px 20px; 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 { font-size: 13px; color: #888; }
        .footer-copyright { font-size: 12px; color: #555; margin-top: 15px; }