#popupContainer {
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hide Popup on Mobile Devices */
@media (max-width: 768px) {
    #popupContainer {
        display: none !important;
    }
}
