/* Custom Cursor – bubble styles + animation */

@media (prefers-reduced-motion: reduce) {
  .curseur-bulle { animation: none !important; }
}

.curseur-bulle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: bulles-fondre 2s ease-out forwards;
}

@keyframes bulles-fondre {
  to {
    transform: translate(-50%, -50%) scale(3);
    opacity: 0;
  }
}
