* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1218; color: #ffffff; line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        header { background: #1a1d24; padding: 10px 15px; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.5); display: flex; justify-content: space-between; align-items: center; }
        .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: #f3ba2f; }
        .auth-buttons { display: flex; gap: 10px; }
        .btn { padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: 600; border: none; cursor: pointer; transition: 0.3s; }
        .btn-login { background: transparent; border: 1px solid #f3ba2f; color: #f3ba2f; }
        .btn-register { background: linear-gradient(180deg, #f3ba2f 0%, #d4a017 100%); color: #000; }
        .banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .container { padding: 15px; }
        .jackpot-section { background: linear-gradient(45deg, #1e222b, #2a2f3a); border-radius: 12px; padding: 20px; text-align: center; margin-bottom: 20px; border: 1px solid #333; }
        .jackpot-title { color: #f3ba2f; font-size: 18px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #ffffff; text-shadow: 0 0 10px rgba(243,186,47,0.5); }
        .section-title { font-size: 18px; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; border-left: 4px solid #f3ba2f; padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; transition: transform 0.2s; box-shadow: 0 4px 15px rgba(0,0,0,0.3); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 8px; text-align: center; }
        .game-title { font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-card { background: #1a1d24; border-radius: 15px; padding: 20px; margin-bottom: 25px; border-bottom: 3px solid #f3ba2f; }
        .intro-card h1 { font-size: 18px; color: #f3ba2f; margin-bottom: 12px; }
        .intro-card p { font-size: 14px; color: #cccccc; }
        .guidelines { display: grid; grid-template-columns: 1fr; gap: 10px; margin-bottom: 25px; }
        .guide-item { background: #1e222b; padding: 15px; border-radius: 10px; display: flex; align-items: center; gap: 15px; }
        .guide-item i { color: #f3ba2f; font-size: 20px; }
        .winners-box { background: #1a1d24; border-radius: 12px; padding: 15px; margin-bottom: 25px; max-height: 300px; overflow-y: auto; }
        .winner-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #2a2f3a; font-size: 13px; }
        .winner-name { color: #f3ba2f; }
        .winner-prize { color: #4caf50; font-weight: bold; }
        .features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; text-align: center; }
        .feature-item i { font-size: 24px; color: #f3ba2f; margin-bottom: 5px; }
        .feature-item span { font-size: 12px; display: block; color: #aaa; }
        .reviews { margin-bottom: 25px; }
        .review-card { background: #1e222b; padding: 15px; border-radius: 12px; margin-bottom: 10px; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
        .stars { color: #f3ba2f; font-size: 12px; }
        .reviewer { font-size: 14px; font-weight: 600; }
        .review-text { font-size: 13px; color: #bbb; italic; }
        .faq-section { margin-bottom: 25px; }
        .faq-item { background: #1a1d24; border-radius: 8px; margin-bottom: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; font-size: 14px; cursor: pointer; color: #f3ba2f; display: flex; justify-content: space-between; }
        .faq-answer { padding: 0 15px 15px; font-size: 13px; color: #ccc; }
        .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 { 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: #f3ba2f; }
        footer { background: #0a0c10; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #1a1d24; }
        .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 15px; font-size: 13px; }
        .footer-links a { color: #aaa; }
        .footer-copyright { font-size: 12px; color: #666; margin-top: 15px; }