/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.description {
  font-size: 1.1rem;
  color: #ddd;
  margin-top: 10px;
  max-width: 700px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #000;
  color: #f5f5f5;
  line-height: 1.6;
  padding: 20px;
}

/* Header */
header {
  text-align: center;
  margin-bottom: 40px;
}

header h1 {
  font-size: 2.5rem;
  color: #E50914;
}

header p {
  font-size: 1.2rem;
  color: #ccc;
}


/* Movie Grid */
.movie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* Movie Card */
.movie-card {
  background-color: #121212;
  border-radius: 16px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(229, 9, 20, 0.25); /* Netflix red shadow */
}

.movie-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.movie-card h2 {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 8px;
}

.movie-card p {
  margin-bottom: 6px;
  font-size: 0.95rem;
  color: #ddd;
}

/* My Opinion Section */
.my-opinion {
  background-color: #1a1a1a;
  border-left: 4px solid #E50914;
  padding: 12px 16px;
  margin-top: 12px;
  font-style: italic;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(229, 9, 20, 0.1);
  transition: transform 0.3s ease;
}

.my-opinion h3 {
  margin-bottom: 6px;
  font-size: 1.1rem;
  color: #E50914;
  font-weight: bold;
}

.my-opinion:hover {
  transform: scale(1.02);
  background-color: #2a2a2a;
}

/* Coming Soon Section */
.coming-soon {
  margin-top: 60px;
}

.coming-soon h2 {
  color: #E50914;
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.coming-soon ul {
  list-style: square;
  padding-left: 20px;
  color: #ccc;
}

.coming-soon li {
  margin-bottom: 8px;
}
.coming-soon {
  margin-top: 60px;
  padding: 20px;
  border-top: 2px solid #E50914;
}

.coming-soon h2 {
  color: #E50914;
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
}

.coming-movies {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.movie-card {
  background-color: #111;
  color: #eee;
  border-radius: 12px;
  padding: 15px;
  width: 280px;
  box-shadow: 0 0 10px rgba(229, 9, 20, 0.2);
  transition: transform 0.3s ease;
}

.movie-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(229, 9, 20, 0.4);
}

.movie-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.movie-card h3 {
  color: #E50914;
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.genre,
.release-date {
  font-size: 0.9rem;
  color: #ccc;
}

.opinion {
  margin-top: 10px;
  font-style: italic;
  color: #fff;
}

