.movies-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    border-bottom: 2px solid #eee;
}

.movies-tab-btn {
    font-family: "paralucent", sans-serif;
    background: none;
    border: none;
    padding: 10px 20px;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    color: #666;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition:
        color 0.2s,
        border-color 0.2s;
}

.movies-tab-btn.active {
    color: #ea5a2d;
    border-bottom-color: #ea5a2d;
}

.movies-tab-content {
    display: none;
}

.movies-tab-content.active {
    display: block;
}

/* Popup */
#movie-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 100000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

#movie-popup-box {
    background: #fff;
    width: 80vw;
    max-height: 85vh;
    border-radius: 8px;
    position: relative;
    padding: 10px;
    overflow-y: scroll;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#movie-popup-close {
    position: absolute;
    top: 12px;
    right: 18px;
    cursor: pointer;
    font-size: 40px;
    line-height: 1;
    color: #888;
    z-index: 1;
}

#movie-popup-close:hover {
    color: #111;
}
