.cookie-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.cookie {
    position: absolute;
    width: 40px;
    height: 40px;
    background-image: url('../imgs/cookie.svg');
    background-size: contain;
    background-repeat: no-repeat;
    animation: fall linear infinite;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.3));
}

@keyframes fall {
    0% {
        transform: translateY(-100px) rotate(0deg) scale(0.8);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(calc(100vh + 100px)) rotate(360deg) scale(1.2);
        opacity: 0;
    }
} 