/* Кастомный курсор: инверсия-линза. Только при pointer: fine. */

html.cursorfx-hide-native,
html.cursorfx-hide-native * {
  cursor: none !important;
}

html.cursorfx-hide-native input,
html.cursorfx-hide-native textarea,
html.cursorfx-hide-native select {
  cursor: auto !important;
}

.cursorfx {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  overflow: hidden;
}

.cursorfx--hidden {
  opacity: 0;
}

/* Круг-линза в body (root-обёртка изолировала бы эффект от страницы). */
.cursorfx-blend-lens {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 28px;
  height: 28px;
  margin: -14px 0 0 -14px;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
  transition: opacity 150ms ease;
  backdrop-filter: invert(1);
  -webkit-backdrop-filter: invert(1);
}
