body { background-color: #0f1115; color: #e0e0e0; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; margin: 0; padding-bottom: 70px; }
        header { background: #1a1d24; padding: 10px 15px; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.5); }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: normal; color: #fff; }
        .header-right { display: flex; gap: 10px; }
        .btn { padding: 6px 15px; border-radius: 20px; border: none; font-weight: 600; cursor: pointer; font-size: 14px; transition: 0.3s; }
        .btn-login { background: transparent; color: #d4af37; border: 1px solid #d4af37; }
        .btn-register { background: linear-gradient(180deg, #f3d078 0%, #d4af37 100%); color: #000; }
        main { padding: 10px; max-width: 600px; margin: 0 auto; }
        .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.3); }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container { background: linear-gradient(135deg, #1a1d24 0%, #2a2e38 100%); padding: 15px; border-radius: 15px; text-align: center; margin-bottom: 20px; border: 1px solid #333; }
        .jackpot-title { font-size: 14px; color: #d4af37; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; }
        .jackpot-amount { font-size: 28px; font-weight: 800; color: #fff; text-shadow: 0 0 10px rgba(212,175,55,0.5); font-family: monospace; }
        .section-title { font-size: 18px; margin: 20px 0 15px; padding-left: 10px; border-left: 4px solid #d4af37; display: flex; justify-content: space-between; align-items: center; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; text-decoration: none; color: #fff; transition: 0.3s; border: 1px solid #2a2e38; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 8px; text-align: center; font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; background: #1a1d24; }
        .intro-card { background: #1a1d24; padding: 20px; border-radius: 15px; margin-bottom: 25px; border-top: 3px solid #d4af37; }
        .intro-card h1 { font-size: 20px; color: #d4af37; margin-bottom: 15px; line-height: 1.3; }
        .intro-card p { font-size: 14px; line-height: 1.6; color: #bbb; }
        .trust-elements { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; }
        .trust-item { text-align: center; background: #1a1d24; padding: 15px 5px; border-radius: 10px; }
        .trust-item i { font-size: 24px; color: #d4af37; margin-bottom: 8px; }
        .trust-item span { font-size: 11px; display: block; color: #eee; }
        .guidelines { background: #1a1d24; border-radius: 15px; padding: 15px; margin-bottom: 25px; }
        .guide-item { padding: 12px 0; border-bottom: 1px solid #2a2e38; }
        .guide-item:last-child { border-bottom: none; }
        .guide-item h3 { font-size: 15px; color: #fff; margin: 0 0 5px 0; }
        .guide-item p { font-size: 13px; color: #999; margin: 0; }
        .winning-list { background: #1a1d24; border-radius: 15px; padding: 15px; height: 200px; overflow-y: hidden; position: relative; margin-bottom: 25px; }
        .winner-scroll { animation: scrollList 30s linear infinite; }
        @keyframes scrollList { 0% { transform: translateY(0); } 100% { transform: translateY(-100%); } }
        .winner-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #2a2e38; font-size: 13px; }
        .winner-name { color: #eee; }
        .winner-val { color: #d4af37; font-weight: bold; }
        .comment-grid { display: flex; flex-direction: column; gap: 12px; margin-bottom: 25px; }
        .comment-card { background: #1a1d24; padding: 15px; border-radius: 12px; border-left: 3px solid #d4af37; }
        .comment-user { font-weight: bold; font-size: 14px; margin-bottom: 5px; display: flex; align-items: center; gap: 8px; }
        .comment-user i { color: #d4af37; }
        .comment-text { font-size: 13px; color: #bbb; font-style: italic; }
        .faq-section { margin-bottom: 30px; }
        .faq-item { background: #1a1d24; border-radius: 10px; margin-bottom: 10px; padding: 15px; border: 1px solid #2a2e38; }
        .faq-item h3 { font-size: 15px; margin-top: 0; color: #d4af37; }
        .faq-item p { font-size: 14px; color: #bbb; line-height: 1.5; margin-bottom: 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: 1000; }
        .nav-item { text-align: center; text-decoration: none; color: #999; flex: 1; }
        .nav-item i { font-size: 20px; display: block; margin-bottom: 4px; }
        .nav-item span { font-size: 11px; }
        footer { background: #0a0c10; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #2a2e38; }
        .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 20px; }
        .footer-links a { color: #888; text-decoration: none; font-size: 13px; }
        .footer-copy { font-size: 12px; color: #555; margin-top: 20px; }