/* Necromancer selected-state effect fix
   Keep the effect visible, but render it like a blue magical glow
   instead of a dark/black overlay. */

.lod-character-necromancer.is-selected .lod-main{
  position: relative;
  z-index: 2;
}

.lod-character-necromancer.is-selected .lod-fx{
  display: block !important;
  visibility: visible !important;
  opacity: 0.95 !important;
  z-index: 1;

  /* This is the key part */
  mix-blend-mode: screen;

  /* Slight blue/glow tuning */
  filter:
    brightness(1.18)
    saturate(1.22)
    contrast(1.04)
    drop-shadow(0 0 4px rgba(91, 153, 255, 0.42));

  image-rendering: pixelated;
  pointer-events: none;
}
