/* Custom Cursor Styling */

html, body, #app, a, button { cursor: none !important; }

#cursor-dot {
  position: fixed;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #8fbcbb;
  animation: cw-hue-spin 3s linear infinite;
  pointer-events: none;
  z-index: 999999;
  transform: translate(-50%, -50%);
  will-change: left, top;
  opacity: 0;
  transition: opacity 0.15s, width 0.12s ease, height 0.12s ease;
}
#cursor-dot.hovering { opacity: 0; }

#cursor-hand {
  position: fixed;
  pointer-events: none;
  z-index: 999999;
  width: 22px; height: 22px;
  opacity: 0;
  transform: translate(-4px, -4px);
  will-change: left, top;
  animation: cw-hue-spin 3s linear infinite;
  transition: opacity 0.15s;
  filter: hue-rotate(0deg);
}
#cursor-hand.visible { opacity: 1; }

#cursor-tooltip {
  position: fixed;
  pointer-events: none;
  z-index: 1000000;
  background: rgba(10,14,26,0.92);
  color: #e8eaf0;
  font-size: 0.75rem;
  font-family: inherit;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.13);
  box-shadow: 0 4px 16px rgba(0,0,0,0.45);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.15s, transform 0.15s;
  backdrop-filter: blur(8px);
}
#cursor-tooltip.visible {
  opacity: 1;
  transform: translateY(0);
}
