body {
  background-color: #0f172a;
  font-family: Arial, sans-serif;
  color: white;
  text-align: center;
  padding: 30px;
}

h1 {
  color: #38bdf8;
}

select, input, button {
  padding: 10px;
  font-size: 16px;
  border-radius: 8px;
  border: none;
  margin-top: 10px;
  margin-bottom: 10px;
  width: 300px;
}

button {
  background-color: #38bdf8;
  color: black;
  cursor: pointer;
  width: 150px;
}

.movie-container {
  margin-top: 30px;
  background-color: #1e293b;
  padding: 20px;
  border-radius: 12px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.2);
}

img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
}

/* 🔻 Media Queries Start Here */

/* Small Devices (Phones) */
@media (max-width: 480px) {
  select, input {
    width: 90%;
  }

  button {
    width: 100%;
  }

  .movie-container {
    padding: 15px;
  }
}

/* Medium Devices (Tablets) */
@media (min-width: 481px) and (max-width: 768px) {
  select, input {
    width: 80%;
  }

  button {
    width: 180px;
  }

  .movie-container {
    padding: 20px;
  }
}

/* Large Devices (Laptops and Desktops) */
@media (min-width: 769px) {
  select, input {
    width: 300px;
  }

  button {
    width: 150px;
  }

  .movie-container {
    max-width: 500px;
  }
}
