:root {
    --plyr-font-family: sans-serif;
}

*, *::before, *::after {
    margin: 0; padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%; height: 100dvh;
    background: #000;
    overflow: hidden;
    font-family: sans-serif;
}

.player-wrap {
    width: 100%;
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Plyr-контейнер растягивается на весь экран */
.player-wrap .plyr {
    width: 100%;
    height: 100%;
}

.player-wrap .plyr video {
    width: 100%;
    height: 100%;
    object-fit: contain;   /* fill / contain / cover */
}

.plyr__control--overlaid,
.plyr--video .plyr__control.plyr__tab-focus,
.plyr--video .plyr__control:hover,
.plyr--video .plyr__control[aria-expanded="true"] {
   background: #0353f0 !important;
}
.plyr--full-ui input[type="range"] {
    color: #0353f0 !important;
}

/* Прячем оригинальный плеер до инициализации */
video { display: none; }
