* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #0A0A0A; color: #FFFFFF; font-family: 'Inter', 'Roboto', sans-serif; line-height: 1.5; overflow-x: hidden; }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; line-height: 1.2; font-weight: 700; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }
        
        header { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; background-color: #121212; border-bottom: 1px solid #333333; position: sticky; top: 0; z-index: 1000; }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; object-fit: contain; }
        .header-left strong { font-size: 16px; font-weight: 500; color: #FFFFFF; }
        .header-right { display: flex; gap: 10px; }
        .btn-login { background: transparent; border: 1px solid #D4AF37; color: #D4AF37; padding: 6px 14px; border-radius: 4px; font-weight: 600; font-size: 13px; cursor: pointer; }
        .btn-register { background: linear-gradient(135deg, #D4AF37, #FFD700); color: #000000; border: none; padding: 6px 14px; border-radius: 4px; font-weight: 700; font-size: 13px; cursor: pointer; }

        .banner-container { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-box { margin: 20px 15px; padding: 20px; background: radial-gradient(circle, #1E1E1E 0%, #121212 100%); border: 1px solid #D4AF37; border-radius: 15px; text-align: center; box-shadow: 0 0 15px rgba(212, 175, 55, 0.2); }
        .jackpot-label { color: #FFD700; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; font-weight: 600; margin-bottom: 10px; }
        .jackpot-value { font-family: 'Oswald', sans-serif; font-size: 32px; color: #FFAB00; text-shadow: 0 0 10px rgba(255, 171, 0, 0.5); }

        .intro-card { margin: 15px; padding: 20px; background: #121212; border-radius: 12px; border-left: 4px solid #D4AF37; }
        .intro-card h1 { font-size: 24px; color: #D4AF37; margin-bottom: 12px; }
        .intro-card p { font-size: 14px; color: #B0B0B0; }

        .section-title { padding: 0 15px; margin: 25px 0 15px; display: flex; align-items: center; gap: 10px; }
        .section-title h2 { font-size: 20px; color: #FFFFFF; }
        .section-title::before { content: ""; width: 4px; height: 20px; background: #D4AF37; display: block; }

        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: #1E1E1E; border-radius: 10px; overflow: hidden; border: 1px solid #333333; transition: transform 0.2s; position: relative; }
        .game-card:active { transform: scale(0.97); }
        .game-card .image-wrapper { aspect-ratio: 1/1; width: 100%; background: #121212; }
        .game-card img { width: 100%; height: 100%; object-fit: cover; }
        .game-card h3 { font-size: 13px; padding: 8px; text-align: center; color: #FFFFFF; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

        .payment-section { margin: 20px 15px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; padding: 20px; background: #121212; border-radius: 12px; }
        .payment-item { display: flex; flex-direction: column; align-items: center; gap: 5px; }
        .payment-item i { font-size: 24px; color: #D4AF37; }
        .payment-item span { font-size: 10px; color: #B0B0B0; font-weight: 500; }

        .guides-container { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; }
        .guide-card { padding: 15px; background: #1E1E1E; border-radius: 10px; border-top: 2px solid #333; }
        .guide-card h3 { font-size: 16px; color: #D4AF37; margin-bottom: 8px; }
        .guide-card p { font-size: 13px; color: #B0B0B0; }

        .winners-box { margin: 20px 15px; background: #121212; border-radius: 12px; overflow: hidden; }
        .winner-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 15px; border-bottom: 1px solid #1E1E1E; }
        .winner-info { display: flex; flex-direction: column; }
        .winner-name { font-weight: 600; color: #FFFFFF; font-size: 14px; }
        .winner-game { font-size: 12px; color: #B0B0B0; }
        .winner-amount { color: #00C853; font-weight: 700; font-family: 'Oswald', sans-serif; }
        .winner-time { font-size: 11px; color: #666666; }

        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 15px; margin-bottom: 20px; }
        .provider-item { background: linear-gradient(45deg, #1A1A1A, #252525); padding: 15px; text-align: center; border-radius: 8px; color: #D4AF37; font-weight: 700; font-size: 14px; border: 1px solid #333; }

        .reviews-container { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; }
        .review-card { background: #1E1E1E; padding: 15px; border-radius: 12px; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 20px; color: #C0C0C0; background: #333; padding: 8px; border-radius: 50%; }
        .review-user { font-weight: 600; font-size: 14px; }
        .review-stars { color: #FFD600; font-size: 12px; }
        .review-content { font-size: 13px; color: #B0B0B0; font-style: italic; }
        .review-date { font-size: 11px; color: #666; margin-top: 8px; display: block; }

        .faq-section { padding: 0 15px; margin-bottom: 30px; }
        .faq-item { background: #121212; margin-bottom: 10px; border-radius: 8px; border: 1px solid #333; }
        .faq-question { padding: 15px; font-weight: 600; font-size: 14px; color: #FFFFFF; display: flex; justify-content: space-between; cursor: pointer; }
        .faq-answer { padding: 0 15px 15px; font-size: 13px; color: #B0B0B0; }

        .security-section { margin: 20px 15px; padding: 20px; background: #121212; border-radius: 12px; border: 1px solid #333; text-align: center; }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; color: #D4AF37; font-size: 24px; }
        .security-text { font-size: 12px; color: #B0B0B0; margin-bottom: 10px; }
        .age-limit { display: inline-block; border: 2px solid #FF1744; color: #FF1744; border-radius: 50%; width: 35px; height: 35px; line-height: 31px; font-weight: 800; font-size: 14px; }

        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: #121212; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #333; z-index: 1000; box-shadow: 0 -5px 15px rgba(0,0,0,0.5); }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #B0B0B0; font-size: 11px; width: 20%; }
        .nav-item i { font-size: 18px; }
        .nav-item:nth-child(3) { color: #D4AF37; transform: translateY(-5px); }
        .nav-item:nth-child(3) i { font-size: 24px; background: #1E1E1E; padding: 10px; border-radius: 50%; border: 2px solid #D4AF37; }

        footer { padding: 40px 15px 100px; background: #0A0A0A; border-top: 1px solid #333; }
        .footer-contacts { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 30px; }
        .contact-link { color: #B0B0B0; font-size: 14px; display: flex; align-items: center; gap: 5px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; text-align: center; margin-bottom: 30px; }
        .footer-links a { color: #666666; font-size: 13px; }
        .footer-links a:hover { color: #D4AF37; }
        .footer-copyright { border-top: 1px solid #333; padding-top: 20px; color: #666666; font-size: 11px; text-align: center; }

        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .provider-grid { grid-template-columns: repeat(4, 1fr); }
        }