body {
  font-family: Arial, sans-serif;
  background: #181818;
  color: #fff;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 100%;
  margin: 40px auto;
  background: #232323;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  padding: 30px 20px 20px 20px;
}

h1 {
  text-align: center;
  font-size: 38px;
  margin-bottom: 25px;
  color: #ffb400;
}

.search-box {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}

#searchInput {
  width: 20%;
  padding: 10px;
  border: none;
  border-radius: 5px 0 0 5px;
  font-size: 16px;
}

#searchBtn {
  padding: 10px 20px;
  border: none;
  background: #ffb400;
  color: #232323;
  font-weight: bold;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.2s;
}

#searchBtn:hover {
  background: #ffa000;
}

.results {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

.movie {
  flex-basis: 20%;
  display: flex;
  align-items: center;
  flex-direction: column;
  background: #292929;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.movie img {
  width: 90%;
  height: 220px;
  object-fit: cover;
  background: #444;
}

.movie-info {
  padding: 15px;
  flex: 1;
}

.movie-title {
  font-size: 20px;
  margin: 0 0 8px 0;
  color: #ffb400;
}

.movie-year {
  font-size: 15px;
  color: #bbb;
  margin-bottom: 10px;
}

.movie-plot {
  font-size: 15px;
  color: #eee;
}
