.food-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}

.food-particle {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #FFD580;
    border-radius: 50%;
    opacity: 0.8;
    animation: fall 15s linear infinite;
}

@keyframes fall {
    0% {
        transform: translateY(-20px) scale(0);
        opacity: 0;
    }
    50% {
        transform: translateY(100vh) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
}
