
    /* ==========================================================================
       FONDO NEGRO GLOBAL SEGURO (Mantiene el scroll y no rompe tus bloques)
       ========================================================================== */
    html, body {
        background-color: #000000 !important; /* Fuerza el fondo a negro total */
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        min-height: 100vh !important; /* Permite que el fondo crezca infinitamente si bajas en la página */
        overflow-y: auto !important;   /* Garantiza que el scroll vertical siga activo y libre */
    }
