* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #050505; 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: #D4AF37; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; border-radius: 12px; }

        header { background-color: #121212; border-bottom: 1px solid #2A2A2A; padding: 12px 20px; position: sticky; top: 0; z-index: 1000; display: flex; justify-content: space-between; align-items: center; }
        .header-left { display: flex; align-items: center; gap: 10px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: 400; color: #FFFFFF; }
        .header-right { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 8px; font-weight: 600; font-size: 14px; cursor: pointer; border: none; transition: 0.3s; }
        .btn-login { background: transparent; color: #D4AF37; border: 1px solid #D4AF37; }
        .btn-register { background: #D4AF37; color: #050505; }
        .btn-register:hover { background: #F9E076; }

        main { padding-bottom: 80px; }
        .banner-container { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; }

        .jackpot-section { background: linear-gradient(135deg, #1A1A1A 0%, #050505 100%); padding: 25px; text-align: center; border-radius: 20px; margin: 20px; border: 1px solid #996515; }
        .jackpot-label { color: #B0B0B0; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-size: 36px; font-weight: 800; color: #D4AF37; margin: 10px 0; font-family: 'Montserrat', sans-serif; text-shadow: 0 0 15px rgba(212, 175, 55, 0.5); }

        .intro-card { background: #1A1A1A; margin: 20px; padding: 25px; border-radius: 16px; border-left: 4px solid #D4AF37; }
        .intro-card h1 { font-size: 24px; margin-bottom: 12px; line-height: 1.2; }
        .intro-card p { color: #B0B0B0; font-size: 15px; }

        .section-title { padding: 0 20px; margin: 30px 0 15px; font-size: 20px; display: flex; align-items: center; gap: 10px; }
        .section-title i { color: #E63946; }

        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; padding: 0 20px; }
        .game-card { background: #1A1A1A; border-radius: 12px; overflow: hidden; border: 1px solid #2A2A2A; transition: 0.3s; }
        .game-card:hover { transform: translateY(-5px); border-color: #D4AF37; }
        .game-card img { aspect-ratio: 1/1; object-fit: cover; width: 100%; }
        .game-card h3 { font-size: 14px; padding: 10px; text-align: center; color: #FFFFFF; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

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

        .guide-section { padding: 20px; display: grid; gap: 20px; }
        .guide-card { background: #1A1A1A; padding: 20px; border-radius: 16px; border: 1px solid #2A2A2A; }
        .guide-card h3 { font-size: 18px; margin-bottom: 10px; }
        .guide-card p { color: #B0B0B0; font-size: 14px; }

        .lottery-container { margin: 20px; background: #121212; border-radius: 16px; overflow: hidden; }
        .lottery-item { display: flex; justify-content: space-between; padding: 12px 15px; border-bottom: 1px solid #2A2A2A; font-size: 13px; }
        .lottery-user { color: #FFFFFF; font-weight: 600; }
        .lottery-game { color: #B0B0B0; }
        .lottery-win { color: #2ECC71; font-weight: 700; }

        .providers-section { display: flex; gap: 10px; padding: 20px; overflow-x: auto; scrollbar-width: none; }
        .provider-block { flex: 0 0 140px; background: linear-gradient(45deg, #996515, #D4AF37); color: #050505; padding: 15px; border-radius: 10px; text-align: center; font-weight: 700; font-size: 14px; }

        .reviews-grid { display: grid; gap: 15px; padding: 20px; }
        .review-card { background: #1A1A1A; padding: 20px; border-radius: 16px; border: 1px solid #2A2A2A; }
        .review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
        .review-avatar { width: 40px; height: 40px; background: #2A2A2A; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #D4AF37; }
        .stars { color: #F1C40F; font-size: 12px; }
        .review-date { font-size: 11px; color: #666666; margin-top: 8px; }

        .faq-section { padding: 20px; }
        .faq-item { margin-bottom: 15px; background: #1A1A1A; border-radius: 12px; border: 1px solid #2A2A2A; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; color: #D4AF37; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 0 15px 15px; color: #B0B0B0; font-size: 14px; }

        .security-section { padding: 20px; text-align: center; background: #050505; color: #B0B0B0; font-size: 13px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 20px; color: #2ECC71; }
        .responsible-links { margin-top: 15px; display: flex; justify-content: center; gap: 15px; font-weight: 600; color: #D4AF37; }

        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #121212; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2A2A2A; z-index: 1000; box-shadow: 0 -5px 20px rgba(0,0,0,0.5); }
        .nav-item { display: flex; flex-direction: column; align-items: center; font-size: 11px; color: #B0B0B0; gap: 4px; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: #D4AF37; }

        footer { background: #121212; padding: 40px 20px 100px; text-align: center; border-top: 1px solid #2A2A2A; }
        .footer-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; }
        .footer-social a { color: #D4AF37; font-size: 18px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; text-align: left; margin-bottom: 30px; }
        .footer-links a { font-size: 13px; color: #B0B0B0; transition: 0.3s; }
        .footer-links a:hover { color: #D4AF37; }
        .footer-copyright { font-size: 12px; color: #666666; border-top: 1px solid #2A2A2A; pt: 20px; }

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