* { margin: 0; padding: 0; box-sizing: border-box; }
        body { background-color: #1a1d24; color: #ffffff; font-family: 'Segoe UI', Roboto, sans-serif; line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        header { background: #1a1d24; padding: 15px 20px; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #333; }
        .logo-box { display: flex; align-items: center; gap: 10px; }
        .logo-box img { width: 25px; height: 25px; border-radius: 5px; }
        .logo-box strong { font-size: 16px; font-weight: normal; color: #FFD700; text-transform: uppercase; letter-spacing: 1px; }
        .header-btns { display: flex; gap: 10px; }
        .btn { padding: 8px 15px; border-radius: 20px; font-weight: bold; border: none; cursor: pointer; font-size: 14px; transition: opacity 0.3s; }
        .btn-login { background: transparent; color: #ffffff; border: 1px solid #ffffff; }
        .btn-register { background: linear-gradient(to right, #FF6B35, #FF2E63); color: #ffffff; }
        .banner-container { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section { background: #111; padding: 20px; text-align: center; border-bottom: 2px solid #FFD700; }
        .jackpot-title { color: #FFD700; font-size: 1.2rem; margin-bottom: 10px; text-transform: uppercase; }
        #jackpot-counter { font-size: 2.5rem; font-weight: bold; color: #FFD700; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
        .intro-card { padding: 25px; margin: 20px; background: #252a34; border-radius: 15px; text-align: center; }
        .intro-card h1 { font-size: 1.5rem; color: #FFD700; margin-bottom: 15px; }
        .section-title { padding: 0 20px; margin: 20px 0 15px; color: #FFD700; border-left: 4px solid #FF2E63; margin-left: 20px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; padding: 0 20px; }
        .game-card { background: #252a34; border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; transition: transform 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-info { padding: 10px; text-align: center; }
        .game-info h3 { font-size: 14px; margin-bottom: 5px; color: #ffffff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-provider { font-size: 12px; color: #888; }
        .trust-section { background: #111; margin: 25px 20px; padding: 20px; border-radius: 15px; text-align: center; }
        .icons-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-top: 15px; align-items: center; }
        .trust-icon { font-size: 24px; color: #888; }
        .guidelines-grid { padding: 0 20px; display: flex; flex-direction: column; gap: 15px; }
        .guide-item { background: #252a34; padding: 20px; border-radius: 12px; }
        .guide-item h2 { font-size: 1.1rem; color: #FFD700; margin-bottom: 10px; }
        .marquee-box { background: #000; padding: 15px 0; margin: 25px 0; overflow: hidden; position: relative; }
        .marquee-content { display: flex; gap: 50px; animation: scroll 30s linear infinite; white-space: nowrap; }
        @keyframes scroll { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
        .win-record { display: flex; gap: 10px; align-items: center; color: #FFD700; font-weight: bold; }
        .providers-wall { padding: 20px; text-align: center; color: #888; font-weight: bold; background: #252a34; margin: 20px; border-radius: 15px; }
        .comments-section { padding: 0 20px; margin-bottom: 30px; }
        .comment-card { background: #252a34; border-radius: 12px; padding: 20px; margin-bottom: 15px; }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-header i { font-size: 24px; color: #FFD700; }
        .stars { color: #FFD700; font-size: 12px; }
        .faq-section { padding: 0 20px; }
        .faq-item { background: #252a34; padding: 15px; border-radius: 10px; margin-bottom: 10px; }
        .faq-item h2 { font-size: 1rem; color: #FFD700; margin-bottom: 8px; }
        .security-section { padding: 25px 20px; background: #111; text-align: center; }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin-top: 15px; color: #888; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: #111; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #333; z-index: 2000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; color: #888; font-size: 12px; }
        .nav-item i { font-size: 20px; margin-bottom: 3px; }
        footer { padding: 40px 20px; background: #0a0c10; text-align: center; }
        .footer-contacts { margin-bottom: 30px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 30px; text-align: left; font-size: 13px; color: #888; }
        .copy-text { font-size: 12px; color: #555; border-top: 1px solid #333; padding-top: 20px; }