* { box-sizing: border-box; margin: 0; padding: 0; }
        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; }
        ul { list-style: none; }
        header { background: #1a1d24; padding: 10px 15px; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2d323d; display: flex; justify-content: space-between; align-items: center; }
        .header-left { display: flex; align-items: center; gap: 10px; }
        .header-left img { width: 25px; height: 25px; object-fit: contain; }
        .header-left strong { font-size: 16px; font-weight: normal; color: #f3ba2f; }
        .header-right { display: flex; gap: 8px; }
        .btn { padding: 8px 16px; border-radius: 6px; font-size: 14px; font-weight: 600; border: none; cursor: pointer; transition: 0.3s; }
        .btn-login { background: transparent; color: #ffffff; border: 1px solid #4e5563; }
        .btn-register { background: linear-gradient(135deg, #f3ba2f 0%, #d49a1d 100%); color: #000000; }
        .banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        main { padding: 15px; }
        .section-title { font-size: 18px; margin: 20px 0 15px; display: flex; align-items: center; gap: 8px; color: #f3ba2f; }
        .section-title i { color: #f3ba2f; }
        .jackpot-card { background: linear-gradient(45deg, #1a1d24, #2d323d); border: 2px solid #f3ba2f; border-radius: 12px; padding: 20px; text-align: center; margin-bottom: 25px; box-shadow: 0 0 15px rgba(243, 186, 47, 0.2); }
        .jackpot-label { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: #a0aabb; }
        .jackpot-amount { font-size: 28px; font-weight: 800; color: #f3ba2f; margin: 5px 0; font-family: monospace; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 25px; }
        .game-card { background: #1a1d24; border-radius: 10px; overflow: hidden; border: 1px solid #2d323d; transition: transform 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; text-align: center; }
        .game-info h4 { font-size: 13px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #e1e4e8; }
        .intro-card { background: #1a1d24; border-radius: 15px; padding: 20px; margin: 25px 0; border-left: 4px solid #f3ba2f; }
        .intro-card h1 { font-size: 20px; margin-bottom: 12px; line-height: 1.3; color: #f3ba2f; }
        .intro-card p { font-size: 14px; color: #a0aabb; text-align: justify; }
        .guidelines { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 25px; }
        .guide-item { background: #1a1d24; padding: 15px; border-radius: 10px; display: flex; align-items: center; gap: 15px; }
        .guide-item i { font-size: 24px; color: #f3ba2f; width: 40px; text-align: center; }
        .guide-text h3 { font-size: 15px; margin-bottom: 4px; }
        .guide-text p { font-size: 13px; color: #a0aabb; }
        .winning-list { background: #1a1d24; border-radius: 12px; padding: 10px; height: 250px; overflow-y: auto; margin-bottom: 25px; }
        .winner-row { display: flex; justify-content: space-between; padding: 10px; border-bottom: 1px solid #2d323d; font-size: 13px; }
        .winner-name { color: #a0aabb; }
        .winner-prize { color: #4caf50; font-weight: bold; }
        .pro-elements { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; padding: 20px; background: #16191f; border-radius: 12px; margin-bottom: 25px; opacity: 0.7; }
        .pro-elements i { font-size: 30px; }
        .comments { margin-bottom: 25px; }
        .comment-card { background: #1a1d24; padding: 15px; border-radius: 10px; margin-bottom: 12px; }
        .comment-user { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .comment-user img { width: 30px; height: 30px; border-radius: 50%; }
        .comment-user span { font-size: 14px; font-weight: bold; }
        .comment-rating { color: #f3ba2f; font-size: 12px; margin-bottom: 5px; }
        .comment-text { font-size: 13px; color: #a0aabb; }
        .faq-section { margin-bottom: 25px; }
        .faq-item { background: #1a1d24; border-radius: 8px; margin-bottom: 10px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: bold; font-size: 14px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: #f3ba2f; }
        .faq-answer { padding: 0 15px 15px; font-size: 13px; color: #a0aabb; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2d323d; z-index: 1001; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; color: #a0aabb; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: #f3ba2f; }
        footer { background: #0a0c10; padding: 30px 15px 20px; text-align: center; border-top: 1px solid #2d323d; }
        .footer-row { margin-bottom: 20px; display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; font-size: 13px; }
        .footer-link { color: #a0aabb; }
        .copyright { font-size: 12px; color: #6e7683; margin-top: 10px; }