.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  border: 1px solid #000F14;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2147483647;
  opacity: 0;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  transition:
    width 220ms ease,
    height 220ms ease,
    border-width 220ms ease,
    opacity 220ms ease;
}

.custom-cursor::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  background: #FF6E35;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.custom-cursor.is-visible {
  opacity: 1;
}

.custom-cursor.is-hovering {
  width: 42px;
  height: 42px;
  border-width: 3px;
}

body.custom-cursor-enabled,
body.custom-cursor-enabled a,
body.custom-cursor-enabled button,
body.custom-cursor-enabled input,
body.custom-cursor-enabled select,
body.custom-cursor-enabled textarea,
body.custom-cursor-enabled [role="button"] {
  cursor: none !important;
}

@media (pointer: coarse) {
  .custom-cursor {
    display: none;
  }

  body.custom-cursor-enabled,
  body.custom-cursor-enabled a,
  body.custom-cursor-enabled button,
  body.custom-cursor-enabled input,
  body.custom-cursor-enabled select,
  body.custom-cursor-enabled textarea,
  body.custom-cursor-enabled [role="button"] {
    cursor: auto !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .custom-cursor {
    transition: none;
  }
}