@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: #f4f4f4;
  color: #222;
}

h1,
h2 {
  color: #4b2bbf;
  text-align: center;
  margin: 10px;
}

input,
select,
button {
  padding: 8px;
  margin: 8px;
  font-size: 14px;
}

button {
  background: #6a4cff;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  padding: 8px 12px;
}

button:hover {
  background: #5636e6;
}

article {
  background: #f4efff;
  border: 1px solid #e2d6ff;
  border-radius: 12px;
  padding: 12px;
  margin: 10px;
  box-shadow: 0 3px 10px rgba(120, 80, 200, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

article:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(120, 80, 200, 0.25);
}

img {
  width: 100%;
  border-radius: 6px;
}

#root>div {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 10px;
  padding: 10px;
}

#episodes-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
  padding: 10px;
}
p {
  margin: 5px 0;
}