/* Archivo específico para arreglar problemas de splash en producción */

/* Forzar fondo blanco en todas las condiciones */
html, body {
    background-color: #FFFFFF !important;
    background-image: none !important;
    background: #FFFFFF !important;
}

/* Anular cualquier media query problemática */
@media (min-width: 1200px) {
    html, body {
        background: #FFFFFF !important;
        background-image: none !important;
        background-color: #FFFFFF !important;
    }
}

/* Anular esquemas de color automáticos */
@media (prefers-color-scheme: dark) {
    html, body {
        background: #FFFFFF !important;
        background-color: #FFFFFF !important;
    }
}

@media (prefers-color-scheme: light) {
    html, body {
        background: #FFFFFF !important;
        background-color: #FFFFFF !important;
    }
}

/* Asegurar que el splash mantenga el fondo correcto */
#splash {
    background: transparent !important;
}

#splash img {
    background: transparent !important;
}