
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #141414;
  color: #fff;
}
header {
  background-color: #000;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav input {
  padding: 0.5rem;
  border-radius: 5px;
  border: none;
}
#movie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
  padding: 1rem;
}
.movie img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.2s;
}
.movie:hover img {
  transform: scale(1.05);
}
.modal {
  display: none;
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}
.modal-content {
  background-color: #222;
  margin: 10% auto;
  padding: 2rem;
  border: 1px solid #888;
  width: 80%;
  max-width: 500px;
  border-radius: 10px;
}
.close {
  color: #aaa;
  float: right;
  font-size: 24px;
  font-weight: bold;
}
.close:hover {
  color: white;
  cursor: pointer;
}
