* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #0f1218; color: #ffffff; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        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 #2a2e38; }
        .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: #ffc107; }
        .auth-btns { display: flex; gap: 10px; }
        .btn { padding: 6px 15px; border-radius: 20px; font-size: 13px; font-weight: 600; cursor: pointer; border: none; }
        .btn-login { background: transparent; color: #ffc107; border: 1px solid #ffc107; }
        .btn-reg { background: linear-gradient(135deg, #ffc107, #ff9800); color: #000; }
        .banner { width: 100%; display: block; aspect-ratio: 2/1; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        main { padding: 15px; max-width: 800px; margin: 0 auto; }
        .jackpot-sec { background: linear-gradient(135deg, #2a2e38, #1a1d24); border-radius: 12px; padding: 20px; text-align: center; margin-bottom: 20px; border: 1px solid #3d424d; position: relative; overflow: hidden; }
        .jackpot-sec::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(255,193,7,0.1) 0%, transparent 70%); }
        .jackpot-title { color: #ffc107; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #fff; margin: 10px 0; font-family: monospace; text-shadow: 0 0 10px rgba(255,193,7,0.5); }
        .section-title { font-size: 18px; margin: 20px 0 15px; display: flex; align-items: center; gap: 8px; border-left: 4px solid #ffc107; padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 25px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; transition: transform 0.2s; border: 1px solid #2a2e38; }
        .game-card:active { transform: scale(0.95); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .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: #ccc; }
        .intro-card { background: #1a1d24; padding: 20px; border-radius: 15px; border: 1px solid #2a2e38; margin-bottom: 25px; }
        .intro-card h1 { font-size: 20px; color: #ffc107; margin-bottom: 15px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #a0a6b1; text-align: justify; }
        .guidelines { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 25px; }
        .guide-item { background: #1a1d24; padding: 15px; border-radius: 10px; display: flex; gap: 15px; align-items: center; border-bottom: 2px solid #ffc107; }
        .guide-item i { font-size: 24px; color: #ffc107; width: 40px; text-align: center; }
        .guide-text h3 { font-size: 15px; margin-bottom: 4px; }
        .guide-text p { font-size: 12px; color: #888; }
        .winners-box { background: #1a1d24; border-radius: 12px; padding: 15px; height: 300px; overflow-y: auto; border: 1px solid #2a2e38; }
        .winner-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #2a2e38; font-size: 13px; }
        .winner-row span:last-child { color: #4caf50; font-weight: bold; }
        .trust-elements { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 25px 0; text-align: center; }
        .trust-item { padding: 10px; background: #1a1d24; border-radius: 8px; border: 1px solid #2a2e38; }
        .trust-item i { font-size: 20px; color: #ffc107; margin-bottom: 5px; }
        .trust-item span { display: block; font-size: 11px; color: #888; }
        .comments-sec { margin-bottom: 25px; }
        .comment-card { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 12px; border: 1px solid #2a2e38; }
        .user-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .user-avatar { width: 35px; height: 35px; background: #3d424d; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
        .user-name { font-size: 14px; font-weight: 600; }
        .user-comment { font-size: 13px; color: #a0a6b1; font-style: italic; }
        .faq-sec { margin-bottom: 25px; }
        .faq-item { background: #1a1d24; border-radius: 10px; padding: 15px; margin-bottom: 10px; border: 1px solid #2a2e38; }
        .faq-item h3 { font-size: 15px; color: #ffc107; margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: #a0a6b1; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2a2e38; z-index: 1000; box-shadow: 0 -5px 15px rgba(0,0,0,0.5); }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; color: #888; }
        .nav-item i { font-size: 18px; }
        .nav-item.active { color: #ffc107; }
        footer { background: #0a0c10; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #2a2e38; }
        .foot-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 20px; }
        .foot-links a { font-size: 13px; color: #888; }
        .copyright { font-size: 12px; color: #555; margin-top: 20px; }