* { 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: #111317; border-bottom: 2px solid #FFD700; position: sticky; top: 0; z-index: 1000; height: 60px; }
        .header-content { display: flex; justify-content: space-between; align-items: center; height: 100%; }
        .logo-box { display: flex; align-items: center; gap: 10px; }
        .logo-box img { width: 25px; height: 25px; object-fit: contain; }
        .logo-box strong { font-size: 16px; font-weight: normal; color: #FFD700; }
        .header-auth { display: flex; gap: 10px; }
        .btn { padding: 8px 15px; border-radius: 20px; font-weight: bold; border: none; cursor: pointer; font-size: 14px; transition: transform 0.2s; }
        .btn:active { transform: scale(0.95); }
        .btn-login { background: transparent; color: #FFD700; border: 1px solid #FFD700; }
        .btn-register { background: linear-gradient(90deg, #FF6B35, #FF2E63); color: white; }
        .banner-section { margin-bottom: 20px; }
        .banner-img { width: 100%; aspect-ratio: 2/1; object-fit: cover; cursor: pointer; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; }
        .jackpot-container { background: #252a34; padding: 20px; margin: 20px 0; border-radius: 15px; text-align: center; border: 1px solid #FFD700; box-shadow: 0 0 15px rgba(255, 215, 0, 0.2); }
        .jackpot-label { color: #FFD700; font-size: 1.2rem; font-weight: bold; text-transform: uppercase; margin-bottom: 10px; display: block; }
        .jackpot-value { font-size: 2.5rem; font-weight: 800; color: #ffffff; letter-spacing: 2px; text-shadow: 0 0 10px rgba(255,255,255,0.5); font-family: monospace; }
        .intro-card { background: #252a34; padding: 25px; border-radius: 15px; margin-bottom: 30px; border-left: 5px solid #FFD700; }
        .intro-card h1 { font-size: 1.5rem; color: #FFD700; margin-bottom: 15px; }
        .intro-card p { font-size: 1rem; color: #cccccc; }
        .section-title { font-size: 1.3rem; margin: 25px 0 15px; color: #FFD700; display: flex; align-items: center; gap: 10px; padding-left: 5px; }
        .section-title::before { content: ""; width: 4px; height: 20px; background: #FFD700; border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 30px; }
        .game-card { background: #252a34; border-radius: 12px; overflow: hidden; transition: transform 0.3s; position: relative; border: 1px solid #333; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 0.9rem; margin-bottom: 4px; color: #ffffff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-info p { font-size: 0.75rem; color: #999; }
        .payments-section { background: #252a34; padding: 20px; border-radius: 15px; text-align: center; margin-bottom: 30px; }
        .payment-icons { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; align-items: center; justify-items: center; }
        .payment-icons i { font-size: 30px; color: #FFD700; }
        .license-badges { margin-top: 20px; display: flex; justify-content: center; gap: 20px; opacity: 0.8; }
        .guidelines-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 30px; }
        .guide-item { background: #252a34; padding: 20px; border-radius: 15px; border-bottom: 3px solid #FF6B35; }
        .guide-item h2 { font-size: 1.1rem; color: #FFD700; margin-bottom: 10px; }
        .guide-item p { font-size: 0.9rem; color: #bbb; }
        .marquee-wins { background: #111317; padding: 15px; border-radius: 10px; overflow: hidden; height: 200px; position: relative; margin-bottom: 30px; }
        .marquee-content { animation: scrollUp 20s linear infinite; }
        @keyframes scrollUp { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .win-row { display: flex; justify-content: space-between; padding: 8px 10px; border-bottom: 1px solid #222; font-size: 0.85rem; }
        .win-user { color: #FFD700; font-weight: bold; }
        .win-amount { color: #00FF00; }
        .providers-wall { background: #252a34; padding: 20px; border-radius: 15px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 30px; }
        .provider-tag { background: #1a1d24; padding: 8px 15px; border-radius: 20px; font-size: 0.85rem; border: 1px solid #333; color: #FFD700; }
        .reviews-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 30px; }
        .review-card { background: #252a34; padding: 20px; border-radius: 15px; }
        .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: 0.8rem; }
        .review-date { font-size: 0.75rem; color: #777; }
        .review-text { font-size: 0.9rem; color: #ddd; font-style: italic; }
        .faq-section { margin-bottom: 30px; }
        .faq-item { background: #252a34; border-radius: 10px; margin-bottom: 10px; padding: 15px; }
        .faq-item h2 { font-size: 1rem; color: #FFD700; margin-bottom: 10px; }
        .faq-item p { font-size: 0.9rem; color: #ccc; }
        .security-section { text-align: center; background: #111317; padding: 20px; border-radius: 15px; border: 1px dashed #FF6B35; margin-bottom: 30px; }
        .security-section h2 { font-size: 1.1rem; color: #FFD700; margin-bottom: 10px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin: 15px 0; font-size: 24px; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #111317; display: flex; justify-content: space-around; padding: 10px 0; border-top: 2px solid #FFD700; z-index: 1001; }
        .nav-item { display: flex; flex-direction: column; align-items: center; color: #888; font-size: 0.75rem; }
        .nav-item i { font-size: 1.2rem; margin-bottom: 3px; }
        .nav-item.active { color: #FFD700; }
        footer { background: #0c0e12; padding: 40px 15px 100px; text-align: center; }
        .footer-contacts { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 30px; }
        .footer-contacts a { font-size: 0.9rem; color: #FFD700; border: 1px solid #FFD700; padding: 5px 12px; border-radius: 15px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; text-align: left; }
        .footer-links a { font-size: 0.85rem; color: #999; }
        .copyright { font-size: 0.8rem; color: #666; border-top: 1px solid #222; padding-top: 20px; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(3, 1fr); }
            .guidelines-grid, .reviews-grid { grid-template-columns: 1fr 1fr; }
            .payment-icons { grid-template-columns: repeat(8, 1fr); }
        }