* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000000;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #141414;
    padding: 15px 20px;
    z-index: 1000;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    width: 90px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
}

nav ul li a:hover {
    color: #e50914;
}

.video-section {
    max-width: 1200px;
    margin: 80px auto 30px;
    padding: 0 20px;
}

.video-section h1 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.video-player {
    position: relative;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    margin-bottom: 20px;
}

.video-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
}

.episode-picker {
    margin-bottom: 20px;
}

.episode-picker h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.episode-picker select {
    width: 100%;
    max-width: 300px;
    padding: 8px;
    background-color: #333333;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
}

.episode-picker select:focus {
    outline: none;
    background-color: #444444;
}

.video-section p {
    font-size: 1.1rem;
    color: #b3b3b3;
}

@media (max-width: 768px) {
    .navbar {
        flex-wrap: wrap;
        padding: 10px;
    }

    nav ul {
        margin-top: 10px;
    }

    nav ul li {
        margin: 5px 10px;
    }

    .video-section h1 {
        font-size: 1.8rem;
    }

    .video-section p {
        font-size: 1rem;
    }

    .video-player {
        padding-top: 75%; /* Adjust for smaller screens */
    }

    .episode-picker select {
        max-width: 100%;
    }
}