body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; background-color: #12141a; color: #ffffff; margin: 0; padding: 0; line-height: 1.5; }
        a { text-decoration: none; color: inherit; }
        header { background: #1c2029; padding: 10px 15px; position: sticky; top: 0; z-index: 1000; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #2a2f3a; 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: #e2b053; }
        .header-right { display: flex; gap: 10px; }
        .btn { padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: 0.3s; }
        .btn-login { background: transparent; color: #e2b053; border: 1px solid #e2b053; }
        .btn-register { background: linear-gradient(135deg, #e2b053, #b8860b); color: #000; }
        main { padding: 0 0 80px 0; }
        .banner { width: 100%; display: block; cursor: pointer; }
        .banner img { width: 100%; aspect-ratio: 2/1; object-fit: cover; display: block; }
        .jackpot-section { background: #1c2029; margin: 15px; padding: 20px; border-radius: 15px; text-align: center; border: 1px solid #e2b053; position: relative; overflow: hidden; }
        .jackpot-title { color: #e2b053; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #ffffff; text-shadow: 0 0 10px rgba(226,176,83,0.5); }
        .section-title { padding: 0 15px; margin: 20px 0 10px; font-size: 18px; color: #e2b053; display: flex; align-items: center; gap: 8px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: #1c2029; border-radius: 12px; overflow: hidden; border: 1px solid #2a2f3a; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; transition: 0.3s; }
        .game-card:hover img { transform: scale(1.05); }
        .game-info { padding: 8px; text-align: center; }
        .game-title { font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-card { background: #1c2029; margin: 20px 15px; padding: 20px; border-radius: 15px; border-left: 4px solid #e2b053; }
        .intro-card h1 { font-size: 20px; margin: 0 0 10px 0; color: #e2b053; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #a0a6b1; margin: 0; text-align: justify; }
        .guidelines { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 15px; }
        .guide-item { background: #1c2029; padding: 15px; border-radius: 12px; text-align: center; border: 1px solid #2a2f3a; }
        .guide-item i { font-size: 24px; color: #e2b053; margin-bottom: 8px; }
        .guide-item h3 { font-size: 14px; margin: 0; }
        .winners-list { background: #1c2029; margin: 20px 15px; padding: 15px; border-radius: 15px; border: 1px solid #2a2f3a; }
        .winner-row { display: flex; justify-content: space-between; font-size: 13px; padding: 8px 0; border-bottom: 1px solid #2a2f3a; }
        .winner-row:last-child { border-bottom: none; }
        .winner-name { color: #a0a6b1; }
        .winner-prize { color: #4caf50; font-weight: bold; }
        .trust-badges { display: flex; justify-content: space-around; padding: 20px 15px; background: #0f1218; margin: 20px 0; }
        .trust-item { text-align: center; font-size: 12px; color: #a0a6b1; }
        .trust-item i { font-size: 30px; color: #e2b053; margin-bottom: 5px; display: block; }
        .comments-section { padding: 0 15px; }
        .comment-card { background: #1c2029; padding: 15px; border-radius: 12px; margin-bottom: 15px; border: 1px solid #2a2f3a; }
        .comment-user { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .user-avatar { width: 35px; height: 35px; background: #2a2f3a; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #e2b053; }
        .user-meta h4 { margin: 0; font-size: 14px; }
        .stars { color: #ffc107; font-size: 10px; }
        .comment-text { font-size: 13px; color: #a0a6b1; font-style: italic; }
        .faq-section { padding: 0 15px; margin-top: 20px; }
        .faq-item { background: #1c2029; margin-bottom: 10px; border-radius: 10px; overflow: hidden; border: 1px solid #2a2f3a; }
        .faq-question { padding: 15px; font-weight: 600; font-size: 14px; color: #e2b053; display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 0 15px 15px; font-size: 13px; color: #a0a6b1; text-align: justify; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #1c2029; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2a2f3a; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; color: #a0a6b1; }
        .nav-item i { font-size: 18px; }
        .nav-item.active { color: #e2b053; }
        footer { background: #0f1218; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #2a2f3a; }
        .footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 20px; }
        .footer-links a { font-size: 13px; color: #a0a6b1; }
        .copyright { font-size: 11px; color: #666; margin-top: 20px; }