/**
 * Кастомный курсор rm-cursor: 3 режима.
 * Системный курсор всегда виден (cursor: none не используем).
 * - По умолчанию: чёрный кружок, mix-blend-mode: normal.
 * - На контенте [data-cursor="blend"]: белый + mix-blend-mode: difference.
 * - На кнопках/ссылках: blend + размер 50px (.is-button).
 */

.rm-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #000;
  mix-blend-mode: normal;
  transform-origin: center;
  transition: width 0.2s ease, height 0.2s ease, background 0.2s ease, mix-blend-mode 0.2s ease;
}

.rm-cursor.is-blend {
  background: #fff;
  mix-blend-mode: difference;
}

.rm-cursor.is-button {
  width: 50px;
  height: 50px;
}

@media (pointer: coarse) {
  .rm-cursor {
    display: none !important;
  }
}
