/* Cursor dog — small smooth dog that chases the mouse cursor */

#cursor-dog {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.22));
  will-change: transform;
}

#cursor-dog.dog-visible {
  opacity: 1;
}

@media print {
  #cursor-dog {
    display: none;
  }
}
