/* Cursor styles */
body.custom-cursor, body.custom-cursor * {
  cursor: none !important;
}

#cursorCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9998; /* Below intro, above everything else */
}

.cursor-ripple {
  position: fixed;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--accent);
  transform: translate(-50%, -50%) scale(1);
  pointer-events: none;
  z-index: 9997;
  animation: ripple-out 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes ripple-out {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 1;
    border-width: 4px;
  }
  100% {
    transform: translate(-50%, -50%) scale(3);
    opacity: 0;
    border-width: 1px;
  }
}
