/* Layout pantalla completa absoluto */
.repro-fullscreen-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 999999;
    overflow-y: auto;
}

.repro-overlay {
    width: 100%;
    min-height: 100vh;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Tarjeta contenedora estilo neumórfico/moderno */
.repro-card {
    background: rgba(255, 255, 255, 0.98) !important;
    border-radius: 20px !important;
    max-width: 550px;
    width: 100%;
}

.repro-banner {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
}

/* Animación de entrada suave */
.animate-fade-in {
    animation: reproFade 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes reproFade {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ESTILO OCULTO PARA EL HONEYPOT ANTI-SPAM (Los humanos no lo ven ni lo indexan, los bots sí) */
.repro-el-trampa {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    position: absolute !important;
    left: -9999px !important;
}