body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #111;
  color: #fff;
}

.navbar {
  width: 100%;
  padding: 10px 6%;
  display: flex;
  justify-content: space-between;
  position: fixed;
  top: 0;
  background-color: #000;
  z-index: 1000;
  overflow-x: hidden;
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.search-bar {
  padding: 6px 10px;
  border: none;
  border-radius: 4px;
}

.banner {
  margin-top: 60px;
  height: 300px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

#banner-title {
  background: rgba(0, 0, 0, 0.6);
  padding: 10px 20px;
  border-radius: 12px;
  font-size: 2em;
}

.row {
  padding: 20px 6%;
}

.list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}

.list img {
  width: 100%;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.list img:hover {
  transform: scale(1.05);
}

.show-container {
  padding: 100px 6% 40px;
}

.episodes {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.episodes button {
  background-color: #333;
  border: none;
  padding: 6px 12px;
  color: white;
  cursor: pointer;
  border-radius: 4px;
}

.episodes button:hover {
  background-color: #555;
}

.player-wrapper {
  margin-top: 20px;
}

.footer {
  padding: 20px;
  text-align: center;
  background: #000;
  color: #888;
  margin-top: 40px;
}
