* { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #1a1d24; color: #ffffff; line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }
        .container { padding: 0 15px; width: 100%; max-width: 1200px; margin: 0 auto; }
        
        header { background: #111419; height: 60px; display: flex; align-items: center; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #333; }
        .header-content { display: flex; justify-content: space-between; align-items: center; width: 100%; }
        .logo-area { display: flex; align-items: center; gap: 8px; }
        .logo-area img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-area strong { font-size: 16px; font-weight: normal; color: #FFD700; }
        .auth-buttons { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 20px; font-size: 14px; font-weight: bold; border: none; cursor: pointer; transition: 0.3s; }
        .btn-login { background: transparent; color: #ffffff; border: 1px solid #FFD700; }
        .btn-register { background: linear-gradient(90deg, #FF6B35 0%, #FF2E63 100%); color: #ffffff; }
        
        .hero-banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; overflow: hidden; }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }
        
        .jackpot-section { background: #252a34; margin: 20px 0; padding: 20px; border-radius: 12px; text-align: center; border: 1px solid #FFD700; }
        .jackpot-title { font-size: 14px; color: #FFD700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #ffffff; font-family: 'Courier New', monospace; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
        
        .intro-card { background: #252a34; padding: 20px; border-radius: 15px; margin: 20px 0; border-left: 4px solid #FFD700; }
        .intro-card h1 { font-size: 20px; color: #FFD700; margin-bottom: 10px; }
        .intro-card p { font-size: 14px; color: #cccccc; }
        
        .section-header { display: flex; align-items: center; justify-content: space-between; margin: 25px 0 15px; }
        .section-header h2 { font-size: 18px; border-left: 3px solid #FF2E63; padding-left: 10px; }
        
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
        .game-card { background: #252a34; border-radius: 12px; overflow: hidden; transition: 0.3s; position: relative; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 13px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 4px; }
        .game-provider { font-size: 11px; color: #888; text-transform: uppercase; }
        
        .payment-methods { background: #111419; padding: 20px; border-radius: 12px; margin: 25px 0; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; justify-items: center; align-items: center; opacity: 0.8; }
        .payment-grid i { font-size: 24px; color: #aaa; }
        
        .guidelines-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin: 25px 0; }
        .guideline-item { background: #252a34; padding: 15px; border-radius: 12px; border-top: 2px solid #333; }
        .guideline-item h3 { color: #FFD700; font-size: 16px; margin-bottom: 8px; }
        .guideline-item p { font-size: 13px; color: #bbb; }
        
        .marquee-container { background: rgba(0,0,0,0.3); padding: 10px 0; margin: 25px 0; overflow: hidden; white-space: nowrap; }
        .marquee-content { display: inline-block; animation: marquee 30s linear infinite; }
        .win-item { display: inline-flex; align-items: center; margin-right: 30px; font-size: 12px; }
        .win-item span { color: #FFD700; font-weight: bold; margin: 0 5px; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        
        .providers-wall { background: #111419; padding: 20px; border-radius: 12px; margin: 25px 0; text-align: center; }
        .providers-list { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
        .provider-tag { background: #252a34; padding: 5px 12px; border-radius: 4px; font-size: 12px; font-weight: bold; color: #ddd; }
        
        .reviews-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin: 25px 0; }
        .review-card { background: #252a34; padding: 20px; border-radius: 15px; position: relative; }
        .review-user { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-user i { font-size: 24px; color: #FFD700; }
        .stars { color: #FFD700; font-size: 12px; }
        .review-date { font-size: 11px; color: #666; display: block; margin-top: 5px; }
        .review-content { font-size: 13px; font-style: italic; color: #ddd; }
        
        .faq-section { margin: 25px 0; }
        .faq-item { background: #252a34; margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: bold; font-size: 14px; border-bottom: 1px solid #333; display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 15px; font-size: 13px; color: #bbb; }
        
        .security-section { background: #111419; padding: 20px; border-radius: 12px; text-align: center; margin: 25px 0; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: #4CAF50; }
        .security-text { font-size: 12px; color: #888; }
        .age-limit { display: inline-block; width: 35px; height: 35px; border: 2px solid #ff4444; color: #ff4444; border-radius: 50%; line-height: 31px; font-weight: bold; font-size: 14px; margin-top: 10px; }

        .navigator { background: #111419; border-top: 1px solid #333; display: flex; justify-content: space-around; padding: 10px 0; position: fixed; bottom: 0; width: 100%; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; color: #888; font-size: 11px; }
        .nav-item i { font-size: 20px; margin-bottom: 4px; }
        
        footer { background: #0c0e12; padding: 40px 15px 100px; color: #666; text-align: center; font-size: 13px; }
        .footer-contact { margin-bottom: 30px; }
        .footer-contact a { margin: 0 10px; color: #bbb; text-decoration: underline; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; text-align: left; margin-bottom: 30px; }
        .footer-links a { display: block; color: #888; margin-bottom: 5px; }
        .copyright { border-top: 1px solid #222; padding-top: 20px; font-size: 11px; }