* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1218; color: #ffffff; line-height: 1.5; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; display: block; border-radius: 12px; }
        .container { padding: 15px; }
        header { position: sticky; top: 0; z-index: 1000; background: #1a1d24; border-bottom: 1px solid #2a2e37; padding: 10px 15px; display: flex; justify-content: space-between; align-items: center; }
        .logo-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; }
        .logo-box strong { font-size: 16px; font-weight: normal; color: #f3ba2f; }
        .auth-buttons { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 20px; font-size: 14px; font-weight: 600; border: none; cursor: pointer; transition: 0.3s; }
        .btn-login { background: transparent; border: 1px solid #f3ba2f; color: #f3ba2f; }
        .btn-register { background: linear-gradient(135deg, #f3ba2f, #d4a017); color: #000; }
        .banner-box { width: 100%; cursor: pointer; overflow: hidden; margin-bottom: 20px; }
        .banner-box img { width: 100%; aspect-ratio: 2/1; object-fit: cover; border-radius: 0; }
        .jackpot-section { background: linear-gradient(180deg, #2a2e37 0%, #1a1d24 100%); border: 1px solid #3a3f4b; border-radius: 15px; padding: 20px; text-align: center; margin-bottom: 20px; position: relative; overflow: hidden; }
        .jackpot-label { font-size: 14px; color: #f3ba2f; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #ffffff; text-shadow: 0 0 10px rgba(243, 186, 47, 0.5); font-family: monospace; }
        .section-title { font-size: 18px; margin-bottom: 15px; display: flex; align-items: center; gap: 8px; color: #f3ba2f; border-left: 4px solid #f3ba2f; padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; border: 1px solid #2a2e37; transition: transform 0.2s; }
        .game-card:active { transform: scale(0.95); }
        .game-info { padding: 8px; text-align: center; }
        .game-title { font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #e0e0e0; }
        .intro-card { background: #1a1d24; padding: 20px; border-radius: 15px; border-left: 5px solid #f3ba2f; margin-bottom: 25px; }
        .intro-card h1 { font-size: 20px; margin-bottom: 10px; line-height: 1.3; color: #f3ba2f; }
        .intro-card p { font-size: 14px; color: #b0b0b0; }
        .guidelines { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 25px; }
        .guide-item { background: #1a1d24; padding: 15px; border-radius: 12px; display: flex; align-items: center; gap: 15px; }
        .guide-icon { font-size: 24px; color: #f3ba2f; min-width: 40px; text-align: center; }
        .guide-text h3 { font-size: 15px; margin-bottom: 4px; }
        .guide-text p { font-size: 13px; color: #999; }
        .winners-box { background: #1a1d24; border-radius: 15px; padding: 15px; margin-bottom: 25px; height: 300px; overflow-y: hidden; position: relative; }
        .winners-list { animation: scrollList 40s linear infinite; }
        @keyframes scrollList { 0% { transform: translateY(0); } 100% { transform: translateY(-100%); } }
        .winner-item { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #2a2e37; font-size: 13px; }
        .winner-name { color: #f3ba2f; }
        .winner-prize { color: #4caf50; font-weight: bold; }
        .platform-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; text-align: center; }
        .feature-badge { background: rgba(243, 186, 47, 0.1); padding: 10px; border-radius: 10px; border: 1px solid rgba(243, 186, 47, 0.2); }
        .feature-badge i { font-size: 20px; color: #f3ba2f; margin-bottom: 5px; display: block; }
        .feature-badge span { font-size: 11px; text-transform: uppercase; }
        .comments-section { margin-bottom: 25px; }
        .comment-card { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 10px; border: 1px solid #2a2e37; }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .user-avatar { width: 35px; height: 35px; border-radius: 50%; background: #3a3f4b; display: flex; align-items: center; justify-content: center; font-weight: bold; }
        .comment-rating { color: #f3ba2f; font-size: 12px; }
        .comment-body { font-size: 13px; color: #d0d0d0; font-style: italic; }
        .faq-section { margin-bottom: 25px; }
        .faq-item { background: #1a1d24; border-radius: 12px; margin-bottom: 10px; overflow: hidden; border: 1px solid #2a2e37; }
        .faq-question { padding: 15px; font-size: 14px; font-weight: 600; color: #f3ba2f; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 0 15px 15px; font-size: 13px; color: #b0b0b0; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2a2e37; z-index: 1000; box-shadow: 0 -2px 10px rgba(0,0,0,0.5); }
        .nav-item { text-align: center; font-size: 11px; color: #999; }
        .nav-item i { font-size: 20px; display: block; margin-bottom: 3px; color: #f3ba2f; }
        footer { background: #0a0c10; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #1a1d24; }
        .footer-row { margin-bottom: 20px; display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; font-size: 13px; }
        .footer-row a { color: #999; }
        .footer-row a:hover { color: #f3ba2f; }
        .copyright { font-size: 12px; color: #666; margin-top: 15px; }