.video-popup {
    display: none;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
    background-color: white;
    position: fixed;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.9);
    top: 0;
    left: 0;
}

.video-popup .video-popup-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-popup .video-popup-inner .video-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-popup .video-popup-inner iframe {
    width: clamp(300px, 60vw, 560px);
    height: clamp(250px, 35vw, 315px);
}

.video-popup .video-popup-inner > span.title {
    text-align: center;
    width: 100%;
    font-size: clamp(16px, 2vw, 40px);
    color: white;
    display: block;
    margin-bottom: 20px;
}

.video-popup .video-popup-inner > span.title > span {
    color: red;
}

.video-popup .video-popup-inner > span.close-btn {
    margin-top: 20px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    border-radius: 5px;
    justify-content: center;
    user-select: none;
    cursor: pointer;
    background-color: #0b64f0;
    color: white;
}