body {
  font-family: Arial, sans-serif;
  margin: 0;
  text-align: center;
  background: linear-gradient(to right, #f0f0f0, #e6e6e6);
}

/* TITLE */
h1 {
  margin-top: 20px;
}

/* CONTROLS */
.controls {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px;
}

/* INPUTS */
input, select {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

/* BUTTON */
button {
  padding: 10px;
  border-radius: 6px;
  border: none;
  background: #333;
  color: white;
  cursor: pointer;
}

button:hover {
  background: #555;
}

/* GRID */
#movies, #favorites {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

/* CARD */
.card {
  width: 200px;
  background: white;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

/* IMAGE */
.card img {
  width: 100%;
  border-radius: 8px;
}

/* DARK MODE */
.dark {
  background: #121212;
  color: white;
}

.dark .card {
  background: #1e1e1e;
}

.dark input,
.dark select {
  background: #333;
  color: white;
}