body {
    background: magenta;
    overflow: hidden;
}

#container {
    background: linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0) 50%,
        rgba(0, 0, 0, 0.75) 100%
    );
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.5s ease;
}

#container.hidden {
    opacity: 0;
    pointer-events: none;
}

.content {
    padding: 0 32px 32px 32px;
    align-items: start;
    justify-content: end;
}

.nav_tabs {
    background: var(--bg-black-transparent);
}

video {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.player_info {
    display: flex;
    flex-direction: column;
    align-items: start;
    width: 100%;
}

.player_logo {
    width: 128px;
}

.player_summary {
    display: block;
    overflow: visible;
    white-space: normal;
    word-wrap: break-word;
    width: 100%;
    min-width: 0;
}

.player_controls {
    display: flex;
    width: 100%;
    height: 32px;
    justify-content: space-between;
}

.player_controls .left,
.player_controls .right {
    display: flex;
    height: 100%;
    align-items: center;
    gap: 12px;
}

.volume_slider {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    width: 0; 
    margin-left: 8px;
}

.volume_container {
    display: flex;
    align-items: center;
    position: relative;
}

.volume_container.show .volume_slider {
    opacity: 1;
    pointer-events: auto;
}

.volume_slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    background: var(--color-red-50);
    outline: none;
    cursor: pointer;
    border-radius: 4px;
}

.volume_slider::-webkit-slider-runnable-track,
.volume_slider::-moz-range-track {
    height: 8px;
    background: transparent;
}

.volume_slider::-webkit-slider-thumb {
    opacity: 0;
}

.volume_slider::-moz-range-thumb {
    opacity: 0;
}