body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1218; color: #ffffff; margin: 0; padding: 0; line-height: 1.6; }
        header { background: #1a1d24; padding: 10px 15px; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.5); display: flex; justify-content: space-between; align-items: center; }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; object-fit: contain; }
        .header-left strong { font-size: 16px; font-weight: normal; color: #f3c15c; }
        .header-right { display: flex; gap: 10px; }
        .btn-login { background: transparent; border: 1px solid #f3c15c; color: #f3c15c; padding: 6px 15px; border-radius: 20px; font-size: 14px; cursor: pointer; text-decoration: none; }
        .btn-register { background: linear-gradient(180deg, #f3c15c 0%, #d4a03d 100%); color: #000; border: none; padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: bold; cursor: pointer; text-decoration: none; }
        main { padding-bottom: 80px; }
        .banner-container { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container { background: radial-gradient(circle, #2c3440 0%, #1a1d24 100%); margin: 15px; padding: 20px; border-radius: 15px; text-align: center; border: 1px solid #333; }
        .jackpot-title { font-size: 14px; color: #aaa; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-size: 32px; color: #f3c15c; font-weight: bold; margin: 5px 0; text-shadow: 0 0 10px rgba(243,193,92,0.5); }
        .section-title { padding: 15px 15px 5px; font-size: 18px; color: #f3c15c; display: flex; align-items: center; gap: 8px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 15px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; text-decoration: none; color: white; border: 1px solid #2a2e37; transition: transform 0.2s; }
        .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 { background: #1a1d24; margin: 15px; padding: 20px; border-radius: 15px; border-left: 4px solid #f3c15c; }
        .intro-card h1 { font-size: 20px; margin-bottom: 10px; color: #f3c15c; }
        .intro-card p { font-size: 14px; color: #ccc; }
        .guidelines-grid { display: grid; grid-template-columns: 1fr; gap: 10px; padding: 0 15px; }
        .guideline-item { background: #1a1d24; padding: 15px; border-radius: 12px; display: flex; align-items: center; gap: 12px; }
        .guideline-item i { color: #f3c15c; font-size: 20px; }
        .guideline-text { font-size: 14px; color: #eee; }
        .winners-section { background: #161920; margin: 20px 0; padding: 15px 0; overflow: hidden; }
        .winners-scroll { display: flex; flex-direction: column; gap: 8px; max-height: 250px; overflow-y: auto; padding: 0 15px; }
        .winner-row { background: rgba(255,255,255,0.05); padding: 10px; border-radius: 8px; display: flex; justify-content: space-between; font-size: 12px; border: 1px solid rgba(243,193,92,0.1); }
        .winner-name { color: #f3c15c; }
        .winner-amount { color: #4caf50; font-weight: bold; }
        .trust-elements { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 15px; text-align: center; }
        .trust-item { font-size: 11px; color: #888; }
        .trust-item i { font-size: 24px; color: #f3c15c; margin-bottom: 5px; display: block; }
        .comments-grid { display: flex; overflow-x: auto; gap: 15px; padding: 15px; scroll-snap-type: x mandatory; }
        .comment-card { min-width: 260px; background: #1a1d24; padding: 15px; border-radius: 15px; scroll-snap-align: start; border: 1px solid #333; }
        .comment-user { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .user-avatar { width: 35px; height: 35px; background: #333; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #f3c15c; }
        .user-meta { font-size: 13px; }
        .user-rating { color: #ffc107; font-size: 10px; }
        .comment-text { font-size: 13px; color: #bbb; font-style: italic; }
        .faq-section { padding: 15px; }
        .faq-item { background: #1a1d24; border-radius: 10px; margin-bottom: 10px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: bold; font-size: 14px; color: #f3c15c; cursor: pointer; border-bottom: 1px solid #2a2e37; display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 15px; font-size: 13px; color: #ccc; background: rgba(0,0,0,0.2); }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; box-shadow: 0 -2px 10px rgba(0,0,0,0.5); z-index: 1000; border-top: 1px solid #333; }
        .nav-item { text-decoration: none; color: #888; text-align: center; font-size: 11px; flex: 1; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 3px; }
        .nav-item.active { color: #f3c15c; }
        footer { background: #0a0c10; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #222; }
        .footer-row { margin-bottom: 20px; display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; }
        .footer-link { color: #888; text-decoration: none; font-size: 13px; transition: color 0.2s; }
        .footer-link:hover { color: #f3c15c; }
        .copyright { font-size: 12px; color: #555; margin-top: 10px; }