* { 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; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        header { background: #12141a; height: 60px; display: flex; align-items: center; justify-content: space-between; padding: 0 15px; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #333; }
        .logo-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; object-fit: contain; }
        .logo-box strong { font-size: 16px; font-weight: normal; color: #FFD700; }
        .auth-btns { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 20px; font-size: 14px; font-weight: bold; border: none; cursor: pointer; transition: opacity 0.3s; }
        .btn-login { background: transparent; color: #fff; border: 1px solid #FFD700; }
        .btn-register { background: linear-gradient(90deg, #FF6B35, #FF2E63); color: #fff; }
        .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: radial-gradient(circle, #2a2e38 0%, #1a1d24 100%); padding: 20px; text-align: center; margin: 15px; border-radius: 15px; border: 1px solid #FFD700; }
        .jackpot-title { color: #FFD700; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 5px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #fff; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
        .intro-card { padding: 20px; margin: 15px; background: #252932; border-radius: 15px; }
        .intro-card h1 { font-size: 20px; color: #FFD700; margin-bottom: 10px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #ccc; }
        .section-title { font-size: 18px; margin: 20px 15px 10px; display: flex; align-items: center; gap: 10px; }
        .section-title::before { content: ""; width: 4px; height: 18px; background: #FFD700; border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 15px; }
        .game-card { background: #252932; border-radius: 12px; overflow: hidden; 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: 14px; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #eee; }
        .game-info span { font-size: 12px; color: #888; }
        .trust-section { background: #12141a; padding: 20px 15px; margin: 20px 0; }
        .trust-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; opacity: 0.7; }
        .trust-icons i { font-size: 30px; }
        .guidelines { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; }
        .guide-item { background: #252932; padding: 15px; border-radius: 12px; border-left: 3px solid #FF2E63; }
        .guide-item h2 { font-size: 16px; margin-bottom: 8px; color: #FFD700; }
        .guide-item p { font-size: 13px; color: #bbb; }
        .winners-marquee { background: #12141a; padding: 10px 0; margin: 20px 0; overflow: hidden; white-space: nowrap; }
        .marquee-content { display: inline-block; animation: scrollMarquee 40s linear infinite; }
        .winner-tag { display: inline-flex; align-items: center; background: #252932; padding: 8px 15px; margin-right: 15px; border-radius: 20px; border: 1px solid #333; font-size: 13px; }
        .winner-tag strong { color: #FFD700; margin-right: 5px; }
        .winner-tag b { color: #00ff88; margin-left: 5px; }
        @keyframes scrollMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .providers-wall { padding: 15px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
        .provider-label { background: #333; padding: 5px 12px; border-radius: 4px; font-size: 12px; color: #ddd; }
        .comments-section { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; }
        .comment-card { background: #252932; padding: 15px; border-radius: 12px; position: relative; }
        .user-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .user-meta i { font-size: 24px; color: #FF6B35; }
        .user-details h3 { font-size: 14px; }
        .stars { color: #FFD700; font-size: 12px; }
        .comment-date { font-size: 11px; color: #777; margin-top: 5px; }
        .comment-text { font-size: 13px; color: #ccc; font-style: italic; }
        .faq-section { padding: 0 15px; margin-top: 20px; }
        .faq-item { background: #252932; margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-item h2 { font-size: 15px; padding: 15px; background: #2d323d; cursor: pointer; color: #FFD700; }
        .faq-content { padding: 15px; font-size: 13px; color: #bbb; }
        .security-section { padding: 25px 15px; text-align: center; border-top: 1px solid #333; }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: #FFD700; }
        .security-text { font-size: 12px; color: #888; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: #12141a; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #333; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; color: #888; font-size: 11px; gap: 4px; }
        .nav-item i { font-size: 18px; }
        footer { background: #0d0f14; padding: 30px 15px 100px; border-top: 1px solid #333; }
        .footer-contacts { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-bottom: 30px; }
        .footer-link { font-size: 14px; color: #bbb; }
        .footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; text-align: center; }
        .footer-grid a { font-size: 13px; color: #777; }
        .copyright { text-align: center; font-size: 12px; color: #555; border-top: 1px solid #222; padding-top: 20px; }