div.section-video-outer {
    width: 100%;
    margin: auto;
    backdrop-filter: grayscale(100%);
    background: linear-gradient(
            to bottom,
            rgba(0,0,0,0.9) 0%,
            rgba(0,0,0,1) 100%
    );
}

div.section-video-inner {
    width: 800px;
    margin: 0 auto;
    padding: 80px 160px;
    color: #ccc;
}

.video-card {
    margin-bottom: 40px;
}

.video-thumb {
    position: relative;
    width: 100%;
    height: auto;
}

.video-thumb img {
    display: block;
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    object-fit: cover;
    width: 100%;
}

.video-thumb button.video-trigger {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 0;
}

.video-thumb button.video-trigger:hover {
    opacity: 1;
    background: rgba(0,0,0,0.8);
}

.video-thumb button.video-trigger svg {
    display: block;
    width: 80px;
    height: 80px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -40px;
    margin-left: -40px;
}

.video-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.video-popup.active {
    display: block;
}

.video-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 999;
}

.video-popup-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: 5% auto;
    z-index: 10000;
}

button.video-popup-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
    line-height: 1;
}

button.video-popup-close:hover {
    color: red;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: black;
}

.video-container #player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}