.glow {
  box-shadow: 0 0 25px rgba(0, 246, 255, 0.15);
  transition: box-shadow 0.3s ease;
}

.glow:hover {
  box-shadow: 0 0 40px rgba(255, 60, 172, 0.35);
}

.scanlines::before {
  content: "";
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0.02),
    rgba(255,255,255,0.02) 1px,
    transparent 1px,
    transparent 3px
  );
  pointer-events: none;
  z-index: 999;
}
