* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #0D1117; color: #FFFFFF; font-family: 'Inter', sans-serif; line-height: 1.5; overflow-x: hidden; }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; color: #FFB800; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        button { border: none; cursor: pointer; font-family: 'Inter', sans-serif; border-radius: 8px; font-weight: 600; }
        
        header { background: #161B22; padding: 12px 16px; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #30363D; display: flex; justify-content: space-between; align-items: center; }
        .logo-container { display: flex; align-items: center; gap: 8px; }
        .logo-container img { width: 25px; height: 25px; object-fit: contain; }
        .logo-container strong { font-size: 16px; font-weight: 400; color: #FFFFFF; }
        .auth-btns { display: flex; gap: 10px; }
        .btn-login { background: transparent; color: #FFFFFF; border: 1px solid #30363D; padding: 8px 16px; font-size: 14px; }
        .btn-register { background: #FFB800; color: #0D1117; padding: 8px 16px; font-size: 14px; }
        
        main { padding-bottom: 80px; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; overflow: hidden; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        
        .jackpot-section { background: #161B22; margin: 15px; padding: 20px; border-radius: 12px; text-align: center; border: 1px solid #FFB800; box-shadow: 0 0 15px rgba(255, 184, 0, 0.2); }
        .jackpot-label { color: #8B949E; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
        .jackpot-amount { font-family: 'Roboto Mono', monospace; font-size: 32px; font-weight: 900; background: linear-gradient(180deg, #FFD700 0%, #B8860B 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        
        .intro-card { margin: 15px; padding: 20px; background: #21262D; border-radius: 12px; border: 1px solid #30363D; }
        .intro-card h1 { font-size: 24px; margin-bottom: 12px; line-height: 1.2; }
        .intro-card p { color: #8B949E; font-size: 14px; line-height: 1.6; }
        
        .section-title { padding: 0 15px; margin: 25px 0 15px; font-size: 20px; display: flex; align-items: center; gap: 10px; }
        .section-title::before { content: ""; width: 4px; height: 20px; background: #FFB800; border-radius: 2px; }
        
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: #161B22; border-radius: 12px; overflow: hidden; border: 1px solid #30363D; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 14px; color: #FFFFFF; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-provider { font-size: 12px; color: #00C853; font-weight: 500; }
        
        .trust-section { margin: 20px 15px; padding: 20px; background: #161B22; border-radius: 12px; text-align: center; }
        .trust-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 15px; opacity: 0.8; }
        .trust-icons i { font-size: 28px; color: #8B949E; }
        
        .guidelines { padding: 0 15px; }
        .guide-item { background: #21262D; padding: 15px; border-radius: 12px; margin-bottom: 12px; border-left: 3px solid #FFB800; }
        .guide-item h3 { font-size: 16px; margin-bottom: 8px; color: #FFFFFF; }
        .guide-item p { font-size: 13px; color: #8B949E; }
        
        .marquee-container { background: #0D1117; padding: 15px 0; border-top: 1px solid #30363D; border-bottom: 1px solid #30363D; margin: 20px 0; overflow: hidden; }
        .marquee-content { display: flex; gap: 30px; animation: marquee 40s linear infinite; white-space: nowrap; }
        .win-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: #8B949E; }
        .win-item strong { color: #00C853; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        
        .providers-wall { margin: 15px; padding: 15px; background: #21262D; border-radius: 12px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
        .provider-tag { padding: 6px 12px; background: #161B22; border: 1px solid #30363D; border-radius: 20px; font-size: 12px; color: #FFFFFF; }
        
        .reviews { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; }
        .review-card { background: #161B22; padding: 15px; border-radius: 12px; border: 1px solid #30363D; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: #8B949E; }
        .review-meta { flex: 1; }
        .review-meta h4 { font-size: 14px; color: #FFFFFF; }
        .stars { color: #FFB800; font-size: 12px; }
        .review-date { font-size: 11px; color: #484F58; }
        .review-text { font-size: 13px; color: #8B949E; font-style: italic; }
        
        .faqs { padding: 0 15px; }
        .faq-item { background: #21262D; margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; font-size: 14px; border-bottom: 1px solid #30363D; color: #FFFFFF; }
        .faq-answer { padding: 15px; font-size: 13px; color: #8B949E; line-height: 1.6; }
        
        .security-section { margin: 20px 15px; padding: 20px; background: #0D1117; border: 1px dashed #484F58; border-radius: 12px; text-align: center; }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: #00C853; }
        .age-limit { display: inline-block; border: 2px solid #F85149; color: #F85149; border-radius: 50%; width: 35px; height: 35px; line-height: 31px; font-weight: 700; font-size: 14px; margin-bottom: 10px; }
        .security-text { font-size: 12px; color: #8B949E; }
        
        .navigator { position: fixed; bottom: 0; width: 100%; background: #161B22; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #30363D; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #8B949E; font-size: 11px; }
        .nav-item i { font-size: 18px; }
        .nav-item.active { color: #FFB800; }
        
        footer { background: #0D1117; padding: 30px 15px 100px; border-top: 1px solid #30363D; }
        .footer-contacts { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; margin-bottom: 25px; }
        .footer-contacts a { font-size: 13px; color: #58A6FF; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; text-align: center; margin-bottom: 25px; }
        .footer-links a { font-size: 12px; color: #8B949E; padding: 5px; }
        .copyright { text-align: center; font-size: 11px; color: #484F58; border-top: 1px solid #21262D; pt: 20px; }