.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  opacity: 0.5;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  display: none;
  transition: width 0.5s ease, height 0.5s ease, opacity 0.5s ease;
}

.cursor-glow.hovering {
  width: 50px;
  height: 50px;
  opacity: 1;
}

@media (hover: hover) {
  .cursor-glow {
    display: block;
  }
}
