body {
  font-family: Arial, sans-serif;
  background-color: #121212;
  color: #f0f0f0;
  text-align: center;
  padding: 20px;
}

.container {
  max-width: 800px;
  margin: auto;
}

input {
  padding: 10px;
  width: 60%;
  border-radius: 5px;
  border: none;
  margin-bottom: 10px;
}

button {
  padding: 10px 20px;
  margin-left: 10px;
  background-color: #ff4757;
  border: none;
  border-radius: 5px;
  color: white;
  cursor: pointer;
}

#movieList {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.movie-card {
  background-color: #1e1e1e;
  padding: 15px;
  border-radius: 10px;
  transition: transform 0.2s;
}

.movie-card:hover {
  transform: scale(1.05);
}

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

.movie-title {
  margin: 10px 0 5px;
  font-size: 1.1em;
}

.movie-year {
  color: #aaa;
}
