* { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #1a1d24; color: #ffffff; line-height: 1.6; overflow-x: hidden; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul { list-style: none; }
        .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; width: 100%; }
        .logo-box { display: flex; align-items: center; gap: 10px; }
        .logo-box img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-box strong { font-size: 16px; font-weight: normal; color: #FFD700; text-transform: uppercase; letter-spacing: 1px; }
        .auth-buttons { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 20px; font-size: 14px; font-weight: 600; border: none; cursor: pointer; }
        .btn-login { background: transparent; color: #FFD700; border: 1px solid #FFD700; }
        .btn-register { background: linear-gradient(90deg, #FF6B35, #FF2E63); color: #fff; }

        .banner-section { width: 100%; margin-bottom: 20px; }
        .banner-section img { width: 100%; aspect-ratio: 2/1; object-fit: cover; display: block; cursor: pointer; border-bottom: 2px solid #FFD700; }

        .jackpot-container { background: radial-gradient(circle, #2a2e38 0%, #12141a 100%); padding: 20px; text-align: center; border-radius: 15px; margin: 20px 15px; border: 1px solid #FFD700; box-shadow: 0 0 15px rgba(255, 215, 0, 0.2); }
        .jackpot-label { color: #FFD700; font-size: 18px; font-weight: bold; text-transform: uppercase; margin-bottom: 10px; display: block; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #fff; font-family: 'Courier New', monospace; letter-spacing: 2px; text-shadow: 0 0 10px #FF6B35; }

        .intro-card { background: #22262f; padding: 25px; margin: 20px 15px; border-radius: 15px; border-left: 4px solid #FFD700; }
        .intro-card h1 { font-size: 22px; color: #FFD700; margin-bottom: 10px; line-height: 1.3; }
        .intro-card p { font-size: 15px; color: #b0b3b8; }

        .section-title { padding: 0 15px; margin: 25px 0 15px; border-left: 4px solid #FF2E63; margin-left: 15px; }
        .section-title h2 { font-size: 20px; text-transform: uppercase; letter-spacing: 1px; }

        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: #22262f; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 10px rgba(0,0,0,0.3); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .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 p { font-size: 12px; color: #888; }

        .payments-licenses { background: #12141a; padding: 30px 15px; margin: 30px 0; text-align: center; }
        .icon-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; opacity: 0.7; }
        .icon-row i { font-size: 35px; color: #FFD700; }
        .license-text { margin-top: 15px; font-size: 12px; color: #666; }

        .guidelines { padding: 0 15px; margin-bottom: 30px; }
        .guideline-item { background: #22262f; padding: 15px; border-radius: 10px; margin-bottom: 15px; }
        .guideline-item h3 { font-size: 17px; color: #FFD700; margin-bottom: 8px; }
        .guideline-item p { font-size: 14px; color: #b0b3b8; }

        .winners-marquee { background: #12141a; padding: 10px 0; margin: 20px 0; border-top: 1px solid #2a2e38; border-bottom: 1px solid #2a2e38; overflow: hidden; white-space: nowrap; }
        .marquee-content { display: inline-block; animation: scrollLeft 40s linear infinite; }
        .winner-tag { display: inline-flex; align-items: center; background: #22262f; padding: 5px 15px; margin: 0 10px; border-radius: 20px; border: 1px solid #333; }
        .winner-tag span { font-size: 13px; margin: 0 5px; }
        .winner-name { color: #FFD700; font-weight: bold; }
        .winner-amount { color: #00FF7F; font-weight: bold; }
        @keyframes scrollLeft { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        .providers-section { padding: 20px 15px; background: #1a1d24; text-align: center; }
        .provider-wall { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; color: #888; font-weight: bold; }
        .provider-tag { padding: 5px 12px; background: #22262f; border-radius: 5px; font-size: 13px; }

        .reviews-section { padding: 20px 15px; }
        .review-card { background: #22262f; padding: 20px; border-radius: 15px; margin-bottom: 15px; position: relative; }
        .review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
        .review-header i { font-size: 30px; color: #FFD700; }
        .user-meta h4 { font-size: 15px; }
        .stars { color: #FFD700; font-size: 12px; }
        .review-date { font-size: 11px; color: #666; position: absolute; top: 20px; right: 20px; }
        .review-content { font-size: 14px; color: #b0b3b8; font-style: italic; }

        .faq-section { padding: 20px 15px; }
        .faq-item { margin-bottom: 15px; background: #22262f; border-radius: 10px; padding: 15px; }
        .faq-item h3 { font-size: 16px; color: #FFD700; margin-bottom: 10px; }
        .faq-item p { font-size: 14px; color: #b0b3b8; }

        .security-section { padding: 30px 15px; background: #12141a; text-align: center; margin-top: 20px; }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; }
        .badge { display: flex; flex-direction: column; align-items: center; font-size: 10px; color: #888; }
        .badge i { font-size: 24px; color: #FFD700; margin-bottom: 5px; }
        .responsible-links { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; margin-top: 15px; font-size: 13px; }
        .responsible-links a { color: #FF2E63; text-decoration: underline; }

        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; 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; color: #888; font-size: 12px; width: 20%; }
        .nav-item i { font-size: 20px; margin-bottom: 3px; }
        .nav-item.active, .nav-item:hover { color: #FFD700; }

        footer { background: #0d0f14; padding: 40px 15px 100px; text-align: center; border-top: 1px solid #2a2e38; }
        .footer-contact { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; flex-wrap: wrap; }
        .footer-contact a { color: #b0b3b8; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 15px; margin-bottom: 30px; }
        .footer-links a { font-size: 13px; color: #666; }
        .copyright { font-size: 12px; color: #444; margin-top: 20px; }

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