* { 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; 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: #f3ba2f; }
        .header-right { display: flex; gap: 10px; }
        .btn { padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: bold; border: none; cursor: pointer; transition: 0.3s; }
        .btn-login { background: transparent; color: #f3ba2f; border: 1px solid #f3ba2f; }
        .btn-register { background: linear-gradient(180deg, #f3ba2f 0%, #d49a12 100%); color: #000; }
        .banner { width: 100%; display: block; aspect-ratio: 2/1; object-fit: cover; cursor: pointer; }
        main { padding: 15px; max-width: 800px; margin: 0 auto; }
        .section-title { font-size: 18px; margin: 20px 0 15px; display: flex; align-items: center; gap: 10px; border-left: 4px solid #f3ba2f; padding-left: 10px; }
        .jackpot-card { background: linear-gradient(45deg, #2c1a1a, #4a0e0e); border: 1px solid #ff4d4d; border-radius: 12px; padding: 20px; text-align: center; margin-bottom: 20px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #ffeb3b; text-shadow: 0 0 10px rgba(255,235,59,0.5); font-family: monospace; }
        .jackpot-label { text-transform: uppercase; font-size: 12px; letter-spacing: 2px; color: #fff; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 6px rgba(0,0,0,0.3); transition: transform 0.2s; position: relative; }
        .game-card:active { transform: scale(0.95); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card .title { padding: 8px; font-size: 13px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; background: rgba(26,29,36,0.9); }
        .intro-card { background: #1e222b; border-radius: 15px; padding: 20px; margin: 20px 0; border: 1px solid #333; }
        .intro-card h1 { font-size: 20px; color: #f3ba2f; margin-bottom: 12px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #cccccc; }
        .guidelines { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 25px; }
        .guide-item { background: #161920; padding: 15px; border-radius: 10px; font-size: 13px; border-bottom: 2px solid #333; }
        .guide-item i { color: #f3ba2f; margin-bottom: 8px; font-size: 18px; display: block; }
        .winners-list { background: #1a1d24; border-radius: 12px; padding: 10px; height: 250px; overflow-y: auto; margin-bottom: 25px; border: 1px solid #2a2e37; }
        .winner-row { display: flex; justify-content: space-between; padding: 8px 5px; border-bottom: 1px solid #2a2e37; font-size: 13px; }
        .winner-row span:last-child { color: #4caf50; font-weight: bold; }
        .trust-elements { display: flex; justify-content: space-around; padding: 20px 0; background: #161920; border-radius: 12px; margin-bottom: 25px; }
        .trust-item { text-align: center; font-size: 11px; color: #888; }
        .trust-item i { font-size: 24px; color: #f3ba2f; margin-bottom: 5px; display: block; }
        .comment-grid { display: grid; grid-template-columns: 1fr; gap: 12px; margin-bottom: 25px; }
        .comment-card { background: #1a1d24; padding: 15px; border-radius: 12px; position: relative; }
        .comment-user { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .comment-user img { width: 35px; height: 35px; border-radius: 50%; background: #333; }
        .comment-name { font-size: 14px; font-weight: bold; }
        .stars { color: #f3ba2f; font-size: 12px; }
        .comment-text { font-size: 13px; color: #bbb; font-style: italic; }
        .faq-section { margin-bottom: 30px; }
        .faq-item { background: #1a1d24; border-radius: 10px; padding: 15px; margin-bottom: 10px; }
        .faq-q { font-weight: bold; color: #f3ba2f; margin-bottom: 8px; font-size: 15px; display: flex; gap: 8px; }
        .faq-a { font-size: 14px; color: #ccc; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1d24; height: 60px; 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: 2px; }
        .nav-item.active { color: #f3ba2f; }
        footer { background: #1a1d24; padding: 30px 15px; text-align: center; font-size: 13px; color: #888; }
        .footer-row { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; margin-bottom: 15px; }
        .footer-row a { color: #ccc; }
        .copyright { margin-top: 20px; padding-top: 20px; border-top: 1px solid #333; font-size: 12px; }