.bp-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: bpFadeIn 0.3s ease-out forwards;
    transition: opacity 0.3s ease;
}

.bp-popup-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 1px;
    width: 90%;
    max-width: 600px;
    border-radius: 0;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform-origin: center;
    animation: bpScaleUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    font-family: inherit;
}

.bp-popup-close {
    position: absolute;
    top: 15px;
    right: 1px;
    background: transparent;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #333;
    line-height: 1;
    width: 20px;
    margin: 0;
}


.bp-popup-body {
    line-height: 1.6;
    color: #444;
}

.bp-popup-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 0;
    border-radius: 0;
}

.bp-popup-image-link {
    display: block;
}

@keyframes bpFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes bpScaleUp {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}