body {
  background: #fff5f8;
  font-family: "Segoe UI", sans-serif;
  margin: 0;
}

.app-header {
  text-align: center;
  padding: 30px 20px;
  background: linear-gradient(135deg, #ffe4ec, #fff5f8);
  border-bottom: 2px solid #ffd6e0;
}

.app-header h1 {
  color: #ff4d88;
  font-size: 34px;
  margin-bottom: 8px;
}

.subtitle {
  color: #888;
  margin-bottom: 20px;
}

#backToShows {
  display: inline-block;
  margin: 10px;
  color: #ff4d88;
  font-weight: bold;
  text-decoration: none;
}

/* ---------- UPDATED CONTROLS ---------- */

.controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 15px;
}

#showSelect,
#episodeSelect,
#searchInput {
  width: 320px;
  padding: 12px 14px;
  font-size: 16px;
  font-family: "Segoe UI", sans-serif;

  border-radius: 12px;
  border: 2px solid #ffd6e0;

  background: white;

  box-shadow: 0 4px 10px rgba(255, 182, 193, 0.2);

  transition: all 0.2s ease;
}

#showSelect:hover,
#episodeSelect:hover {
  transform: translateY(-2px);
}

#showSelect:focus,
#episodeSelect:focus,
#searchInput:focus {
  outline: none;
  border-color: #ff4d88;

  box-shadow: 0 0 10px rgba(255, 77, 136, 0.25);
}

#searchInput {
  display: block;
  margin: 20px auto;
}

#showsRoot,
#root {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));

  gap: 20px;
  padding: 20px;
}

.episode-card {
  background: #fff;
  border-radius: 16px;
  padding: 14px;
  text-align: center;

  box-shadow: 0 6px 15px rgba(255, 182, 193, 0.25);

  position: relative;
}

.episode-card:hover {
  transform: translateY(-4px);
}

.episode-card h3 {
  color: #ff4d88;
  cursor: pointer;
}

.episode-card img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  border-radius: 12px;
}

.count {
  grid-column: 1/-1;
  text-align: center;
  font-weight: bold;
  color: #69d5ff;
}

footer {
  text-align: center;
  padding: 30px;
  color: #888;
}
