.cursor-dot {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition:
    opacity 0.3s ease-in-out,
    transform 0.3s ease-in-out;
}
.cursor-dot {
  width: 12px;
  height: 12px;
  background-color: red;
  z-index: 99;
}
.no-cursor {
  cursor: none !important;
}

.no-cursor * {
  cursor: none !important;
}

.pointer-trail {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 98;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}
