/**
 * YouTube Video Background Plugin Styles
 * Based on yt-video-background by marcoscgdev
 * https://github.com/marcoscgdev/yt-video-background
 */
.yt-video-background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.yt-video-background-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Скрываем элементы интерфейса YouTube - верхняя часть (заголовок и кнопки поделиться) */
.yt-video-background-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: transparent;
    z-index: 10;
    pointer-events: none;
}

/* Скрываем элементы интерфейса YouTube - нижняя часть (кнопки управления) */
.yt-video-background-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 60px;
    background: transparent;
    z-index: 10;
    pointer-events: none;
}

/* Для мобильных устройств - показываем фоновое изображение вместо видео */
@media (max-width: 768px) {
    .yt-video-background-container iframe {
        display: none;
    }
}

