* { margin: 0; padding: 0; box-sizing: border-box; }
        body { background-color: #0f1216; color: #ffffff; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; 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 #333; }
        .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: #f3ba2f; }
        .header-right { display: flex; gap: 10px; }
        .btn-login { background: transparent; color: #f3ba2f; border: 1px solid #f3ba2f; padding: 6px 15px; border-radius: 20px; font-size: 14px; cursor: pointer; }
        .btn-register { background: linear-gradient(180deg, #f3ba2f 0%, #d4a017 100%); color: #000; border: none; padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: bold; cursor: pointer; }
        main { max-width: 800px; margin: 0 auto; padding: 10px; }
        .banner { width: 100%; aspect-ratio: 2/1; border-radius: 12px; overflow: hidden; margin-bottom: 15px; cursor: pointer; box-shadow: 0 4px 15px rgba(0,0,0,0.5); }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container { background: #1a1d24; border-radius: 12px; padding: 15px; margin-bottom: 15px; text-align: center; border: 1px solid #f3ba2f33; position: relative; overflow: hidden; }
        .jackpot-title { font-size: 14px; color: #aaa; text-transform: uppercase; letter-spacing: 1px; }
        .jackpot-amount { font-size: 32px; font-weight: bold; color: #f3ba2f; margin: 5px 0; font-family: monospace; text-shadow: 0 0 10px rgba(243, 186, 47, 0.5); }
        .section-header { display: flex; align-items: center; gap: 10px; margin: 20px 0 12px; }
        .section-header h2 { font-size: 18px; border-left: 4px solid #f3ba2f; padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; transition: transform 0.2s; position: relative; }
        .game-card:active { transform: scale(0.96); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; text-align: center; }
        .game-title { font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #eee; }
        .intro-card { background: linear-gradient(135deg, #1a1d24 0%, #252a34 100%); border-radius: 16px; padding: 20px; margin: 25px 0; border: 1px solid #333; }
        .intro-card h1 { font-size: 18px; color: #f3ba2f; margin-bottom: 12px; line-height: 1.4; }
        .intro-card p { font-size: 14px; color: #ccc; }
        .guidelines-grid { display: grid; grid-template-columns: 1fr; gap: 10px; margin-bottom: 25px; }
        .guide-item { background: #1a1d24; padding: 15px; border-radius: 12px; display: flex; align-items: flex-start; gap: 12px; border: 1px solid #2a2e37; }
        .guide-item i { color: #f3ba2f; font-size: 20px; margin-top: 3px; }
        .guide-item h3 { font-size: 15px; margin-bottom: 5px; color: #fff; }
        .guide-item p { font-size: 13px; color: #999; }
        .winners-box { background: #1a1d24; border-radius: 12px; padding: 15px; margin-bottom: 25px; height: 250px; overflow-y: hidden; position: relative; }
        .winners-scroll { animation: scrollWinners 40s linear infinite; }
        @keyframes scrollWinners { 0% { transform: translateY(0); } 100% { transform: translateY(-100%); } }
        .winner-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #2a2e37; font-size: 13px; }
        .winner-name { color: #eee; }
        .winner-amount { color: #4caf50; font-weight: bold; }
        .winner-game { color: #f3ba2f; font-style: italic; }
        .pro-elements { display: flex; justify-content: space-around; background: #1a1d24; padding: 20px 10px; border-radius: 12px; margin-bottom: 25px; border: 1px solid #2a2e37; }
        .pro-item { text-align: center; }
        .pro-item i { font-size: 24px; color: #f3ba2f; margin-bottom: 8px; }
        .pro-item span { display: block; font-size: 11px; color: #aaa; text-transform: uppercase; }
        .comments-section { margin-bottom: 25px; }
        .comment-card { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 12px; border-left: 4px solid #f3ba2f; }
        .comment-user { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .comment-user .avatar { width: 30px; height: 30px; background: #333; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; }
        .comment-name { font-weight: bold; font-size: 14px; }
        .stars { color: #f3ba2f; font-size: 12px; }
        .comment-text { font-size: 13px; color: #ccc; font-style: italic; }
        .faq-section { background: #1a1d24; border-radius: 12px; padding: 15px; margin-bottom: 25px; }
        .faq-item { margin-bottom: 15px; padding-bottom: 15px; border-bottom: 1px solid #2a2e37; }
        .faq-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
        .faq-item h3 { font-size: 15px; color: #f3ba2f; margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: #bbb; line-height: 1.5; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1d24; height: 65px; display: flex; justify-content: space-around; align-items: center; z-index: 1000; border-top: 1px solid #333; box-shadow: 0 -2px 10px rgba(0,0,0,0.5); }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #aaa; font-size: 12px; width: 20%; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: #f3ba2f; }
        footer { padding: 30px 15px 100px; text-align: center; background: #0a0c0f; border-top: 1px solid #1a1d24; }
        .footer-row { margin-bottom: 20px; }
        .footer-row h4 { font-size: 14px; color: #777; margin-bottom: 12px; text-transform: uppercase; }
        .footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 10px; }
        .footer-links a { font-size: 13px; color: #999; }
        .footer-links a:hover { color: #f3ba2f; }
        .copyright { font-size: 12px; color: #555; border-top: 1px solid #1a1d24; padding-top: 15px; margin-top: 10px; }