/* Site-wide cursor flair: a glowing ring trailing the ALWAYS-visible native cursor.
   Portiert aus website-quoro-ai/app/globals.css + components/SiteCursor.tsx. */
.q-cur-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid rgba(156, 147, 245, 0.75);
  box-shadow: 0 0 12px 0 rgba(156, 147, 245, 0.4), inset 0 0 6px 0 rgba(156, 147, 245, 0.2);
  pointer-events: none;
  z-index: 99999;
  opacity: 0;
  will-change: transform, opacity;
  transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease, background 0.2s ease, opacity 0.3s ease;
}
.q-cur-ring.is-big {
  width: 56px;
  height: 56px;
  border-color: rgba(155, 230, 0, 0.85);
  background: rgba(155, 230, 0, 0.08);
}
.q-cur-ring.is-down {
  width: 20px;
  height: 20px;
}
.q-cur-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9c93f5;
  box-shadow: 0 0 8px 1px rgba(156, 147, 245, 0.9);
  pointer-events: none;
  z-index: 100000;
  opacity: 0;
  will-change: transform;
}
/* hide native cursor only while the custom cursor is active (added from JS) */
html.q-cursor-on,
html.q-cursor-on * {
  cursor: none !important;
}
html.q-cursor-on input,
html.q-cursor-on textarea,
html.q-cursor-on [contenteditable="true"] {
  cursor: text !important;
}
