/* Overlay */
.mobile-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-popup-overlay.show {
    opacity: 1;
}

/* Popup Box */
.mobile-popup {
    background: #ffffff;
    width: 90%;
    max-width: 420px;
    border-radius: 16px;
    padding: 24px 20px 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    animation: slideUp 0.4s ease;
}

/* Animation */
@keyframes slideUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Close Button */
.popup-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
    color: #999;
}

.popup-close:hover {
    color: #000;
}

/* Title */
.mobile-popup h2 {
    font-size: 20px;
    margin-bottom: 18px;
    color: #222;
}

/* App Store Links */
.link-container {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 18px;
}

.link-container img {
    width: 150px;
    max-width: 100%;
    transition: transform 0.2s ease;
}

.link-container img:hover {
    transform: scale(1.05);
}

/* Checkbox */
.dont-show {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: #555;
}

/* 📱 Below 570px → images stacked */
@media screen and (max-width: 570px) {
    .link-container {
        flex-direction: column;
        gap: 12px;
    }

    .link-container img {
        width: 180px;
        margin: 0 auto;
    }
}
