* { 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; height: 60px; display: flex; align-items: center; justify-content: space-between; padding: 0 15px; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.5); }
        .logo-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; object-fit: contain; }
        .logo-box strong { font-size: 16px; font-weight: normal; color: #f3ba2f; letter-spacing: 1px; }
        .auth-btns { display: flex; gap: 10px; }
        .btn { padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: bold; cursor: pointer; border: none; transition: transform 0.2s; }
        .btn-login { background: transparent; border: 1px solid #f3ba2f; color: #f3ba2f; }
        .btn-register { background: linear-gradient(180deg, #f3ba2f 0%, #d49a1a 100%); color: #000; }
        .btn:active { transform: scale(0.95); }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; overflow: hidden; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section { background: radial-gradient(circle, #2a2e3a 0%, #1a1d24 100%); margin: 15px; padding: 20px; border-radius: 12px; text-align: center; border: 1px solid #333; }
        .jackpot-title { color: #f3ba2f; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #ffffff; text-shadow: 0 0 15px rgba(243,186,47,0.5); }
        .section-title { padding: 15px 15px 10px; font-size: 18px; display: flex; align-items: center; gap: 10px; color: #f3ba2f; }
        .section-title i { font-size: 20px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 15px 15px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; border: 1px solid #2a2e3a; transition: 0.3s; }
        .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; margin: 15px; padding: 20px; border-radius: 12px; border-left: 4px solid #f3ba2f; }
        .intro-card h1 { font-size: 20px; margin-bottom: 10px; color: #f3ba2f; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #aaa; text-align: justify; }
        .guidelines { display: grid; grid-template-columns: 1fr; gap: 12px; padding: 15px; }
        .guide-item { background: #1a1d24; padding: 15px; border-radius: 12px; display: flex; align-items: flex-start; gap: 15px; }
        .guide-item i { font-size: 24px; color: #f3ba2f; margin-top: 5px; }
        .guide-item h4 { font-size: 15px; margin-bottom: 5px; }
        .guide-item p { font-size: 13px; color: #999; }
        .winners-list { background: #1a1d24; margin: 15px; padding: 15px; border-radius: 12px; max-height: 300px; overflow-y: auto; }
        .winner-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #2a2e3a; font-size: 13px; }
        .winner-name { color: #f3ba2f; }
        .winner-amount { color: #4caf50; font-weight: bold; }
        .trust-elements { display: flex; justify-content: space-around; padding: 20px 15px; flex-wrap: wrap; gap: 20px; opacity: 0.7; }
        .trust-item { text-align: center; font-size: 12px; }
        .trust-item i { font-size: 30px; display: block; margin-bottom: 5px; color: #f3ba2f; }
        .comments { padding: 15px; }
        .comment-card { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 12px; border: 1px solid #2a2e3a; }
        .user-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .user-avatar { width: 35px; height: 35px; border-radius: 50%; background: #333; display: flex; align-items: center; justify-content: center; font-weight: bold; color: #f3ba2f; }
        .user-name { font-size: 14px; font-weight: bold; }
        .rating { color: #f3ba2f; font-size: 12px; }
        .comment-text { font-size: 13px; color: #bbb; font-style: italic; }
        .faq-section { padding: 15px; }
        .faq-item { margin-bottom: 15px; background: #1a1d24; border-radius: 12px; overflow: hidden; }
        .faq-q { padding: 15px; font-weight: bold; font-size: 14px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: #f3ba2f; }
        .faq-a { padding: 0 15px 15px; font-size: 13px; color: #999; line-height: 1.5; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; height: 60px; background: #1a1d24; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #333; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; font-size: 11px; color: #888; }
        .nav-item i { font-size: 20px; margin-bottom: 3px; }
        .nav-item.active { color: #f3ba2f; }
        footer { background: #0a0c10; padding: 30px 15px 100px; text-align: center; font-size: 13px; color: #666; }
        .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 20px; }
        .footer-links a { color: #888; }
        .copyright { border-top: 1px solid #222; padding-top: 20px; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .guidelines { grid-template-columns: repeat(2, 1fr); }
            body { max-width: 600px; margin: 0 auto; border-left: 1px solid #222; border-right: 1px solid #222; }
            header, .navigator { max-width: 600px; left: 50%; transform: translateX(-50%); }
        }