body { margin: 0; padding: 0; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1116; color: #e0e0e0; line-height: 1.6; }
        header { position: sticky; top: 0; z-index: 1000; background: #1a1d24; border-bottom: 1px solid #333; padding: 10px 15px; display: flex; align-items: center; justify-content: space-between; }
        .logo-box { display: flex; align-items: center; text-decoration: none; color: #fff; }
        .logo-box img { width: 25px; height: 25px; margin-right: 8px; }
        .logo-box strong { font-size: 16px; font-weight: normal; letter-spacing: 1px; }
        .header-btns { display: flex; gap: 8px; }
        .btn { padding: 8px 16px; border-radius: 20px; border: none; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration: none; transition: 0.3s; }
        .btn-login { background: transparent; color: #ffd700; border: 1px solid #ffd700; }
        .btn-register { background: linear-gradient(180deg, #ffd700, #b8860b); color: #000; }
        main { padding-bottom: 80px; max-width: 600px; margin: 0 auto; }
        .banner { width: 100%; aspect-ratio: 2/1; display: block; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section { background: radial-gradient(circle, #3a3f4b, #1a1d24); margin: 15px; border-radius: 12px; padding: 20px; text-align: center; border: 1px solid #ffd700; }
        .jackpot-title { color: #ffd700; font-size: 18px; text-transform: uppercase; margin-bottom: 10px; font-weight: bold; }
        .jackpot-amount { font-size: 32px; color: #fff; font-weight: 800; text-shadow: 0 0 10px rgba(255,215,0,0.5); }
        .section-title { padding: 0 15px; margin: 20px 0 10px; font-size: 18px; color: #ffd700; display: flex; align-items: center; }
        .section-title i { margin-right: 8px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; text-decoration: none; color: #fff; border: 1px solid #333; transition: transform 0.2s; }
        .game-card:active { transform: scale(0.95); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 8px; text-align: center; }
        .game-info span { font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; }
        .intro-card { background: #1a1d24; margin: 15px; padding: 20px; border-radius: 15px; border-left: 4px solid #ffd700; }
        .intro-card h1 { font-size: 20px; margin-bottom: 10px; color: #ffd700; }
        .intro-card p { font-size: 14px; color: #ccc; }
        .guidelines { padding: 0 15px; display: grid; grid-template-columns: 1fr; gap: 15px; }
        .guide-item { background: #242831; padding: 15px; border-radius: 10px; border: 1px solid #333; }
        .guide-item h3 { font-size: 16px; color: #ffd700; margin-bottom: 8px; display: flex; align-items: center; }
        .guide-item h3 i { margin-right: 10px; }
        .guide-item p { font-size: 13px; color: #aaa; margin: 0; }
        .winnings-box { background: #1a1d24; margin: 15px; border-radius: 12px; height: 200px; overflow-y: auto; padding: 10px; border: 1px solid #333; }
        .winning-item { display: flex; justify-content: space-between; padding: 8px 5px; border-bottom: 1px solid #2a2e38; font-size: 13px; }
        .winning-user { color: #fff; }
        .winning-amount { color: #4caf50; font-weight: bold; }
        .trust-elements { padding: 20px 15px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; text-align: center; }
        .trust-item { font-size: 12px; color: #888; }
        .trust-item i { font-size: 24px; color: #ffd700; display: block; margin-bottom: 5px; }
        .comments-section { padding: 15px; }
        .comment-card { background: #242831; padding: 15px; border-radius: 12px; margin-bottom: 12px; }
        .comment-header { display: flex; align-items: center; margin-bottom: 8px; }
        .comment-header i { color: #ffd700; font-size: 12px; margin-right: 2px; }
        .comment-user { font-size: 14px; font-weight: bold; margin-left: 8px; color: #fff; }
        .comment-body { font-size: 13px; color: #aaa; font-style: italic; }
        .faq-section { padding: 15px; }
        .faq-item { background: #1a1d24; border-radius: 10px; margin-bottom: 10px; padding: 15px; border: 1px solid #333; }
        .faq-item h3 { font-size: 15px; color: #ffd700; margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: #bbb; margin: 0; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #333; z-index: 1001; }
        .nav-item { text-decoration: none; color: #888; text-align: center; font-size: 11px; }
        .nav-item i { display: block; font-size: 18px; margin-bottom: 3px; }
        .nav-item.active { color: #ffd700; }
        footer { background: #0f1116; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #333; }
        .footer-links { margin-bottom: 20px; display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; }
        .footer-links a { color: #888; text-decoration: none; font-size: 13px; }
        .copyright { font-size: 12px; color: #555; }