/* 🌟 Hero Section */
.movie-hero {
  background: linear-gradient(135deg, #ff512f, #dd2476);
  color: #fff;
  padding: 3rem 0;
  text-align: center;
}
.movie-title {
  font-size: 2.5rem;
  font-weight: 700;
}
.movie-subtitle {
  font-size: 1.2rem;
  margin-top: 8px;
  opacity: 0.9;
}

/* 🎥 Movie Poster */
.movie-poster {
  width: 100%;
  max-width: 320px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
  margin-bottom: 1.5rem;
}

/* 📋 Movie Meta */
.movie-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}
.movie-meta li {
  margin-bottom: 8px;
  font-size: 1rem;
  color: #333;
}
.movie-description {
  font-size: 1rem;
  line-height: 1.6;
}

/* 📖 Storyline */
.storyline {
  background: #f8f8f8;
  padding: 1.5rem;
  border-radius: 8px;
  color: #222;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* ⬇️ Download Buttons */
.download-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.download-btn {
  display: inline-block;
  padding: 12px 20px;
  background: #ff004f;
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}
.download-btn:hover {
  background: #cc003f;
}

/* 🖼 Movie Grid (for homepage later) */
.movie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  justify-items: center;
}
.movie-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}
.movie-card:hover {
  transform: translateY(-5px);
}
.movie-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.movie-card h3 {
  font-size: 1rem;
  padding: 12px;
  margin: 0;
}
