* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #111;
  color: white;
}

.navbar {
  width: 100%;
  padding: 20px 50px;
  background: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 100;
}

.logo {
  color: #e50914;
  font-size: 28px;
  font-weight: bold;
}

.navbar nav a {
  color: white;
  text-decoration: none;
  margin-left: 25px;
  font-size: 15px;
}

.navbar nav a:hover {
  color: #e50914;
}

.hero {
  height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.8)),
  url("https://images.unsplash.com/photo-1489599849927-2ee91cede3ba") center/cover;
  display: flex;
  align-items: center;
  padding: 0 60px;
}

.hero-content {
  max-width: 650px;
}

.hero h1 {
  font-size: 55px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 24px;
  margin-bottom: 25px;
}

button {
  padding: 12px 30px;
  background: #e50914;
  color: white;
  border: none;
  font-size: 18px;
  cursor: pointer;
  border-radius: 4px;
}

button:hover {
  background: #b20710;
}

.movies {
  padding: 50px;
}

.movies h2 {
  margin: 30px 0 15px;
}

.movie-row {
  display: flex;
  gap: 20px;
  overflow-x: auto;
}

.movie-card {
  min-width: 180px;
  height: 250px;
  background: linear-gradient(135deg, #334155, #020617);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  transition: 0.3s;
}

.movie-card:hover {
  transform: scale(1.08);
  background: #e50914;
}

footer {
  text-align: center;
  padding: 25px;
  background: #000;
  color: #aaa;
}

@media (max-width: 768px) {
  .navbar {
    padding: 15px 20px;
    flex-direction: column;
  }

  .navbar nav {
    margin-top: 10px;
  }

  .navbar nav a {
    margin: 8px;
    font-size: 13px;
  }

  .hero {
    padding: 0 25px;
    text-align: center;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero p {
    font-size: 18px;
  }

  .movies {
    padding: 25px;
  }
}