body.admin-bar .mistic-popup-overlay {
    top: var(--wp-admin--admin-bar--height, 32px);
}
@media screen and (max-width: 782px) {
    body.admin-bar .mistic-popup-overlay {
        top: 46px;
    }
}

.mistic-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 20, 26, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.mistic-popup-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mistic-popup-container {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 30px;
    max-width: 550px;
    width: 90%;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transform: scale(0.95);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    color: #ffffff;
    position: relative;
}

.mistic-popup-overlay.active .mistic-popup-container {
    transform: scale(1);
}

.mistic-popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 28px;
    cursor: pointer;
    transition: color 0.3s;
}

.mistic-popup-close:hover {
    color: #ffffff;
}

.mistic-popup-content img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.mistic-popup-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin: 0 0 15px 0;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.mistic-popup-content p {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}
