/* ============================================
   ALIEN-OPERATIONS.AI — Cursor Glow Effect
   Subtle green radial glow following mouse
   ============================================ */

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(57, 255, 20, 0.10) 0%,
    rgba(57, 255, 20, 0.04) 30%,
    transparent 70%
  );
  pointer-events: none;
  z-index: var(--z-cursor);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.5s ease;
  mix-blend-mode: screen;
}

.cursor-glow.active {
  opacity: 1;
}

/* Hide on touch devices and reduced motion */
@media (pointer: coarse) {
  .cursor-glow { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .cursor-glow { display: none; }
}
