* {
  box-sizing: border-box;
}

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



main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

h1 {
  text-align: center;
  margin-bottom: 20px;
}



#navBar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1a1d24;
  padding: 12px 20px;
  margin: 10px 0 20px 0;
  border-radius: 10px;
}



.searchContainer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;

  background: #1a1d24;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.searchContainer input,
.searchContainer select {
  padding: 10px;
  border: none;
  border-radius: 6px;
  outline: none;
  background: #2a2f3a;
  color: white;
  min-width: 180px;
}

.searchContainer input:focus,
.searchContainer select:focus {
  border: 1px solid #2d6cdf;
}



#root {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 10px 0;
}



.show-card {
  background: #1a1d24;
  border: 1px solid #2d6cdf;
  border-radius: 12px;
  padding: 12px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.show-card:hover {
  transform: scale(1.02);
  background: #222836;
}

.show-card img {
  width: 100%;
  border-radius: 8px;
}


.episode-card {
  background: #1a1d24;
  border: 1px solid #2d6cdf;
  border-radius: 12px;
  padding: 12px;
  transition: transform 0.2s ease;
}

.episode-card:hover {
  transform: scale(1.02);
}

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



p {
  color: #c9c9c9;
}

strong {
  color: #ffffff;
}



#allEpisodesLength {
  font-weight: bold;
  color: #ffffff;
}