* { 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; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        
        header { background-color: #12141a; height: 60px; display: flex; align-items: center; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2a2e38; }
        header .container { display: flex; justify-content: space-between; align-items: center; }
        .logo-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; border-radius: 5px; }
        .logo-box strong { font-size: 16px; font-weight: normal; color: #FFD700; letter-spacing: 1px; }
        .auth-buttons { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 20px; font-size: 14px; font-weight: bold; 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; border-radius: 0 0 15px 15px; overflow: hidden; }
        .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 { color: #FFD700; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: 900; color: #ffffff; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); font-family: monospace; }

        .platform-intro { background: #23272e; padding: 20px; border-radius: 15px; margin: 20px 0; border-left: 4px solid #FFD700; }
        .platform-intro h1 { font-size: 20px; color: #FFD700; margin-bottom: 10px; }
        .platform-intro p { font-size: 14px; color: #cccccc; }

        .section-header { display: flex; align-items: center; gap: 10px; margin: 25px 0 15px; }
        .section-header h2 { font-size: 18px; color: #FFD700; position: relative; }
        .section-header i { color: #FFD700; }

        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 25px; }
        .game-card { background: #23272e; border-radius: 12px; overflow: hidden; transition: transform 0.3s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 13px; color: #ffffff; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-info span { font-size: 11px; color: #888; display: block; }

        .payments-licence { background: #12141a; padding: 20px; border-radius: 15px; text-align: center; margin: 25px 0; }
        .icons-flex { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 15px; }
        .icons-flex i { font-size: 24px; color: #888; }
        .license-seal { font-size: 12px; color: #FFD700; border: 1px solid #FFD700; padding: 4px 8px; border-radius: 4px; display: inline-block; margin-top: 10px; }

        .guides-container { display: grid; grid-template-columns: 1fr; gap: 15px; }
        .guide-card { background: #23272e; padding: 20px; border-radius: 12px; }
        .guide-card h2 { font-size: 16px; color: #FFD700; margin-bottom: 10px; }
        .guide-card p { font-size: 13px; color: #cccccc; }

        .win-ticker { background: #12141a; height: 40px; margin: 20px 0; overflow: hidden; position: relative; border-radius: 20px; border: 1px solid #2a2e38; }
        .ticker-wrapper { display: flex; animation: marquee 40s linear infinite; white-space: nowrap; align-items: center; height: 100%; }
        .ticker-item { display: flex; align-items: center; padding: 0 20px; font-size: 12px; color: #cccccc; gap: 10px; }
        .ticker-item strong { color: #00ff88; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

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

        .reviews-grid { display: flex; flex-direction: column; gap: 15px; margin-top: 20px; }
        .review-card { background: #23272e; padding: 15px; border-radius: 12px; border: 1px solid #2a2e38; }
        .review-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
        .user-info { display: flex; align-items: center; gap: 8px; font-size: 14px; }
        .user-info i { color: #888; font-size: 20px; }
        .stars { color: #FFD700; font-size: 12px; }
        .review-date { font-size: 11px; color: #666; }
        .review-content { font-size: 13px; color: #cccccc; font-style: italic; }

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

        .security-section { background: linear-gradient(135deg, #1a1d24 0%, #23272e 100%); padding: 25px; border-radius: 15px; text-align: center; margin: 30px 0; border: 1px solid #2a2e38; }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: #FFD700; }
        .security-text { font-size: 12px; color: #888; }
        .age-limit { display: inline-block; border: 2px solid #ff4444; color: #ff4444; border-radius: 50%; width: 35px; height: 35px; line-height: 31px; font-weight: bold; margin-bottom: 10px; }

        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #12141a; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2a2e38; z-index: 1001; }
        .nav-item { display: flex; flex-direction: column; align-items: center; font-size: 11px; color: #888; gap: 4px; }
        .nav-item i { font-size: 18px; }
        .nav-item.active { color: #FFD700; }

        footer { background: #0e1014; padding: 40px 15px 100px; text-align: center; }
        .footer-contact { display: flex; justify-content: center; gap: 15px; margin-bottom: 25px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 30px; }
        .footer-links a { font-size: 12px; color: #888; transition: color 0.2s; }
        .footer-links a:hover { color: #FFD700; }
        .copyright { font-size: 11px; color: #555; border-top: 1px solid #222; padding-top: 20px; }