* { margin: 0; padding: 0; box-sizing: border-box; }
        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; }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }

        header { background: #11141a; padding: 10px 15px; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2a2e38; }
        .header-container { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; }
        .logo-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-box strong { font-size: 16px; font-weight: normal; color: #FFD700; }
        .auth-buttons { display: flex; gap: 10px; }
        .btn-login { padding: 6px 15px; border-radius: 20px; border: 1px solid #FFD700; color: #FFD700; font-size: 14px; font-weight: 600; cursor: pointer; background: transparent; transition: 0.3s; }
        .btn-register { padding: 7px 16px; border-radius: 20px; border: none; color: #ffffff; font-size: 14px; font-weight: 600; cursor: pointer; background: linear-gradient(to right, #FF6B35, #FF2E63); transition: 0.3s; }

        .banner-section { width: 100%; cursor: pointer; }
        .banner-section img { width: 100%; aspect-ratio: 2/1; object-fit: cover; }

        .jackpot-container { background: #252a34; margin: 15px; padding: 15px; border-radius: 12px; border: 1px solid #FFD700; text-align: center; }
        .jackpot-label { font-size: 14px; color: #FFD700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; font-weight: bold; }
        #jackpot-amount { font-size: 28px; font-weight: 900; color: #ffffff; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); font-family: 'Courier New', Courier, monospace; }

        .intro-card { background: #252a34; margin: 15px; padding: 20px; border-radius: 15px; box-shadow: 0 4px 15px rgba(0,0,0,0.3); }
        .intro-card h1 { font-size: 18px; color: #FFD700; margin-bottom: 10px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #b0b3b8; }

        .section-header { padding: 0 15px; margin: 20px 0 10px; display: flex; align-items: center; gap: 10px; }
        .section-header h2 { font-size: 18px; color: #FFD700; border-left: 4px solid #FF2E63; padding-left: 10px; }

        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: #252a34; border-radius: 12px; overflow: hidden; transition: transform 0.2s; position: relative; }
        .game-card:hover { transform: translateY(-5px); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-info { padding: 8px; text-align: center; }
        .game-info h3 { font-size: 13px; color: #ffffff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 2px; }
        .game-info span { font-size: 11px; color: #888e9b; }

        .payment-section { background: #11141a; margin: 20px 0; padding: 20px 15px; }
        .badge-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; opacity: 0.7; }
        .badge-grid i { font-size: 30px; color: #b0b3b8; }
        .badge-item { display: flex; flex-direction: column; align-items: center; width: 60px; }
        .badge-item span { font-size: 10px; margin-top: 5px; text-align: center; }

        .guideline-section { padding: 0 15px; }
        .guideline-card { background: #252a34; padding: 15px; border-radius: 12px; margin-bottom: 12px; }
        .guideline-card h3 { font-size: 16px; color: #FFD700; margin-bottom: 8px; }
        .guideline-card p { font-size: 13px; color: #b0b3b8; }

        .marquee-container { background: #11141a; padding: 10px 0; margin: 20px 0; overflow: hidden; border-top: 1px solid #2a2e38; border-bottom: 1px solid #2a2e38; }
        .marquee-content { display: flex; animation: marquee 40s linear infinite; gap: 30px; width: max-content; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .winner-item { display: flex; align-items: center; gap: 10px; background: #252a34; padding: 5px 15px; border-radius: 30px; font-size: 12px; }
        .winner-amount { color: #FFD700; font-weight: bold; }

        .providers-wall { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; padding: 15px; background: #11141a; margin: 20px 0; }
        .provider-tag { background: #252a34; padding: 5px 12px; border-radius: 5px; font-size: 12px; color: #FFD700; border: 1px solid #3a3f4b; }

        .comment-grid { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; }
        .comment-card { background: #252a34; padding: 15px; border-radius: 12px; border-left: 3px solid #FF2E63; }
        .comment-user { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
        .user-meta { display: flex; align-items: center; gap: 10px; }
        .user-meta i { font-size: 20px; color: #FFD700; }
        .star-rating { color: #FFD700; font-size: 12px; }
        .comment-text { font-size: 13px; color: #b0b3b8; font-style: italic; }
        .comment-date { font-size: 11px; color: #666; margin-top: 5px; text-align: right; }

        .faq-section { padding: 0 15px; margin-bottom: 20px; }
        .faq-item { background: #252a34; margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 12px 15px; cursor: pointer; font-size: 14px; font-weight: 600; color: #FFD700; border-bottom: 1px solid #1a1d24; display: flex; justify-content: space-between; }
        .faq-answer { padding: 12px 15px; font-size: 13px; color: #b0b3b8; }

        .security-section { padding: 20px 15px; text-align: center; background: #11141a; border-radius: 15px; margin: 15px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 10px; font-size: 24px; color: #FFD700; }
        .security-text { font-size: 12px; color: #888e9b; }

        .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 #2a2e38; z-index: 2000; box-shadow: 0 -2px 10px rgba(0,0,0,0.5); }
        .nav-item { display: flex; flex-direction: column; align-items: center; color: #b0b3b8; gap: 4px; }
        .nav-item i { font-size: 20px; }
        .nav-item span { font-size: 11px; }
        .nav-item:nth-child(3) { background: linear-gradient(to bottom, #FF6B35, #FF2E63); color: #fff; width: 55px; height: 55px; border-radius: 50%; justify-content: center; margin-bottom: 25px; border: 4px solid #1a1d24; }

        footer { background: #0c0e12; padding: 30px 15px 100px; text-align: center; }
        .footer-contacts { display: flex; justify-content: center; gap: 15px; margin-bottom: 25px; flex-wrap: wrap; }
        .footer-contacts a { font-size: 13px; color: #FFD700; background: #1a1d24; padding: 5px 12px; border-radius: 15px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; }
        .footer-links a { color: #888e9b; font-size: 12px; }
        .copyright { font-size: 11px; color: #555; border-top: 1px solid #1a1d24; padding-top: 15px; }