* { 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; }
        header { background-color: #11141a; height: 60px; display: flex; align-items: center; justify-content: space-between; padding: 0 15px; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.5); }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: normal; color: #FFD700; }
        .header-right { display: flex; gap: 10px; }
        .btn-login { padding: 6px 15px; border-radius: 20px; font-size: 14px; border: 1px solid #FFD700; color: #FFD700; background: transparent; cursor: pointer; }
        .btn-register { padding: 6px 15px; border-radius: 20px; font-size: 14px; border: none; color: #fff; background: linear-gradient(90deg, #FF6B35, #FF2E63); font-weight: bold; cursor: pointer; }
        .banner { width: 100%; aspect-ratio: 2 / 1; overflow: hidden; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container { background: #000; padding: 20px; text-align: center; border-bottom: 2px solid #FFD700; }
        .jackpot-label { color: #FFD700; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-size: 32px; font-weight: bold; color: #FFD700; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); margin: 5px 0; font-family: 'Courier New', monospace; }
        .intro-card { padding: 20px; background: #252a34; margin: 15px; border-radius: 15px; border-left: 4px solid #FFD700; }
        .intro-card h1 { font-size: 20px; color: #FFD700; margin-bottom: 10px; }
        .intro-card p { font-size: 14px; color: #ccc; }
        .section-title { padding: 0 15px; margin-top: 25px; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; border-left: 4px solid #FF2E63; }
        .section-title h2 { font-size: 18px; text-transform: uppercase; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: #252a34; border-radius: 12px; overflow: hidden; display: block; transition: transform 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 13px; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-provider { font-size: 11px; color: #FFD700; }
        .payments-licenses { padding: 20px 15px; background: #11141a; margin-top: 20px; text-align: center; }
        .payment-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 15px; opacity: 0.8; }
        .payment-icons i { font-size: 24px; }
        .guidelines { padding: 0 15px; margin-top: 20px; }
        .guideline-item { background: #252a34; padding: 15px; border-radius: 12px; margin-bottom: 12px; }
        .guideline-item h2 { font-size: 16px; color: #FFD700; margin-bottom: 8px; }
        .guideline-item p { font-size: 13px; color: #bbb; }
        .marquee-container { background: #11141a; padding: 10px 0; overflow: hidden; white-space: nowrap; margin: 20px 0; border-top: 1px solid #333; border-bottom: 1px solid #333; }
        .marquee-content { display: inline-block; animation: marquee 30s linear infinite; }
        .marquee-item { display: inline-block; padding: 0 20px; font-size: 12px; border-right: 1px solid #333; }
        .marquee-item span { color: #FFD700; font-weight: bold; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .providers-wall { padding: 20px 15px; display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; background: #252a34; border-radius: 15px; margin: 15px; }
        .provider-name { font-size: 14px; font-weight: bold; color: #888; text-transform: uppercase; }
        .reviews { padding: 0 15px; }
        .review-card { background: #252a34; padding: 15px; border-radius: 12px; margin-bottom: 15px; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .review-header i { font-size: 30px; color: #FFD700; }
        .review-meta h3 { font-size: 14px; }
        .stars { color: #FFD700; font-size: 12px; }
        .review-date { font-size: 11px; color: #888; }
        .review-content { font-size: 13px; color: #bbb; }
        .faq-section { padding: 0 15px; }
        .faq-item { background: #252a34; border-radius: 12px; margin-bottom: 10px; padding: 15px; }
        .faq-item h2 { font-size: 15px; color: #FFD700; margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: #bbb; }
        .security-section { padding: 20px 15px; background: #11141a; text-align: center; border-radius: 15px; margin: 15px; }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin-top: 15px; font-size: 24px; color: #2ecc71; }
        .responsible-links a { color: #FF2E63; font-size: 12px; margin: 0 5px; text-decoration: underline; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; height: 65px; background: #11141a; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #333; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; color: #888; font-size: 12px; }
        .nav-item i { font-size: 20px; margin-bottom: 4px; }
        .nav-item:nth-child(3) { color: #FFD700; transform: translateY(-10px); background: #252a34; width: 60px; height: 60px; border-radius: 50%; justify-content: center; border: 3px solid #1a1d24; }
        footer { padding: 30px 15px 100px; background: #000; text-align: center; }
        .footer-contacts { margin-bottom: 20px; display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
        .footer-contacts a { font-size: 13px; color: #FFD700; }
        .footer-links { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-bottom: 25px; text-align: left; }
        .footer-links a { font-size: 12px; color: #888; }
        .copyright { font-size: 11px; color: #555; border-top: 1px solid #222; padding-top: 15px; }