/* Overlay background */
#festival-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Popup content */
.fbp-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
}

/* Poster image */
.fbp-content img {
    max-width: 100%;
    max-height: 80vh;
    height: auto;
    display: block;
}

/* Close button */
#fbp-close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: red;
    cursor: pointer;
    z-index: 10000;
}
