* { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1216; color: #ffffff; line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; height: auto; display: block; }
        header { background-color: #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-login { padding: 6px 15px; border-radius: 20px; border: 1px solid #f3ba2f; color: #f3ba2f; font-size: 14px; font-weight: 600; }
        .btn-register { padding: 6px 15px; border-radius: 20px; background: linear-gradient(135deg, #f3ba2f, #d49a17); color: #000; font-size: 14px; font-weight: 600; }
        .banner-container { width: 100%; aspect-ratio: 2/1; overflow: hidden; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; cursor: pointer; }
        .jackpot-section { margin: 15px; background: linear-gradient(135deg, #2a2e3a, #1a1d24); padding: 20px; border-radius: 15px; text-align: center; border: 1px solid #333; }
        .jackpot-title { color: #f3ba2f; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #fff; margin: 5px 0; text-shadow: 0 0 10px rgba(243,186,47,0.5); }
        .section-title { padding: 0 15px; margin: 20px 0 10px; font-size: 18px; display: flex; align-items: center; gap: 10px; color: #f3ba2f; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 15px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; border: 1px solid #2a2e3a; transition: transform 0.2s; }
        .game-card:active { transform: scale(0.95); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card .game-info { padding: 8px; text-align: center; }
        .game-card .game-title { font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-card { margin: 20px 15px; padding: 20px; background: #1a1d24; border-radius: 15px; border-left: 4px solid #f3ba2f; }
        .intro-card h1 { font-size: 18px; margin-bottom: 10px; color: #f3ba2f; }
        .intro-card p { font-size: 14px; color: #ccc; }
        .guidelines-grid { display: grid; grid-template-columns: 1fr; gap: 15px; padding: 0 15px; }
        .guide-item { background: #1a1d24; padding: 15px; border-radius: 12px; border: 1px solid #2a2e3a; }
        .guide-item h3 { font-size: 15px; color: #f3ba2f; margin-bottom: 5px; display: flex; align-items: center; gap: 8px; }
        .guide-item p { font-size: 13px; color: #aaa; }
        .winning-list { margin: 20px 15px; background: #1a1d24; border-radius: 15px; padding: 15px; height: 300px; overflow-y: auto; border: 1px solid #2a2e3a; }
        .winning-item { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #2a2e3a; font-size: 13px; }
        .winning-item span:first-child { color: #aaa; }
        .winning-item span:last-child { color: #4caf50; font-weight: bold; }
        .trust-badges { display: flex; justify-content: space-around; padding: 20px 15px; flex-wrap: wrap; gap: 15px; opacity: 0.7; }
        .badge { text-align: center; font-size: 11px; }
        .badge i { font-size: 24px; color: #f3ba2f; display: block; margin-bottom: 5px; }
        .comments-section { padding: 0 15px; margin: 20px 0; }
        .comment-card { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 12px; border: 1px solid #2a2e3a; }
        .comment-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
        .comment-user { font-weight: 600; font-size: 14px; color: #f3ba2f; }
        .comment-rating { color: #f3ba2f; font-size: 12px; }
        .comment-text { font-size: 13px; color: #ccc; font-style: italic; }
        .faq-section { padding: 0 15px; margin: 20px 0; }
        .faq-item { background: #1a1d24; border-radius: 12px; margin-bottom: 10px; overflow: hidden; border: 1px solid #2a2e3a; }
        .faq-question { padding: 15px; font-weight: 600; font-size: 14px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; color: #f3ba2f; }
        .faq-answer { padding: 0 15px 15px; font-size: 13px; color: #aaa; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1d24; height: 65px; 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; color: #8e9297; font-size: 11px; gap: 4px; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: #f3ba2f; }
        footer { background: #0f1216; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #2a2e3a; }
        .footer-row { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; margin-bottom: 20px; }
        .footer-row a { font-size: 13px; color: #8e9297; }
        .footer-copy { font-size: 12px; color: #555; margin-top: 20px; }