.velvet-confetti-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 9999;
}

.velvet-confetti {
  position: absolute;
  border-radius: 2px;
  opacity: 0;

  /* MÁS BRILLO */
  box-shadow:
    0 0 6px rgba(255,255,255,0.5),
    0 2px 10px rgba(158,210,243,0.3);

  background-image: linear-gradient(
    135deg,
    rgba(255,255,255,0.6),
    rgba(255,255,255,0.1)
  );

  animation: confettiFall linear forwards;
}

@keyframes confettiFall {
  0% {
    opacity: 0;
    transform: translateY(-20px) rotate(var(--r1));
  }
  10% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(110vh) translateX(var(--drift)) rotate(var(--r2));
  }
}