html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background: #000;
    color: #fff;
    font-family: Arial, sans-serif;
    overflow: hidden;
}

.player-root {
    width: 100vw;
    height: 100vh;
    position: relative;
    background: #000;
}

.media-el {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.hidden {
    display: none;
}

.fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2vw;
    opacity: 0.75;
}

.overlay {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    display: flex;
    gap: 1rem;
    font-size: 1.2vw;
    opacity: 0.8;
    background: rgba(0, 0, 0, 0.4);
    padding: 0.4rem 0.8rem;
    border-radius: 0.4rem;
}

.vertical .overlay {
    font-size: 2.1vw;
}
