
body {
  background-color: #141414;
  color: white;
  font-family: Arial, sans-serif;
  margin: 0;
}
header {
  padding: 20px;
  background-color: #000;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: #e50914;
}
.genre-section {
  margin: 20px;
}
.section-title {
  margin-bottom: 10px;
  font-size: 20px;
  border-left: 5px solid #e50914;
  padding-left: 10px;
}
.movie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
}
.movie-card {
  background-color: #222;
  border-radius: 5px;
  overflow: hidden;
  transition: transform 0.3s;
}
.movie-card:hover {
  transform: scale(1.05);
}
.movie-card img {
  width: 100%;
  display: block;
}
.movie-info {
  padding: 10px;
}
.movie-title {
  font-size: 14px;
  font-weight: bold;
}
.movie-desc {
  font-size: 12px;
  color: #ccc;
}
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}
.modal-content {
  margin: 5% auto;
  display: block;
  width: 80%;
  max-width: 700px;
}
.close {
  position: absolute;
  top: 20px;
  right: 35px;
  font-size: 40px;
  font-weight: bold;
  color: white;
  cursor: pointer;
}
