body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #111;
  color: white;
}

header {
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
  background-color: #000;
  align-items: center;
}

.logo {
  font-size: 2rem;
  font-weight: bold;
  color: red;
  text-decoration: none;
}

nav a {
  margin-left: 20px;
  color: white;
  text-decoration: none;
}

nav a.active {
  border-bottom: 2px solid red;
}

main {
  padding: 40px;
}

.movies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}

.movie-card {
  background-color: #222;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s;
}

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

.movie-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.movie-card p {
  padding: 10px;
  font-weight: bold;
  text-align: center;
}
