* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #1a1d24; color: #ffffff; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; height: auto; display: block; }
        
        header { background-color: #11141a; padding: 10px 15px; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2a2e38; }
        .header-container { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; }
        .logo-area { display: flex; align-items: center; gap: 8px; }
        .logo-area img { width: 25px; height: 25px; }
        .logo-area strong { font-size: 16px; font-weight: 400; color: #FFD700; text-transform: uppercase; letter-spacing: 1px; }
        .auth-buttons { display: flex; gap: 10px; }
        .btn { padding: 8px 15px; border-radius: 20px; font-weight: 600; font-size: 14px; border: none; cursor: pointer; transition: transform 0.2s; }
        .btn-login { background: transparent; color: #ffffff; border: 1px solid #FFD700; }
        .btn-register { background: linear-gradient(45deg, #FF6B35, #FF2E63); color: #ffffff; }
        .btn:active { transform: scale(0.95); }

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

        .jackpot-container { background: radial-gradient(circle, #2a2e38 0%, #1a1d24 100%); margin: 20px 15px; padding: 20px; border-radius: 15px; text-align: center; border: 1px solid #FFD700; }
        .jackpot-title { color: #FFD700; font-size: 18px; margin-bottom: 10px; text-transform: uppercase; font-weight: bold; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #ffffff; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); font-family: monospace; }

        .intro-card { margin: 20px 15px; padding: 25px; background: #23272e; border-radius: 15px; border-left: 5px solid #FFD700; }
        .intro-card h1 { font-size: 22px; color: #FFD700; margin-bottom: 15px; line-height: 1.2; }
        .intro-card p { font-size: 15px; color: #cccccc; }

        .section-container { padding: 10px 15px; max-width: 1200px; margin: 0 auto; }
        .section-title { font-size: 20px; color: #FFD700; margin: 20px 0 15px; display: flex; align-items: center; gap: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
        .game-card { background: #23272e; border-radius: 12px; overflow: hidden; transition: transform 0.3s; border: 1px solid #2a2e38; }
        .game-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 14px; margin-bottom: 4px; color: #ffffff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-info span { font-size: 11px; color: #888; text-transform: uppercase; }

        .payment-methods { background: #11141a; padding: 20px; margin: 20px 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; align-items: center; }
        .payment-icon { font-size: 24px; color: #FFD700; opacity: 0.8; filter: grayscale(0.5); transition: 0.3s; }
        .payment-icon:hover { opacity: 1; filter: grayscale(0); }

        .content-blocks { display: grid; grid-template-columns: 1fr; gap: 15px; margin: 20px 0; }
        .content-card { background: #23272e; padding: 20px; border-radius: 15px; }
        .content-card h2 { font-size: 18px; color: #FFD700; margin-bottom: 10px; }
        .content-card p { font-size: 14px; color: #cccccc; }

        .marquee-container { background: #11141a; padding: 15px 0; margin: 20px 0; overflow: hidden; white-space: nowrap; border-top: 1px solid #FFD700; border-bottom: 1px solid #FFD700; }
        .marquee-content { display: inline-flex; animation: scroll 40s linear infinite; gap: 30px; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .winner-item { display: flex; align-items: center; gap: 10px; background: #23272e; padding: 8px 15px; border-radius: 20px; border: 1px solid #333; }
        .winner-item strong { color: #FFD700; }
        .winner-val { color: #4CAF50; font-weight: bold; }

        .providers-wall { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; padding: 20px; background: #23272e; border-radius: 15px; margin: 20px 0; }
        .provider-tag { background: #1a1d24; padding: 5px 15px; border-radius: 5px; font-size: 12px; font-weight: bold; color: #FFD700; border: 1px solid #333; }

        .reviews-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin: 20px 0; }
        .review-card { background: #23272e; padding: 20px; border-radius: 15px; border: 1px solid #2a2e38; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 10px; }
        .user-meta { display: flex; align-items: center; gap: 10px; }
        .user-meta i { font-size: 24px; color: #FFD700; }
        .stars { color: #FFD700; font-size: 12px; }
        .review-date { font-size: 11px; color: #666; }

        .faq-section { margin: 20px 0; }
        .faq-item { background: #23272e; border-radius: 10px; margin-bottom: 10px; padding: 15px; border: 1px solid #2a2e38; }
        .faq-item h2 { font-size: 16px; color: #FFD700; margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: #cccccc; }

        .security-section { background: #11141a; padding: 25px; border-radius: 15px; text-align: center; margin: 20px 0; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-top: 15px; }
        .security-badge { font-size: 30px; color: #FFD700; }

        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: #11141a; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2a2e38; z-index: 2000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; font-size: 10px; color: #888; gap: 4px; }
        .nav-item i { font-size: 20px; color: #FFD700; }

        footer { background: #0a0c10; padding: 30px 15px 100px; color: #666; text-align: center; }
        .footer-contacts { display: flex; justify-content: center; gap: 15px; margin-bottom: 20px; flex-wrap: wrap; }
        .footer-contacts a { color: #FFD700; font-size: 14px; border: 1px solid #333; padding: 5px 12px; border-radius: 5px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; max-width: 600px; margin-left: auto; margin-right: auto; }
        .footer-links a { font-size: 13px; color: #aaa; }
        .copyright { font-size: 12px; margin-top: 20px; border-top: 1px solid #222; padding-top: 20px; }