:root {
            --primario-oro: #D4AF37;
            --primario-brillante: #FFD700;
            --secundario-verde: #008542;
            --acento-rojo: #E31A22;
            --fondo-principal: #0B0E11;
            --fondo-superficie: #15191E;
            --fondo-tarjeta: #1E2329;
            --texto-primario: #FFFFFF;
            --texto-secundario: #B7BDC6;
            --exito: #0ECB81;
            --borde-sutil: #2B3139;
            --font-titulos: 'Montserrat', 'Inter', system-ui, sans-serif;
            --font-cuerpo: 'Roboto', 'Inter', system-ui, sans-serif;
            --font-numerica: 'Oswald', sans-serif;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { background-color: var(--fondo-principal); color: var(--texto-primario); font-family: var(--font-cuerpo); line-height: 1.5; overflow-x: hidden; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        img { max-width: 100%; height: auto; display: block; }

        header { background-color: var(--fondo-superficie); height: 60px; display: flex; align-items: center; justify-content: space-between; padding: 0 15px; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid var(--borde-sutil); }
        header .brand { display: flex; align-items: center; gap: 8px; }
        header .brand img { width: 25px; height: 25px; border-radius: 4px; }
        header .brand strong { font-size: 16px; font-weight: 500; font-family: var(--font-titulos); color: var(--primario-oro); }
        header .actions { display: flex; gap: 10px; }
        header .actions button { padding: 6px 12px; border-radius: 4px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: 0.3s; }
        header .btn-login { background: transparent; color: var(--texto-primario); border: 1px solid var(--borde-sutil); }
        header .btn-register { background: var(--primario-oro); color: #000; }

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

        .jackpot-container { background: linear-gradient(135deg, #1e2329 0%, #0b0e11 100%); margin: 15px; padding: 20px; border-radius: 12px; border: 1px solid var(--primario-oro); text-align: center; box-shadow: 0 0 20px rgba(212, 175, 55, 0.2); }
        .jackpot-title { font-family: var(--font-titulos); color: var(--primario-oro); font-size: 14px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
        .jackpot-amount { font-family: var(--font-numerica); font-size: 32px; color: var(--primario-brillante); font-weight: 700; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }

        .intro-card { padding: 20px; margin: 15px; background: var(--fondo-tarjeta); border-radius: 12px; }
        .intro-card h1 { font-family: var(--font-titulos); font-size: 24px; color: var(--primario-oro); margin-bottom: 15px; line-height: 1.2; }
        .intro-card p { color: var(--texto-secundario); font-size: 15px; }

        .section-title { font-family: var(--font-titulos); font-size: 20px; padding: 0 15px; margin: 20px 0 10px; display: flex; align-items: center; gap: 10px; }
        .section-title::before { content: ''; width: 4px; height: 20px; background: var(--primario-oro); border-radius: 2px; }

        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 15px; }
        .game-card { background: var(--fondo-tarjeta); border-radius: 8px; overflow: hidden; border: 1px solid var(--borde-sutil); }
        .game-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
        .game-card h3 { font-size: 13px; padding: 8px; text-align: center; color: var(--texto-secundario); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 500; }

        .payments-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 15px; }
        .payment-item { background: var(--fondo-superficie); padding: 10px; border-radius: 8px; display: flex; flex-direction: column; align-items: center; gap: 5px; font-size: 10px; color: var(--texto-secundario); border: 1px solid var(--borde-sutil); }
        .payment-item i { font-size: 18px; color: var(--primario-oro); }

        .guide-section { padding: 15px; }
        .guide-card { background: var(--fondo-tarjeta); padding: 15px; border-radius: 10px; margin-bottom: 15px; border-left: 3px solid var(--secundario-verde); }
        .guide-card h2 { font-size: 18px; margin-bottom: 10px; color: var(--primario-oro); }
        .guide-card p { font-size: 14px; color: var(--texto-secundario); }

        .lottery-ticker { background: #000; padding: 10px 0; overflow: hidden; white-space: nowrap; margin: 20px 0; border-top: 1px solid var(--borde-sutil); border-bottom: 1px solid var(--borde-sutil); }
        .ticker-track { display: inline-block; animation: scroll-left 40s linear infinite; }
        .ticker-item { display: inline-flex; align-items: center; gap: 8px; padding: 0 20px; border-right: 1px solid var(--borde-sutil); font-size: 12px; }
        .ticker-item span { color: var(--exito); font-weight: bold; }

        .providers-mural { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 15px; }
        .provider-block { padding: 15px; border-radius: 8px; text-align: center; font-weight: bold; font-family: var(--font-titulos); }
        .provider-block.gold { background: var(--primario-oro); color: #000; }
        .provider-block.green { background: var(--secundario-verde); color: #fff; }

        .review-card { background: var(--fondo-tarjeta); padding: 15px; border-radius: 12px; margin: 15px; border: 1px solid var(--borde-sutil); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: var(--primario-oro); }
        .review-info h3 { font-size: 14px; color: var(--texto-primario); }
        .stars { color: #FFD700; font-size: 12px; }
        .review-content { font-size: 13px; color: var(--texto-secundario); font-style: italic; }
        .review-date { font-size: 11px; color: var(--texto-secundario); margin-top: 8px; display: block; }

        .faq-section { padding: 15px; }
        .faq-item { background: var(--fondo-tarjeta); border-radius: 8px; margin-bottom: 10px; padding: 15px; }
        .faq-item h3 { font-size: 15px; color: var(--primario-oro); margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: var(--texto-secundario); }

        .security-section { padding: 20px; background: var(--fondo-superficie); margin: 20px 15px; border-radius: 12px; text-align: center; }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--primario-oro); }
        .security-text { font-size: 12px; color: var(--texto-secundario); }
        .age-limit { display: inline-block; border: 2px solid var(--acento-rojo); color: var(--acento-rojo); padding: 5px 10px; border-radius: 50%; font-weight: bold; margin-top: 10px; }

        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; height: 65px; background: var(--fondo-superficie); display: flex; justify-content: space-around; align-items: center; border-top: 1px solid var(--borde-sutil); z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; color: var(--texto-secundario); }
        .nav-item i { font-size: 20px; }
        .nav-item:nth-child(3) i { background: var(--primario-oro); color: #000; padding: 10px; border-radius: 50%; margin-top: -25px; box-shadow: 0 4px 10px rgba(0,0,0,0.5); }

        footer { background: var(--fondo-superficie); padding: 30px 15px; border-top: 1px solid var(--borde-sutil); }
        .footer-social { display: flex; flex-wrap: wrap; gap: 15px; margin-bottom: 25px; border-bottom: 1px solid var(--borde-sutil); padding-bottom: 15px; }
        .footer-social h4 { width: 100%; font-size: 14px; color: var(--primario-oro); margin-bottom: 10px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; }
        .footer-links a { font-size: 13px; color: var(--texto-secundario); }
        .footer-copy { text-align: center; font-size: 12px; color: var(--texto-secundario); border-top: 1px solid var(--borde-sutil); padding-top: 20px; }

        @keyframes scroll-left { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            main { max-width: 800px; margin: 0 auto; }
            header { padding: 0 20%; }
        }