/* Container styling */
.falling-petals-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 100;
}

/* Base petal styling */
.petal {
    position: absolute;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    background: linear-gradient(to right, #ff99cc, #ff66b3);
    animation: fall linear infinite;
    opacity: 0.8;
}

/* Animation keyframes */
@keyframes fall {
    0% {
        transform: translateY(-20px) rotate(0deg);
        opacity: 0.8;
    }
    100% {
        transform: translateY(120vh) rotate(360deg);
        opacity: 0;
    }
}