* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #121212;
  font-family: Arial, sans-serif;
  color: white;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: black;
}

.logo {
  color: red;
  font-size: 24px;
  font-weight: bold;
}

nav a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
}

.banner {
  height: 150px;
  background: linear-gradient(to bottom, #444, #000);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.banner-text {
  font-size: 32px;
  font-weight: bold;
}

.content {
  padding: 20px;
}

h2 {
  margin-bottom: 10px;
}

.hot {
  background-color: red;
  color: white;
  padding: 2px 8px;
  font-size: 12px;
  margin-left: 10px;
  border-radius: 4px;
}

.movie-row {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.movie-row img {
  width: 200px;
  height: 300px;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.3s;
}

.movie-row img:hover {
  transform: scale(1.25);
}
