/* Particle burst effect for copy button
 * Include this file to enable particle animation on copy
 */

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: #8b5cf6;
  border-radius: 50%;
  pointer-events: none;
  animation: particle-burst 0.8s ease-out forwards;
}

@keyframes particle-burst {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(var(--tx), var(--ty)) scale(0);
    opacity: 0;
  }
}
