* { 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; }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        
        header { background-color: #11141a; padding: 10px 0; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #333; }
        .header-content { display: flex; justify-content: space-between; align-items: center; }
        .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; text-transform: uppercase; letter-spacing: 1px; }
        .header-btns { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 20px; font-size: 14px; font-weight: bold; cursor: pointer; border: none; transition: transform 0.2s; }
        .btn:active { transform: scale(0.95); }
        .btn-login { background: transparent; color: #ffffff; border: 1px solid #FFD700; }
        .btn-register { background: linear-gradient(45deg, #FF6B35, #FF2E63); color: #fff; }

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

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

        .platform-intro { padding: 20px; text-align: center; background: #23272e; margin: 20px 0; border-radius: 15px; }
        .platform-intro h1 { font-size: 20px; color: #FFD700; margin-bottom: 15px; }
        .platform-intro p { font-size: 14px; color: #ccc; }

        .section-title { font-size: 18px; margin: 25px 0 15px; padding-left: 10px; border-left: 4px solid #FF6B35; text-transform: uppercase; }

        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-bottom: 25px; }
        .game-card { background: #23272e; border-radius: 12px; overflow: hidden; transition: transform 0.3s; }
        .game-image { aspect-ratio: 1 / 1; background: #333; position: relative; }
        .game-image img { width: 100%; height: 100%; object-fit: cover; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 14px; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #fff; }
        .game-info span { font-size: 12px; color: #888; display: block; }

        .payment-methods { background: #fff; padding: 20px; border-radius: 15px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; align-items: center; justify-items: center; margin: 20px 0; }
        .payment-methods i { font-size: 30px; color: #1a1d24; }
        .payment-methods img { filter: grayscale(1); max-height: 25px; opacity: 0.8; }

        .guidelines { display: grid; grid-template-columns: 1fr; gap: 15px; margin: 20px 0; }
        .guide-item { background: #23272e; padding: 20px; border-radius: 12px; border-bottom: 2px solid #FFD700; }
        .guide-item h2 { font-size: 18px; color: #FFD700; margin-bottom: 10px; }
        .guide-item p { font-size: 13px; color: #bbb; }

        .marquee-container { background: #11141a; padding: 15px 0; overflow: hidden; margin: 20px 0; border-top: 1px solid #333; border-bottom: 1px solid #333; }
        .marquee-content { display: flex; animation: scrollMarquee 40s linear infinite; gap: 30px; width: max-content; }
        .winner-pill { background: #23272e; padding: 8px 15px; border-radius: 20px; display: flex; gap: 10px; align-items: center; font-size: 12px; white-space: nowrap; border: 1px solid #444; }
        .winner-pill b { color: #FFD700; }
        @keyframes scrollMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        .providers-wall { background: #23272e; padding: 20px; border-radius: 15px; text-align: center; }
        .provider-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; font-weight: bold; color: #FFD700; opacity: 0.7; font-size: 14px; }

        .reviews-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin: 20px 0; }
        .review-card { background: #23272e; padding: 20px; border-radius: 15px; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: #FFD700; }
        .review-user { font-weight: bold; font-size: 14px; }
        .review-stars { color: #FFD700; font-size: 12px; margin-bottom: 10px; }
        .review-date { font-size: 11px; color: #666; display: block; margin-bottom: 5px; }
        .review-content { font-size: 13px; color: #ccc; font-style: italic; }

        .faq-section { margin: 25px 0; }
        .faq-item { background: #23272e; margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: bold; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-size: 14px; }
        .faq-answer { padding: 0 15px 15px; font-size: 13px; color: #bbb; display: block; }

        .security-section { background: #11141a; padding: 25px; border-radius: 15px; text-align: center; margin: 20px 0; border: 1px dashed #444; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: #FFD700; }
        .security-section p { font-size: 12px; color: #888; margin-bottom: 10px; }
        .age-limit { display: inline-block; border: 2px solid #ff0000; color: #ff0000; padding: 2px 8px; border-radius: 50%; font-weight: 800; font-size: 14px; margin-bottom: 10px; }

        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: #11141a; border-top: 1px solid #333; display: flex; justify-content: space-around; padding: 10px 0; z-index: 1001; }
        .nav-item { text-align: center; color: #888; font-size: 11px; flex: 1; }
        .nav-item i { font-size: 20px; display: block; margin-bottom: 4px; }
        .nav-item.active { color: #FFD700; }

        footer { background: #0c0e12; padding: 40px 15px 100px; text-align: center; }
        .footer-contacts { display: flex; justify-content: center; gap: 15px; margin-bottom: 30px; flex-wrap: wrap; }
        .footer-contacts a { font-size: 14px; color: #FFD700; text-decoration: underline; }
        .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: #888; }
        .footer-copy { font-size: 12px; color: #555; border-top: 1px solid #222; padding-top: 20px; }

        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .guidelines, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
            .platform-intro h1 { font-size: 28px; }
        }