/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: white;
}

header {
    background-color: #333;
    color: #F1C40F;
    padding: 1em 0;
    text-align: center;
}

header h1 {
    font-family: 'Merriweather', serif;
    margin: 0;
    font-size: 2.8em;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline-block;
    margin: 0 1.5em;
}

nav ul li a {
    color: #F1C40F;
    text-decoration: none;
    font-size: 1.2em;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* About Page Layout */
main {
    padding: 2em;
}

#hero {
    text-align: center;
}

#hero img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

#about-show {
    margin-top: 2em;
}

#about-show h2 {
    font-family: 'Merriweather', serif;
    font-size: 2.2em;
    color: #F1C40F;
}

#about-show p {
    font-size: 1.2em;
    color: #bbb;
    line-height: 1.6;
}

#cast h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.8em;
    color: #F1C40F;
}

#cast ul {
    list-style-type: none;
    padding: 0;
}

#cast ul li {
    font-size: 1.2em;
    margin: 0.5em 0;
}

footer {
    background-color: #333;
    color: #F1C40F;
    text-align: center;
    padding: 1em;
}
/* Episode Page Layout */
#episode-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2em;
    justify-content: space-between;
    margin-top: 2em;
}

.episode {
    background-color: #333;
    border: 1px solid #555;
    width: 45%;
    display: flex;
    flex-direction: column;
    margin-bottom: 2em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.episode-image {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: cover;
}

.episode-details {
    padding: 1em;
    color: #F1C40F;
}

.episode-details h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.5em;
}

.episode-details p {
    font-size: 1.1em;
    color: #bbb;
}

footer {
    background-color: #333;
    color: #F1C40F;
    text-align: center;
    padding: 1em;
}
