body {
  margin: 0;
  padding: 25px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  background-color: #f2f2f2;
}

#root {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

section {
  background: #ffffff;
  border: 1px solid #d8d8d8;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

h2 {
  margin: 0 0 15px;
  text-align: center;
  font-size: 1.3rem;
  color: #222;
  min-height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 12px 0;
}

p {
  color: #444;
  line-height: 1.6;
}

a {
  color: #0066cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

@media (max-width: 700px) {
  body {
    padding: 15px;
  }

  #root {
    grid-template-columns: 1fr;
  }
}

#search {
  padding: 10px 15px;
  font-size: 16px;
  border: 1px solid #bbb;
  border-radius: 8px;
  width: 300px;
  margin-bottom: 15px;
}

#search:focus {
  outline: none;
  border-color: #2b7cff;
  box-shadow: 0 0 5px rgba(43, 124, 255, 0.3);
}

#episode-count {
  font-weight: bold;
  color: #444;
  margin-bottom: 20px;
}

#search::placeholder {
  color: #888;
}
