﻿.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 20px;
}

.popup-img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.popup-box {
    position: relative;
    width: 100%;
    max-width: 1080px;
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    text-align: center;
    animation: popupFade 0.3s ease;
}

    .popup-box h2 {
        margin: 0 0 12px;
        font-size: 28px;
    }

    .popup-box p {
        margin: 0 0 20px;
        font-size: 16px;
        line-height: 1.6;
        color: #444;
    }

.popup-button {
    display: inline-block;
    padding: 12px 22px;
    background: #1f5eff;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
}

    .popup-button:hover {
        opacity: 0.9;
    }

.popup-close {
    position: absolute;
    top: 10px;
    right: 12px;
    border: none;
    background: none;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
}

@keyframes popupFade {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.desktop-banner {
    display: block;
}

.mobile-banner {
    display: none;
}
