.iyssoft-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.58);
    opacity: 0;
    transition: opacity 180ms ease;
    box-sizing: border-box;
}

.iyssoft-popup-overlay.is-open {
    opacity: 1;
}

.iyssoft-popup-dialog {
    position: relative;
    width: 100%;
    border-radius: 8px;
    padding: 30px 38px 26px;
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.28);
    text-align: center;
    transform: translateY(12px) scale(0.985);
    transition: transform 180ms ease;
    box-sizing: border-box;
}

.iyssoft-popup-overlay.is-open .iyssoft-popup-dialog {
    transform: translateY(0) scale(1);
}

.iyssoft-popup-close {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 50%;
    background: #ffffff;
    color: #222222;
    font-size: 24px;
    line-height: 30px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.25);
    padding: 0;
}

.iyssoft-popup-close:hover,
.iyssoft-popup-close:focus {
    background: #f6f6f6;
    outline: none;
}

.iyssoft-popup-logo-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}

.iyssoft-popup-logo {
    max-width: 155px;
    max-height: 54px;
    object-fit: contain;
}

.iyssoft-popup-content {
    font-size: 25px;
    line-height: 1.22;
    font-weight: 500;
}

.iyssoft-popup-content p {
    margin: 0 0 18px;
}

.iyssoft-popup-content p:last-child {
    margin-bottom: 0;
}

.iyssoft-popup-content strong {
    font-weight: 700;
}

.iyssoft-popup-never-again {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.2;
    cursor: pointer;
    user-select: none;
}

.iyssoft-popup-never-again input {
    width: 16px;
    height: 16px;
    margin: 0;
}

@media (max-width: 767px) {
    .iyssoft-popup-overlay {
        padding: 18px;
    }

    .iyssoft-popup-dialog {
        padding: 28px 20px 22px;
    }

    .iyssoft-popup-close {
        top: -12px;
        right: -12px;
    }

    .iyssoft-popup-content {
        font-size: 19px;
        line-height: 1.28;
    }
}
