* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
        body { background-color: #0f1218; color: #ffffff; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; line-height: 1.5; 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 #2d323e; }
        .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; }
        .header-btns { display: flex; gap: 8px; }
        .btn { padding: 6px 12px; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: 0.3s; }
        .btn-login { background: transparent; border: 1px solid #f3ba2f; color: #f3ba2f; }
        .btn-reg { background: linear-gradient(135deg, #f3ba2f, #d49a12); color: #000; }
        .banner { width: 100%; display: block; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-card { margin: 15px; background: radial-gradient(circle at top, #3a3f4b, #1a1d24); border-radius: 15px; padding: 20px; text-align: center; border: 1px solid #f3ba2f44; }
        .jackpot-title { font-size: 14px; color: #f3ba2f; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #ffffff; font-family: monospace; text-shadow: 0 0 10px #f3ba2f; }
        .section-title { padding: 0 15px; margin: 20px 0 10px; display: flex; align-items: center; gap: 8px; font-size: 18px; border-left: 4px solid #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; transition: transform 0.2s; border: 1px solid #2d323e; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 8px; text-align: center; font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-card { margin: 20px 15px; background: #1a1d24; border-radius: 15px; padding: 20px; border-top: 3px solid #f3ba2f; }
        .intro-card h1 { font-size: 20px; margin-bottom: 12px; color: #f3ba2f; }
        .intro-card p { font-size: 14px; color: #b0b8c1; text-align: justify; }
        .trust-elements { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 15px; margin: 10px 15px; background: #1e222a; border-radius: 12px; text-align: center; font-size: 10px; color: #888; }
        .trust-item i { font-size: 24px; color: #f3ba2f; margin-bottom: 5px; display: block; }
        .winners-box { margin: 20px 15px; background: #1a1d24; border-radius: 15px; height: 200px; overflow: hidden; position: relative; border: 1px solid #2d323e; }
        .winners-list { animation: scrollList 30s linear infinite; }
        @keyframes scrollList { 0% { transform: translateY(0); } 100% { transform: translateY(-100%); } }
        .winner-item { display: flex; justify-content: space-between; padding: 10px 15px; border-bottom: 1px solid #2d323e; font-size: 13px; }
        .win-amt { color: #4caf50; font-weight: bold; }
        .guidelines { padding: 15px; display: grid; gap: 12px; }
        .guide-item { background: #1a1d24; padding: 15px; border-radius: 12px; border-left: 3px solid #2d323e; }
        .guide-item h3 { font-size: 15px; color: #f3ba2f; margin-bottom: 5px; }
        .guide-item p { font-size: 13px; color: #888; }
        .comments { padding: 15px; }
        .comment-item { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 15px; position: relative; }
        .comment-user { font-weight: 600; color: #f3ba2f; margin-bottom: 5px; font-size: 14px; }
        .comment-text { font-size: 13px; font-style: italic; color: #b0b8c1; }
        .faq-section { padding: 15px; }
        .faq-item { background: #1a1d24; margin-bottom: 10px; border-radius: 12px; overflow: hidden; }
        .faq-q { padding: 15px; font-weight: 600; font-size: 14px; border-bottom: 1px solid #2d323e; color: #f3ba2f; }
        .faq-a { padding: 15px; font-size: 13px; color: #b0b8c1; text-align: justify; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1d24; height: 65px; display: grid; grid-template-columns: repeat(5, 1fr); align-items: center; text-align: center; border-top: 1px solid #2d323e; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; font-size: 11px; color: #888; gap: 4px; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: #f3ba2f; }
        footer { background: #0a0c10; padding: 30px 15px 100px; border-top: 1px solid #2d323e; }
        .foot-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 20px; }
        .foot-link { color: #888; font-size: 13px; }
        .copy-text { text-align: center; font-size: 12px; color: #555; margin-top: 20px; }