* { box-sizing: border-box; margin: 0; padding: 0; }
        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; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        
        header { background: #12141a; height: 60px; display: flex; align-items: center; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #333; }
        .header-content { display: flex; justify-content: space-between; align-items: center; width: 100%; }
        .logo-area { display: flex; align-items: center; gap: 10px; }
        .logo-area img { width: 25px; height: 25px; border-radius: 5px; }
        .logo-area strong { font-size: 16px; font-weight: normal; color: #FFD700; }
        .auth-btns { display: flex; gap: 10px; }
        .btn { padding: 8px 15px; border-radius: 20px; font-size: 14px; font-weight: bold; border: none; cursor: pointer; transition: transform 0.2s; }
        .btn-login { background: transparent; color: #ffffff; border: 1px solid #FFD700; }
        .btn-register { background: linear-gradient(90deg, #FF6B35, #FF2E63); color: #fff; }
        .btn:active { transform: scale(0.95); }

        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; display: block; overflow: hidden; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-section { background: #252932; margin: 20px 0; padding: 20px; border-radius: 15px; text-align: center; border: 1px solid #FFD700; position: relative; overflow: hidden; }
        .jackpot-title { color: #FFD700; font-size: 18px; text-transform: uppercase; margin-bottom: 10px; font-weight: bold; }
        .jackpot-amount { font-size: 32px; font-weight: 800; background: linear-gradient(to bottom, #FFF, #FFD700); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-family: monospace; }

        .platform-intro { padding: 20px; background: #252932; border-radius: 15px; margin-bottom: 20px; border-left: 5px solid #FFD700; }
        .platform-intro h1 { font-size: 20px; color: #FFD700; margin-bottom: 10px; line-height: 1.3; }
        .platform-intro p { font-size: 14px; color: #ccc; }

        .section-title { font-size: 18px; margin: 25px 0 15px; color: #FFD700; display: flex; align-items: center; gap: 10px; }
        .section-title::before { content: ""; width: 4px; height: 18px; background: #FF2E63; border-radius: 2px; }

        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-bottom: 20px; }
        .game-card { background: #252932; border-radius: 12px; overflow: hidden; border: 1px solid #333; transition: transform 0.3s; }
        .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; }
        .provider-name { font-size: 12px; color: #888; }

        .payments-licenses { background: #12141a; padding: 20px; border-radius: 15px; margin-bottom: 20px; }
        .payment-icons { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; text-align: center; }
        .payment-icons i { font-size: 24px; color: #FFD700; }
        .payment-label { font-size: 10px; margin-top: 5px; display: block; }

        .guidelines-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 20px; }
        .guide-card { background: #252932; padding: 15px; border-radius: 12px; border-top: 2px solid #FF2E63; }
        .guide-card h2 { font-size: 16px; margin-bottom: 10px; color: #FFD700; }
        .guide-card p { font-size: 13px; color: #bbb; }

        .marquee-container { background: #12141a; padding: 10px 0; overflow: hidden; position: relative; margin-bottom: 20px; border-top: 1px solid #333; border-bottom: 1px solid #333; }
        .marquee-content { display: flex; animation: marquee 30s linear infinite; gap: 20px; white-space: nowrap; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .winner-tag { background: #252932; padding: 8px 15px; border-radius: 20px; border: 1px solid #444; display: flex; align-items: center; gap: 10px; font-size: 12px; }
        .winner-val { color: #00ff88; font-weight: bold; }

        .providers-wall { display: flex; wrap: wrap; gap: 10px; justify-content: center; background: #252932; padding: 20px; border-radius: 15px; margin-bottom: 20px; }
        .provider-tag { background: #1a1d24; padding: 5px 12px; border-radius: 5px; font-size: 12px; border: 1px solid #444; }

        .reviews-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 20px; }
        .review-card { background: #252932; padding: 15px; border-radius: 12px; }
        .review-user { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-user i { font-size: 20px; color: #FFD700; }
        .stars { color: #FFD700; font-size: 12px; }
        .review-date { font-size: 11px; color: #666; float: right; }
        .review-text { font-size: 13px; color: #ddd; clear: both; padding-top: 8px; }

        .faq-section { margin-bottom: 20px; }
        .faq-item { background: #252932; border-radius: 10px; margin-bottom: 10px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: bold; cursor: pointer; color: #FFD700; font-size: 14px; display: flex; justify-content: space-between; }
        .faq-answer { padding: 0 15px 15px; font-size: 13px; color: #bbb; border-top: 1px solid #333; padding-top: 10px; }

        .security-section { background: #12141a; padding: 20px; border-radius: 15px; text-align: center; border: 1px dashed #444; margin-bottom: 20px; }
        .security-badges { display: flex; justify-content: center; gap: 15px; margin-bottom: 10px; font-size: 24px; color: #888; }
        .security-text { font-size: 12px; color: #777; }

        .navigator { position: fixed; bottom: 0; left: 0; right: 0; height: 65px; background: #12141a; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #333; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 5px; color: #888; font-size: 11px; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: #FFD700; }

        footer { background: #12141a; padding: 30px 15px 100px; border-top: 1px solid #333; }
        .footer-contacts { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; wrap: wrap; }
        .footer-contacts a { font-size: 13px; color: #FFD700; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; text-align: center; }
        .footer-links a { font-size: 12px; color: #777; }
        .footer-copy { text-align: center; font-size: 11px; color: #555; border-top: 1px solid #333; padding-top: 20px; }