/* Advertisement Styles */

/* Footer Advertisement Hover Effects */
.footer-ad-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15) !important;
}

.footer-ad-item {
    cursor: pointer;
}

/* Popup Advertisement Styles */
.popup-ad-overlay {
    backdrop-filter: blur(2px);
}

.popup-ad-modal {
    animation: fadeInScale 0.3s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Advertisement Styles */
@media (max-width: 768px) {
    .footer-ads .footer-ad-item {
        max-width: 280px;
        margin: 0 auto;
    }

    .popup-ad-modal {
        margin: 20px;
        max-width: calc(100% - 40px);
    }
}

@media (max-width: 480px) {
    .footer-ads .footer-ad-item {
        max-width: 100%;
        margin: 0 10px;
    }

    .popup-ad-modal {
        margin: 10px;
        max-width: calc(100% - 20px);
    }
}