.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: 10px;
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.2;
    cursor: pointer;
    user-select: none;
}

.iyssoft-popup-never-again-input {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    pointer-events: none;
}

.iyssoft-popup-never-again-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    min-width: 22px;
    border: 2px solid currentColor;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.75);
    box-sizing: border-box;
    transition: transform 120ms ease, background-color 120ms ease, border-color 120ms ease;
}

.iyssoft-popup-never-again-box::after {
    content: "";
    display: none;
    width: 6px;
    height: 11px;
    border: solid currentColor;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg) translate(-1px, -1px);
}

.iyssoft-popup-never-again-input:checked + .iyssoft-popup-never-again-box {
    background: rgba(255, 255, 255, 0.95);
}

.iyssoft-popup-never-again-input:checked + .iyssoft-popup-never-again-box::after {
    display: block;
}

.iyssoft-popup-never-again:hover .iyssoft-popup-never-again-box,
.iyssoft-popup-never-again-input:focus-visible + .iyssoft-popup-never-again-box {
    transform: scale(1.04);
}

.iyssoft-popup-never-again-text {
    font-weight: 600;
}

@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;
    }
}
