canvas.particle-cursor {
  display: none !important;
}

.tg-pointer-field,
.tg-pointer-reticle {
  position: fixed;
  z-index: 89;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
  will-change: transform, opacity;
}

.tg-pointer-field {
  width: 520px;
  height: 520px;
  margin: -260px 0 0 -260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91, 132, 255, .064), rgba(91, 132, 255, .018) 28%, transparent 66%);
  mix-blend-mode: screen;
  transition: opacity 260ms ease;
}

.tg-pointer-reticle {
  width: 28px;
  height: 28px;
  margin: -14px 0 0 -14px;
  border: 1px solid rgba(140, 150, 165, .34);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(8, 10, 13, .35), inset 0 0 14px rgba(91, 132, 255, .045);
  transition:
    width 180ms cubic-bezier(.2, .8, .2, 1),
    height 180ms cubic-bezier(.2, .8, .2, 1),
    margin 180ms cubic-bezier(.2, .8, .2, 1),
    border-color 180ms ease,
    opacity 160ms ease;
}

.tg-pointer-reticle::before,
.tg-pointer-reticle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  background: rgba(91, 132, 255, .55);
  transform: translate(-50%, -50%);
  content: "";
}

.tg-pointer-reticle::before {
  width: 4px;
  height: 1px;
}

.tg-pointer-reticle::after {
  width: 1px;
  height: 4px;
}

.tg-pointer-field.is-visible,
.tg-pointer-reticle.is-visible {
  opacity: 1;
}

.tg-pointer-reticle.is-interactive {
  width: 42px;
  height: 42px;
  margin: -21px 0 0 -21px;
  border-color: rgba(91, 132, 255, .52);
}

.tg-pointer-reticle.is-down {
  width: 22px;
  height: 22px;
  margin: -11px 0 0 -11px;
  border-color: rgba(91, 132, 255, .72);
}

@media (pointer: coarse), (prefers-reduced-motion: reduce) {
  .tg-pointer-field,
  .tg-pointer-reticle {
    display: none;
  }
}
