.cursor-dots-ambient {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 80;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cursor-dots-ambient.is-visible {
  opacity: 1;
}

.cursor-dots-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 5px;
  height: 5px;
  margin: -2.5px 0 0 -2.5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  pointer-events: none;
  z-index: 81;
  opacity: 0;
  transition: opacity 0.25s ease, background 0.25s ease;
  will-change: transform;
}

.cursor-dots-follower.is-visible {
  opacity: 1;
}

@media (pointer: coarse), (prefers-reduced-motion: reduce) {
  .cursor-dots-ambient,
  .cursor-dots-follower {
    display: none;
  }
}
