/* Container for confetti particles */
.confetti-container {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
}

/* Individual confetti piece */
.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    animation: confettiBurst 1s ease-out backwards;
    opacity: 0.5;
    transform-origin: center;
}

/* Animation for confetti burst */
@keyframes confettiBurst {
    0% {
        transform: scale(0) translate(0, 0);
        opacity: 1;
    }
    50% {
        transform: scale(1.2) translate(var(--move-x), var(--move-y));
        opacity: 0.1;
    }
    100% {
        transform: scale(0.5) translate(var(--move-x), var(--move-y));
        opacity: 0;
    }
}