* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; background-color: #0f1115; color: #ffffff; line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        header { background: #1a1d24; height: 60px; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2d323d; }
        .header-box { display: flex; justify-content: space-between; align-items: center; height: 100%; }
        .logo-area { display: flex; align-items: center; gap: 8px; }
        .logo-area img { width: 25px; height: 25px; object-fit: contain; }
        .logo-area strong { font-size: 16px; font-weight: normal; color: #f3ba2f; text-transform: uppercase; letter-spacing: 1px; }
        .header-btns { display: flex; gap: 10px; }
        .btn-login { padding: 6px 15px; border-radius: 20px; border: 1px solid #f3ba2f; color: #f3ba2f; font-size: 14px; }
        .btn-reg { padding: 6px 15px; border-radius: 20px; background: linear-gradient(135deg, #f3ba2f, #ffdb4d); color: #000; font-size: 14px; font-weight: bold; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; overflow: hidden; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section { background: #1a1d24; margin: 15px; padding: 20px; border-radius: 15px; text-align: center; border: 1px solid #2d323d; }
        .jackpot-title { color: #f3ba2f; font-size: 14px; text-transform: uppercase; margin-bottom: 5px; }
        .jackpot-amount { font-size: 28px; font-weight: bold; color: #ffffff; text-shadow: 0 0 10px rgba(243, 186, 47, 0.5); font-family: monospace; }
        .section-title { padding: 15px 15px 5px; font-size: 18px; display: flex; align-items: center; gap: 8px; }
        .section-title i { color: #f3ba2f; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 15px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; border: 1px solid #2d323d; transition: transform 0.2s; }
        .game-card:active { transform: scale(0.95); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 8px; text-align: center; }
        .game-info p { font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-card { background: #1a1d24; margin: 15px; padding: 25px; border-radius: 15px; border-left: 4px solid #f3ba2f; }
        .intro-card h1 { font-size: 20px; margin-bottom: 12px; color: #f3ba2f; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #b0b3b8; }
        .guidelines { display: grid; grid-template-columns: 1fr; gap: 15px; padding: 15px; }
        .guide-item { background: #1a1d24; padding: 15px; border-radius: 12px; display: flex; align-items: flex-start; gap: 15px; }
        .guide-item i { font-size: 24px; color: #f3ba2f; }
        .guide-item h3 { font-size: 16px; margin-bottom: 5px; }
        .guide-item p { font-size: 13px; color: #b0b3b8; }
        .winners-box { margin: 15px; background: #1a1d24; border-radius: 15px; padding: 15px; max-height: 300px; overflow-y: auto; }
        .winner-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #2d323d; font-size: 13px; }
        .winner-name { color: #b0b3b8; }
        .winner-amount { color: #4caf50; font-weight: bold; }
        .platform-elements { padding: 15px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; text-align: center; }
        .element-item { background: #1a1d24; padding: 15px 5px; border-radius: 10px; }
        .element-item i { font-size: 20px; color: #f3ba2f; margin-bottom: 8px; }
        .element-item span { font-size: 12px; display: block; }
        .comments-section { padding: 15px; }
        .comment-card { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 15px; border-bottom: 2px solid #2d323d; }
        .comment-user { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .comment-user i { font-size: 30px; color: #4b4f56; }
        .user-meta span { display: block; font-size: 14px; font-weight: bold; }
        .user-meta .stars { color: #f3ba2f; font-size: 12px; }
        .comment-text { font-size: 13px; color: #b0b3b8; font-style: italic; }
        .faq-section { padding: 15px; }
        .faq-item { background: #1a1d24; border-radius: 10px; margin-bottom: 10px; padding: 15px; }
        .faq-item h3 { font-size: 15px; margin-bottom: 10px; color: #f3ba2f; }
        .faq-item p { font-size: 13px; color: #b0b3b8; }
        .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 #2d323d; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; font-size: 11px; color: #b0b3b8; }
        .nav-item i { font-size: 18px; margin-bottom: 4px; }
        .nav-item.active { color: #f3ba2f; }
        footer { background: #0a0c10; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #2d323d; }
        .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 20px; }
        .footer-links a { font-size: 13px; color: #b0b3b8; }
        .footer-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; }
        .footer-social a { color: #f3ba2f; font-size: 18px; }
        .copyright { font-size: 12px; color: #65676b; }