* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #181818;
    color: #000;
}

.banner {
    background: url('images/Silo-Poster.png') no-repeat center center/cover;
    height: 750px;
    display: flex;
    align-items: flex-end;
    padding: 40px;
    color: white;
    position: relative;
}

.banner-content {
    max-width: 600px;
}

.title {
    font-size: 80px;
    font-weight: bold;
}

.subtitle {
    font-size: 18px;
    margin-bottom: 15px;
    background: rgba(43, 43, 43, 0.10);
    border-radius: 10px; 
    padding: 10px;
    font-weight: light;
}

.watch-button {
    background: #E5E4E6;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

.watch-button:hover {
    background: white;
}

.show-container {
    padding: 20px;
    max-width: 100%;
    margin: auto;
}

.show-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.show-title {
    font-size: 28px;
    font-weight: bold;
    padding: 1em 1em;
    color: #fffffc;
}

.episodes {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
    width: 100%;
    padding: 0 20px;
}

.episode-card {
    background: #2a2a2a;
    width: 18%;
    text-align: left;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 15px;
}

.episode-card img {
    width: 100%;
    border-radius: 5px 5px 5px 5px;
}

.episode-card h4,
.episode-card p {
    text-align: left;
    padding: 5px 0;
}

footer {
    text-align: center;
    padding: 20px;
    background: #222;
    color: white;
    margin-top: 20px;
}

nav {
    display: inline-block;
    background: #181818;
    color: white;
    padding: 1em 3em;
    border-radius: 5px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}
h4 {
    padding: 10px;
    color: #fffffc;
    text-align: left;
}
h3 {
    color: #fffffc;
    padding: 1em 2em;
}
p {
    color: #fffffc;
}

@media screen and (max-width: 960px) {
    .episode-card {
        width: 30%;
    }
}

@media screen and (max-width: 660px) {
    .episode-card {
        width: 100%;
    }
}