/* Confetti Animation */
.confetti {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

.confetti-piece {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #ff6b6b;
    animation: confetti-fall 3s linear forwards;
}

.confetti-piece:nth-child(odd) {
    background: #4ecdc4;
    animation-delay: 0.1s;
}

.confetti-piece:nth-child(3n) {
    background: #ffd700;
    animation-delay: 0.2s;
}

.confetti-piece:nth-child(4n) {
    background: #ff8c00;
    animation-delay: 0.3s;
}

.confetti-piece:nth-child(5n) {
    background: #9c27b0;
    animation-delay: 0.4s;
}

@keyframes confetti-fall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}