:root {
	--plyr-color-main: #5c3e94;	
}

#player_container {
    max-width: 1280px;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: black;
    position: relative;
    overflow: hidden;
}

#player {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 100;
}

.muted_overlay {
    color: #fafafa;
    background-color: rgba(0,0,0,0.3);
    text-shadow: 0 0 0.6rem rgba(0,0,0,0.7);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

#title {
    position: absolute;
    z-index: 200;
    top: 0;
    left: 0;
    right: 0;
    padding-right: 3rem;
    color: #fafafa;
    padding: 0.75rem 1rem;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.5);
    text-shadow: 0 0 0.5rem rgba(0,0,0,0.75);
    opacity: 0.1;
    transition: opacity 0.3s ease-in-out;
}

#next {
    position: absolute;
    top: 3rem;
    right: 1rem;
    padding: 0.75rem 1.2rem;
    z-index: 300;
    color: #050210;
    font-weight: bold;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 0.2rem;
    opacity: 0.3;
    transition: opacity 0.3s ease-in-out;
    cursor: pointer;
    user-select: none;
    box-shadow: 0 0 1rem rgba(0,0,0,0.3);
}

#player_container:hover #title, #player_container:hover #next, #player_container.showing #title {
    opacity: 1;
}
