.player-section {

    background: black;

    padding-top: 20px;

}


.video-container {

    width: 100%;

    max-width: 1400px;

    margin: auto;

}


video {

    width: 100%;

    height: auto;

    background: black;

}


.video-info {

    padding: 25px 60px;

}


.video-info h1 {

    font-size: 2rem;

    margin-bottom: 10px;

}


.video-info p {

    color: #aaa;

}


.episode-list {

    padding: 0 60px 60px;

}


.episode-list h2 {

    margin-bottom: 20px;

}


.episode {

    text-decoration: none;

    color: white;

    background: #181818;

    padding: 20px 25px;

    margin-bottom: 12px;

    border-radius: 8px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    transition: 0.2s;

}


.episode:hover {

    background: #2a2a2a;

}


.episode.active {
    border-left: 5px solid #e50914;
    padding-left: 20px;
}


.episode-info {

    flex: 1;

}


.episode-info strong {

    display: block;

    font-size: 18px;

    margin-bottom: 6px;

}


.episode-info p {

    color: #aaa;

    margin: 0;

    font-size: 14px;

}


.play-icon {

    width: 45px;

    height: 45px;

    border-radius: 50%;

    background: #e50914;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 16px;

    flex-shrink: 0;

}

.player-options {
    margin-top: 12px;
    text-align: right;
}

.player-options select {
    padding: 6px 10px;
    border-radius: 6px;
}

.mobile-banner {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    overflow: hidden;
}