* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
        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; }

        header { background-color: #12141a; 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; letter-spacing: 0.5px; }
        .header-right { display: flex; gap: 10px; }
        .btn-login, .btn-register { padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: bold; border: none; cursor: pointer; }
        .btn-login { background: transparent; color: #ffffff; border: 1px solid #FFD700; }
        .btn-register { background: linear-gradient(135deg, #FF6B35 0%, #FF2E63 100%); 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: radial-gradient(circle, #2c313c 0%, #1a1d24 100%); padding: 20px 15px; text-align: center; margin: 15px 0; border-top: 1px solid #FFD700; border-bottom: 1px solid #FFD700; }
        .jackpot-title { color: #FFD700; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; font-weight: bold; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #ffffff; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); font-family: 'Courier New', monospace; }

        .intro-card { background: #252932; margin: 15px; padding: 20px; border-radius: 12px; border-left: 4px solid #FFD700; }
        .intro-card h1 { font-size: 18px; color: #FFD700; margin-bottom: 10px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #cccccc; }

        .section-title { padding: 0 15px; margin: 20px 0 10px; display: flex; align-items: center; gap: 10px; }
        .section-title h2 { font-size: 18px; color: #ffffff; font-weight: bold; }
        .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; box-shadow: 0 4px 6px rgba(0,0,0,0.3); transition: transform 0.2s; }
        .game-card:active { transform: scale(0.98); }
        .game-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 14px; color: #ffffff; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-provider { font-size: 11px; color: #FFD700; font-weight: 600; text-transform: uppercase; }

        .payment-section { background: #12141a; padding: 25px 15px; margin-top: 25px; text-align: center; }
        .payment-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 15px; }
        .payment-icons i { font-size: 24px; color: #8a8d91; }
        .trust-badges { display: flex; justify-content: center; gap: 20px; margin-top: 20px; opacity: 0.7; }

        .guidelines-grid { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; margin-top: 15px; }
        .guide-item { background: #252932; padding: 15px; border-radius: 10px; }
        .guide-item h3 { color: #FFD700; font-size: 16px; margin-bottom: 8px; }
        .guide-item p { font-size: 13px; color: #bbbbbb; }

        .winning-marquee { background: #12141a; padding: 10px 0; margin: 25px 0; overflow: hidden; white-space: nowrap; border-top: 1px solid #333; border-bottom: 1px solid #333; }
        .marquee-content { display: inline-block; animation: marquee 40s linear infinite; }
        .winning-item { display: inline-flex; align-items: center; background: #252932; padding: 5px 15px; border-radius: 20px; margin-right: 15px; font-size: 12px; border: 1px solid #3d424d; }
        .winning-item span { color: #FFD700; font-weight: bold; margin: 0 5px; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        .providers-wall { padding: 20px 15px; background: #1a1d24; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
        .provider-tag { background: #12141a; color: #8a8d91; padding: 5px 12px; border-radius: 4px; font-size: 12px; border: 1px solid #333; }

        .comments-section { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; }
        .comment-card { background: #252932; padding: 15px; border-radius: 12px; border: 1px solid #333; }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-header i { font-size: 30px; color: #FFD700; }
        .user-meta { flex: 1; }
        .user-meta .username { font-weight: bold; font-size: 14px; display: block; }
        .user-meta .stars { color: #FFD700; font-size: 12px; }
        .comment-date { font-size: 11px; color: #8a8d91; }
        .comment-content { font-size: 13px; color: #dddddd; font-style: italic; }

        .faq-container { padding: 0 15px; margin-top: 20px; }
        .faq-item { background: #12141a; margin-bottom: 10px; border-radius: 8px; overflow: hidden; border: 1px solid #333; }
        .faq-item h3 { padding: 15px; font-size: 14px; color: #FFD700; cursor: pointer; }
        .faq-item p { padding: 0 15px 15px; font-size: 13px; color: #bbbbbb; }

        .security-section { padding: 30px 15px; text-align: center; background: #12141a; margin-top: 30px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: #FFD700; }
        .security-text { font-size: 12px; color: #8a8d91; max-width: 300px; margin: 0 auto; }

        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: #12141a; display: flex; justify-content: space-around; padding: 10px 0; z-index: 1000; border-top: 1px solid #333; box-shadow: 0 -2px 10px rgba(0,0,0,0.5); }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #8a8d91; font-size: 11px; }
        .nav-item i { font-size: 20px; }
        .nav-item:nth-child(3) { color: #FFD700; position: relative; top: -5px; }
        .nav-item:nth-child(3) i { font-size: 26px; }

        footer { background: #0d0f13; padding: 40px 15px 100px; border-top: 1px solid #222; }
        .footer-contacts { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 30px; }
        .footer-contacts a { font-size: 13px; color: #FFD700; border: 1px solid #FFD700; padding: 5px 12px; border-radius: 4px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; text-align: center; margin-bottom: 30px; }
        .footer-links a { font-size: 13px; color: #8a8d91; }
        .copyright { text-align: center; font-size: 12px; color: #555; border-top: 1px solid #222; padding-top: 20px; }