* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
        body { background-color: #0f1218; color: #ffffff; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; overflow-x: hidden; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        header { background: linear-gradient(180deg, #1a1d24 0%, #0f1218 100%); padding: 10px 15px; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2d323e; display: flex; align-items: center; justify-content: space-between; height: 60px; }
        .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: 6px 16px; border-radius: 20px; font-size: 14px; font-weight: 600; border: none; cursor: pointer; transition: transform 0.2s; }
        .btn:active { transform: scale(0.95); }
        .btn-login { background: transparent; border: 1px solid #d4af37; color: #d4af37; }
        .btn-register { background: linear-gradient(90deg, #d4af37, #f1c40f); color: #000; }
        main { max-width: 800px; margin: 0 auto; padding: 10px; }
        .banner { width: 100%; aspect-ratio: 2/1; border-radius: 12px; overflow: hidden; margin-bottom: 15px; cursor: pointer; box-shadow: 0 4px 15px rgba(0,0,0,0.5); }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box { background: radial-gradient(circle at center, #2d323e 0%, #1a1d24 100%); padding: 20px; border-radius: 15px; text-align: center; border: 1px solid #d4af37; margin-bottom: 20px; }
        .jackpot-title { color: #d4af37; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #ffffff; text-shadow: 0 0 10px rgba(212,175,55,0.5); font-family: monospace; }
        .section-title { font-size: 18px; margin: 20px 0 15px; display: flex; align-items: center; gap: 8px; color: #d4af37; }
        .section-title::before { content: ""; width: 4px; height: 18px; background: #d4af37; border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 20px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; border: 1px solid #2d323e; transition: transform 0.3s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 8px; text-align: center; }
        .game-info h3 { font-size: 13px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-card { background: #1a1d24; padding: 20px; border-radius: 15px; border: 1px solid #2d323e; margin: 25px 0; }
        .intro-card h1 { font-size: 20px; color: #d4af37; margin-bottom: 10px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #94a3b8; }
        .guidelines-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 25px; }
        .guide-item { background: #1a1d24; padding: 15px; border-radius: 12px; border-left: 3px solid #d4af37; }
        .guide-item h3 { font-size: 16px; margin-bottom: 5px; color: #fff; }
        .guide-item p { font-size: 13px; color: #94a3b8; }
        .winner-list { background: #1a1d24; border-radius: 15px; padding: 15px; height: 250px; overflow-y: auto; border: 1px solid #2d323e; }
        .winner-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid #2d323e; font-size: 13px; }
        .winner-user { display: flex; align-items: center; gap: 8px; }
        .winner-user i { color: #d4af37; }
        .winner-amount { color: #4ade80; font-weight: 600; }
        .stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 25px 0; text-align: center; }
        .stat-box { background: #1a1d24; padding: 15px 5px; border-radius: 12px; border: 1px solid #2d323e; }
        .stat-box i { font-size: 20px; color: #d4af37; margin-bottom: 5px; }
        .stat-box div { font-size: 11px; color: #94a3b8; text-transform: uppercase; }
        .stat-box strong { font-size: 14px; display: block; }
        .reviews-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin: 25px 0; }
        .review-card { background: #1a1d24; padding: 15px; border-radius: 15px; border: 1px solid #2d323e; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-avatar { width: 40px; height: 40px; border-radius: 50%; background: #2d323e; display: flex; align-items: center; justify-content: center; color: #d4af37; }
        .review-stars { color: #f1c40f; font-size: 12px; }
        .review-content { font-size: 13px; color: #94a3b8; font-style: italic; }
        .faq-section { margin: 25px 0; }
        .faq-item { background: #1a1d24; margin-bottom: 10px; border-radius: 10px; overflow: hidden; }
        .faq-question { padding: 15px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; font-size: 14px; border-bottom: 1px solid #2d323e; }
        .faq-answer { padding: 15px; font-size: 13px; color: #94a3b8; background: #16191f; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2d323e; z-index: 1000; box-shadow: 0 -5px 15px rgba(0,0,0,0.3); }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #94a3b8; font-size: 11px; }
        .nav-item i { font-size: 18px; }
        .nav-item.active { color: #d4af37; }
        footer { background: #0a0c10; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #2d323e; }
        .footer-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 20px; }
        .footer-row a { color: #94a3b8; font-size: 13px; transition: color 0.2s; }
        .footer-row a:hover { color: #d4af37; }
        .footer-copy { color: #4b5563; font-size: 12px; margin-top: 20px; }
        .trust-badges { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; filter: grayscale(1); opacity: 0.5; }
        .trust-badges i { font-size: 24px; }