/* celebrations.css - Styles for celebration effects */

/* Confetti container */
#confetti-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

/* Celebration effects container */
.fc-celebration-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
}

/* Balloon styles */
.fc-balloon {
    position: absolute;
    width: 40px;
    height: 50px;
    border-radius: 50%;
    animation: floatUp 8s ease-in forwards;
    pointer-events: none;
    z-index: 9999;
}

.fc-balloon::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 20px;
    background: rgba(255, 255, 255, 0.5);
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(100px) rotate(180deg);
        opacity: 0;
    }
}

/* Sparkle styles */
.fc-sparkle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: gold;
    border-radius: 50%;
    animation: sparkle 2s ease-out forwards;
    pointer-events: none;
    z-index: 9999;
}

@keyframes sparkle {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: scale(1) rotate(180deg);
        opacity: 1;
    }
    100% {
        transform: scale(0) rotate(360deg);
        opacity: 0;
    }
}

/* Heart styles */
.fc-heart {
    position: absolute;
    font-size: 24px;
    animation: fallHeart 6s linear forwards;
    pointer-events: none;
    z-index: 9999;
    color: #ff6b6b;
}

@keyframes fallHeart {
    0% {
        transform: translateY(-50px) translateX(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) translateX(50px) rotate(360deg);
        opacity: 0;
    }
}

/* Money styles */
.fc-money {
    position: absolute;
    font-size: 20px;
    animation: fallMoney 5s linear forwards;
    pointer-events: none;
    z-index: 9999;
    color: #27ae60;
    font-weight: bold;
}

@keyframes fallMoney {
    0% {
        transform: translateY(-50px) translateX(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) translateX(-50px) rotate(360deg);
        opacity: 0;
    }
}