.cursor-particle-canvas {
  position: fixed;
  inset: 0;
  z-index: 99998;
  width: 100vw;
  height: 100dvh;
  pointer-events: none;
  contain: strict;
}

.custom-fuchen-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  width: 34px;
  height: 21.18px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform-origin: 0.3px 0.3px;
  will-change: transform;
  contain: layout style paint;
  transition: opacity 120ms ease-out, visibility 120ms ease-out;
}

.custom-fuchen-cursor.is-visible {
  opacity: 1;
  visibility: visible;
}

.custom-fuchen-cursor.is-selection-hidden {
  opacity: 0;
  visibility: hidden;
}

.custom-fuchen-cursor__image {
  display: block;
  width: 34px;
  height: auto;
  max-width: none;
  user-select: none;
  transform-origin: 0.3px 0.3px;
  filter: drop-shadow(0 0 3px rgba(223, 185, 104, 0.34));
  will-change: transform, filter;
  transition: filter 180ms ease-out;
}

.custom-fuchen-cursor.is-hovering .custom-fuchen-cursor__image {
  filter: brightness(1.08) drop-shadow(0 0 4px rgba(245, 217, 148, 0.48));
}

html.custom-cursor-active,
html.custom-cursor-active body,
html.custom-cursor-active a,
html.custom-cursor-active button,
html.custom-cursor-active input,
html.custom-cursor-active select,
html.custom-cursor-active textarea,
html.custom-cursor-active [role="button"],
html.custom-cursor-active [data-cursor-target="interactive"] {
  cursor: none !important;
}

html.custom-cursor-selecting,
html.custom-cursor-selecting body,
html.custom-cursor-selecting * {
  cursor: auto !important;
}

.cursor-debug-panel {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 100001;
  min-width: 250px;
  margin: 0;
  padding: 10px 12px;
  border: 1px solid rgba(223, 185, 104, 0.36);
  background: rgba(2, 6, 10, 0.82);
  color: #dfb968;
  font: 11px/1.55 Consolas, monospace;
  pointer-events: none;
}

.cursor-debug-point,
.cursor-debug-bounds {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000;
  pointer-events: none;
}

.cursor-debug-point::before,
.cursor-debug-point::after {
  position: absolute;
  content: "";
  background: currentColor;
}

.cursor-debug-point::before { width: 13px; height: 1px; transform: translate(-6px, 0); }
.cursor-debug-point::after { width: 1px; height: 13px; transform: translate(0, -6px); }
.cursor-debug-point--target { color: #ff6b6b; }
.cursor-debug-point--hotspot { color: #54e8e2; }

.cursor-debug-bounds {
  width: 34px;
  height: 21.18px;
  border: 1px dashed rgba(84, 232, 226, 0.65);
}

@media (pointer: coarse), (hover: none), (prefers-reduced-motion: reduce) {
  .custom-fuchen-cursor,
  .cursor-particle-canvas,
  .cursor-debug-panel,
  .cursor-debug-point,
  .cursor-debug-bounds {
    display: none !important;
  }

  html,
  body,
  a,
  button,
  input,
  select,
  textarea,
  [role="button"],
  [data-cursor-target="interactive"] {
    cursor: auto !important;
  }
}
