* { box-sizing: border-box; margin: 0; padding: 0; }
        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; }
        ul { list-style: none; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        
        header { background-color: #1a1d24; height: 60px; display: flex; align-items: center; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2d323d; }
        .header-content { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 0 15px; }
        .logo-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; object-fit: contain; }
        .logo-box strong { font-size: 16px; font-weight: normal; color: #ffd700; }
        .header-btns { display: flex; gap: 10px; }
        .btn { padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: bold; cursor: pointer; border: none; transition: 0.3s; }
        .btn-login { background-color: transparent; border: 1px solid #ffd700; color: #ffd700; }
        .btn-register { background: linear-gradient(135deg, #ffd700, #ff8c00); color: #000; }
        
        .banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        
        .jackpot-section { background: radial-gradient(circle, #2d323d 0%, #1a1d24 100%); margin: 20px 15px; padding: 20px; border-radius: 15px; text-align: center; border: 1px solid #ffd70033; }
        .jackpot-title { font-size: 14px; color: #ffd700; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-size: 32px; font-weight: 900; color: #ffffff; margin: 10px 0; font-family: monospace; text-shadow: 0 0 10px #ffd700; }
        
        .section-title { font-size: 18px; margin: 20px 15px 10px; padding-left: 10px; border-left: 4px solid #ffd700; display: flex; justify-content: space-between; align-items: center; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 15px; }
        .game-card { background-color: #1a1d24; border-radius: 12px; overflow: hidden; border: 1px solid #2d323d; transition: 0.3s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 8px; text-align: center; }
        .game-info h3 { font-size: 13px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        
        .intro-card { background-color: #1a1d24; margin: 25px 15px; padding: 20px; border-radius: 15px; border-left: 5px solid #ffd700; }
        .intro-card h1 { font-size: 20px; margin-bottom: 12px; color: #ffd700; }
        .intro-card p { font-size: 14px; color: #cccccc; }
        
        .guidelines-grid { display: grid; grid-template-columns: 1fr; gap: 15px; padding: 0 15px; margin-bottom: 25px; }
        .guideline-item { background: #1a1d24; padding: 15px; border-radius: 12px; display: flex; align-items: flex-start; gap: 12px; }
        .guideline-item i { color: #ffd700; font-size: 20px; margin-top: 3px; }
        .guideline-content h3 { font-size: 16px; margin-bottom: 5px; }
        .guideline-content p { font-size: 13px; color: #aaa; }
        
        .winning-ticker { background: #1a1d24; margin: 20px 15px; border-radius: 15px; height: 300px; overflow-y: auto; padding: 10px; border: 1px solid #2d323d; }
        .winning-item { display: flex; justify-content: space-between; align-items: center; padding: 10px; border-bottom: 1px solid #2d323d; font-size: 13px; }
        .winner-name { color: #ffd700; }
        .winner-amount { color: #4caf50; font-weight: bold; }
        
        .features-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 0 15px; margin: 25px 0; text-align: center; }
        .feature-box i { font-size: 24px; color: #ffd700; margin-bottom: 8px; }
        .feature-box p { font-size: 11px; font-weight: bold; text-transform: uppercase; }
        
        .comments-section { padding: 0 15px; margin-bottom: 25px; }
        .comment-card { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 12px; border: 1px solid #2d323d; }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .comment-avatar { width: 40px; height: 40px; border-radius: 50%; background: #2d323d; display: flex; align-items: center; justify-content: center; }
        .comment-author { font-weight: bold; font-size: 14px; }
        .comment-stars { color: #ffd700; font-size: 12px; }
        .comment-text { font-size: 13px; color: #ccc; }
        
        .faq-section { padding: 0 15px; margin-bottom: 30px; }
        .faq-item { margin-bottom: 15px; background: #1a1d24; border-radius: 10px; padding: 15px; }
        .faq-item h3 { font-size: 15px; margin-bottom: 8px; color: #ffd700; }
        .faq-item p { font-size: 13px; color: #aaa; }
        
        .navigator { position: fixed; bottom: 0; width: 100%; background: #1a1d24; height: 60px; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #2d323d; box-shadow: 0 -2px 10px rgba(0,0,0,0.5); z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; font-size: 11px; color: #8e94a0; }
        .nav-item i { font-size: 20px; margin-bottom: 2px; }
        .nav-item.active { color: #ffd700; }
        
        footer { background: #0f1216; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #2d323d; }
        .footer-socials, .footer-policies { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 20px; }
        .footer-socials a, .footer-policies a { color: #8e94a0; font-size: 14px; }
        .copyright { color: #555; font-size: 12px; }