/* Custom cursor ring (hidden on coarse pointers via responsive.css) */

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: var(--z-cursor);
  border: 2px solid #fff;
  opacity: 0;
  transition:
    opacity 0.2s ease,
    width 0.25s ease,
    height 0.25s ease,
    background 0.25s ease,
    transform 0.08s linear;
}

.custom-cursor.visible {
  opacity: 1;
}

.custom-cursor.active {
  width: 90px;
  height: 90px;
}

.custom-cursor.invert {
  mix-blend-mode: difference;
  background: #fff;
}
