* { 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; overflow-x: hidden; 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 #2c313a; display: flex; justify-content: space-between; align-items: center; }
        .logo-container { display: flex; align-items: center; gap: 8px; }
        .logo-container img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-container strong { font-size: 16px; font-weight: normal; color: #FFD700; text-transform: uppercase; letter-spacing: 1px; }
        .auth-buttons { display: flex; gap: 10px; }
        .btn { padding: 8px 15px; border-radius: 20px; font-size: 13px; font-weight: bold; cursor: pointer; border: none; transition: transform 0.2s; }
        .btn-login { background: transparent; color: #ffffff; border: 1px solid #FFD700; }
        .btn-register { background: linear-gradient(45deg, #FF6B35, #FF2E63); color: #ffffff; }
        .btn:active { transform: scale(0.95); }

        .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, #2c313a 0%, #1a1d24 100%); margin: 15px; padding: 20px; border-radius: 15px; border: 1px solid #FFD700; text-align: center; }
        .jackpot-label { color: #FFD700; font-size: 14px; font-weight: bold; text-transform: uppercase; margin-bottom: 5px; display: block; }
        .jackpot-amount { font-size: 32px; font-weight: 800; background: linear-gradient(to bottom, #FFD700, #b8860b); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-family: monospace; }

        .intro-card { margin: 15px; padding: 20px; background: #242933; border-radius: 15px; border-left: 4px solid #FFD700; }
        .intro-card h1 { font-size: 20px; color: #FFD700; margin-bottom: 10px; }
        .intro-card p { font-size: 14px; color: #b0b3b8; }

        .section-title { padding: 0 15px; margin-top: 25px; margin-bottom: 15px; border-left: 4px solid #FF2E63; margin-left: 15px; font-size: 18px; text-transform: uppercase; }

        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: #242933; border-radius: 12px; overflow: hidden; display: block; border: 1px solid #2c313a; transition: 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: 13px; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #fff; }
        .game-info p { font-size: 11px; color: #FFD700; }

        .payment-licence { background: #111419; margin: 25px 0; padding: 20px 15px; text-align: center; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; align-items: center; justify-items: center; opacity: 0.8; }
        .payment-grid i { font-size: 30px; color: #b0b3b8; }

        .pautas-section { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; margin: 25px 0; }
        .pauta-item { background: #242933; padding: 15px; border-radius: 12px; font-size: 14px; border: 1px solid #2c313a; }
        .pauta-item h2 { font-size: 16px; color: #FFD700; margin-bottom: 8px; }

        .winners-marquee { background: #111419; padding: 10px 0; overflow: hidden; white-space: nowrap; margin: 20px 0; position: relative; }
        .marquee-content { display: inline-block; animation: marquee 30s linear infinite; }
        .winner-tag { display: inline-flex; align-items: center; background: #242933; padding: 5px 15px; border-radius: 20px; margin-right: 15px; border: 1px solid #FFD700; font-size: 12px; }
        .winner-tag strong { color: #FFD700; margin: 0 5px; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        .providers-wall { padding: 20px 15px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; background: #111419; }
        .provider-name { background: #2c313a; padding: 5px 12px; border-radius: 4px; font-size: 12px; color: #FFD700; border: 1px solid #3d4451; }

        .reviews-section { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; }
        .review-card { background: #242933; padding: 15px; border-radius: 15px; position: relative; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: #FFD700; }
        .review-name { font-weight: bold; font-size: 14px; }
        .review-stars { color: #FFD700; font-size: 12px; }
        .review-date { font-size: 11px; color: #888; margin-top: 4px; }
        .review-content { font-size: 13px; color: #b0b3b8; }

        .faq-section { padding: 20px 15px; }
        .faq-item { background: #242933; margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: bold; color: #FFD700; font-size: 15px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 0 15px 15px; font-size: 14px; color: #b0b3b8; }

        .security-section { background: #111419; margin: 25px 15px; padding: 20px; border-radius: 15px; text-align: center; border: 1px dashed #FF2E63; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: #FF2E63; }
        .security-text { font-size: 12px; color: #b0b3b8; }

        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #111419; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2c313a; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #b0b3b8; font-size: 11px; }
        .nav-item i { font-size: 18px; }
        .nav-item:nth-child(3) { color: #FFD700; transform: translateY(-5px); }

        footer { background: #0b0d11; padding: 30px 15px 100px; color: #888; font-size: 13px; }
        .footer-contacts { display: flex; flex-wrap: wrap; gap: 15px; margin-bottom: 20px; border-bottom: 1px solid #2c313a; padding-bottom: 15px; }
        .footer-contacts a { color: #FFD700; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; }
        .footer-copy { text-align: center; font-size: 12px; margin-top: 20px; }