* { 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; }
        header { background: #111419; padding: 10px 15px; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #333; }
        .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; object-fit: contain; }
        .logo-box strong { font-size: 16px; font-weight: 400; color: #FFD700; }
        .auth-buttons { 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: #fff; border: 1px solid #FFD700; }
        .btn-register { background: linear-gradient(90deg, #FF6B35, #FF2E63); color: #fff; }
        .banner { width: 100%; display: block; aspect-ratio: 2 / 1; object-fit: cover; cursor: pointer; }
        .jackpot-section { background: radial-gradient(circle, #2a2e38 0%, #111419 100%); padding: 20px; text-align: center; border-bottom: 2px solid #FFD700; }
        .jackpot-title { color: #FFD700; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: bold; color: #fff; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); font-family: monospace; }
        .intro-card { padding: 20px; background: #23272f; margin: 15px; border-radius: 12px; border-left: 4px solid #FFD700; }
        .intro-card h1 { font-size: 1.4rem; color: #FFD700; margin-bottom: 10px; }
        .intro-card p { font-size: 14px; color: #ccc; }
        .section-title { padding: 0 15px; margin-top: 25px; margin-bottom: 15px; border-left: 3px solid #FF2E63; margin-left: 15px; font-size: 1.2rem; color: #FFD700; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: #23272f; border-radius: 10px; overflow: hidden; position: relative; border: 1px solid #333; }
        .game-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 13px; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #eee; }
        .game-provider { font-size: 11px; color: #FFD700; }
        .payments-section { background: #111419; padding: 25px 15px; text-align: center; margin-top: 30px; }
        .payment-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; opacity: 0.8; }
        .payment-icons i { font-size: 30px; color: #fff; }
        .guidelines { padding: 15px; }
        .guide-item { background: #23272f; padding: 15px; border-radius: 10px; margin-bottom: 15px; }
        .guide-item h2 { font-size: 1.1rem; color: #FFD700; margin-bottom: 8px; }
        .guide-item p { font-size: 13px; color: #bbb; }
        .winners-marquee { background: #000; padding: 10px 0; overflow: hidden; white-space: nowrap; margin: 20px 0; border-top: 1px solid #333; border-bottom: 1px solid #333; }
        .marquee-content { display: inline-block; animation: scroll 40s linear infinite; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .winner-tag { display: inline-block; padding: 0 20px; border-right: 1px solid #333; font-size: 12px; }
        .winner-tag span { color: #FFD700; font-weight: bold; }
        .providers-wall { padding: 20px 15px; text-align: center; color: #888; font-size: 14px; background: #111419; margin: 20px 0; line-height: 2; }
        .comments-section { padding: 15px; }
        .comment-card { background: #23272f; padding: 15px; border-radius: 10px; margin-bottom: 15px; position: relative; }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-header i { font-size: 24px; color: #FFD700; }
        .comment-user { font-size: 14px; font-weight: bold; }
        .comment-stars { color: #FFD700; font-size: 12px; }
        .comment-date { font-size: 11px; color: #666; position: absolute; top: 15px; right: 15px; }
        .comment-body { font-size: 13px; color: #ccc; font-style: italic; }
        .faq-section { padding: 15px; background: #111419; }
        .faq-item { margin-bottom: 20px; }
        .faq-item h2 { font-size: 1rem; color: #FFD700; margin-bottom: 5px; }
        .faq-item p { font-size: 13px; color: #bbb; }
        .security-footer { padding: 25px 15px; text-align: center; background: #0b0d10; border-top: 1px solid #222; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; }
        .security-icons i { font-size: 24px; color: #4CAF50; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: #111419; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #333; z-index: 1001; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 10px; color: #888; }
        .nav-item i { font-size: 18px; color: #FFD700; }
        footer { background: #111419; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #333; }
        .footer-contacts { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; margin-bottom: 20px; }
        .footer-contacts a { color: #FFD700; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 30px; }
        .footer-links a { font-size: 12px; color: #888; }
        .copyright { font-size: 11px; color: #666; }