Okay, okay. I'll stop after this. But each new image is more exciting than the last. Like the image above, this one has two layers put together with ImageCompose. The bottom layer is made by the resource function MandelbrotSetRemap with a custom mapping function based on standard deviation. The variety of custom mappings seems boundless when you look at all the Wolfram functions for lists and numbers. The top layer uses the default mapping in MandelbrotSetRemap, but the color function has transparency to let the bottom layer through.

Here's the code. Be patient, custom mapping functions take a lot of time to render and this code renders at a very large scale and then shrinks the image to avoid the jaggies:
msr = ResourceFunction["MandelbrotSetRemap"];
myMapping1 =
Function[{c, center, corner, maxIterations}, Module[{list},
list = NestWhileList[#^2 + c &, 0, Abs[#] <= 4 &, 1, maxIterations];
Total[Arg[list]] * StandardDeviation[list]]
];
img1 = msr[-.875 + .256 I, 78, MaxIterations -> 32, "MappingFunction" -> myMapping1,
ColorFunction -> ColorData[{"PlumColors", "Reversed"}], ImageSize -> 2400];
colFn = (Blend[{{0, Transparent}, {.25, Transparent}, {.45, Black}, {.97, LightPurple}, {1, Darker[Blue, .8]}}, #1] &);
img2 = msr[-.875 + .256 I, 78, MaxIterations -> 72, ColorFunction -> colFn, ImageSize -> 2400];
ImageResize[ImageCompose[img1, img2], 600]