.magic-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2; /* BELOW overlay */
  overflow: hidden;
  transform: none;
}

.magic-layer .star {
  position: absolute;
  width: 4px;
  height: 4px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 8px white;
  animation: twinkle 2s infinite ease-in-out;
}

.magic-layer .glyph {
  position: absolute;
  font-size: 18px;
  max-width: 24px;
  max-height: 24px;
  line-height: 1;
  overflow: hidden;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 0 10px #ff9cff, 0 0 18px #ffbfff;
  animation: floatGlyph 12s infinite ease-in-out;
}
