.flex-layout.fullscreen_video-layout {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    margin-bottom: 0;
    background-color: var(--scol);
}

.flex-layout.fullscreen_video-layout::after{
    content: '';
    width: 100vw;
    height: calc(3.75 * var(--su));
    position: absolute;
    bottom: 0; left: 0;
}

.fullscreen_video-layout .fullscreen-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(
        -8.4% 0%,
        110.12% 0%,
        109.56% 94.6%,
        62.09% 93.79%,
        -8.4% 100%
    );
}

.fullscreen_video-layout .fullscreen-video-bg--iframe {
    overflow: hidden;
}

.fullscreen_video-layout .video-play-pause-btn {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    backdrop-filter: blur(4px);
    flex-shrink: 0;
}

.fullscreen_video-layout .video-play-pause-btn:hover {
    background: rgba(0, 0, 0, 0.55);
    transform: scale(1.1);
}

.fullscreen_video-layout .video-play-pause-btn svg {
    width: 22px;
    height: 22px;
}

.fullscreen_video-layout .video-play-pause-btn .icon-play {
    display: none;
}

.fullscreen_video-layout.is-paused .video-play-pause-btn .icon-play {
    display: block;
}

.fullscreen_video-layout.is-paused .video-play-pause-btn .icon-pause {
    display: none;
}

/*
.fullscreen_video-layout .fullscreen-video-bg--iframe iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.3);
    width: 100%;
    min-width: 100%;
    min-height: 100%;
    border: none;
    pointer-events: none;
}
*/
