
.film-hero {
  position: relative;
  padding: 120px 0 60px;
  background-size: cover;
  background-position: center;
}

.film-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,12,24,0.6), rgba(8,12,24,0.95));
  backdrop-filter: blur(10px);
}

.film-hero-inner {
  position: relative;
  display: flex;
  gap: 60px;
}

.film-poster img {
  width: 300px;
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.7);
}

.film-title {
  font-size: 48px;
  margin-bottom: 16px;
}

.film-year {
  opacity: 0.6;
  font-weight: 400;
}

.film-subinfo div {
  margin-bottom: 6px;
  opacity: 0.85;
}

.film-rating-row {
  margin-top: 20px;
}

.film-rating {
  background: rgba(25,35,70,0.7);
  padding: 16px 22px;
  border-radius: 14px;
  display: inline-block;
}

.rating-number {
  font-size: 28px;
  font-weight: 600;
}

.rating-caption {
  font-size: 12px;
  opacity: 0.7;
}

.film-body {
  display: flex;
  gap: 50px;
  margin-top: 60px;
}

.film-left {
  flex: 3;
}

.film-right {
  flex: 1.2;
}

.film-description h2,
.film-cast h2 {
  font-size: 26px;
  margin-bottom: 20px;
}

.film-description-text {
  line-height: 1.8;
  font-size: 16px;
  opacity: 0.95;
}

.film-cast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 24px;
  margin-top: 20px;
}

.cast-item img {
  width: 100%;
  border-radius: 14px;
}

.film-info-card {
  background: rgba(20,28,50,0.6);
  padding: 24px;
  border-radius: 16px;
  position: sticky;
  top: 120px;
}

.film-info-card h3 {
  margin-bottom: 18px;
  font-size: 18px;
}

.film-info-content div {
  margin-bottom: 8px;
  opacity: 0.85;
}

@media (max-width: 1000px) {
  .film-hero-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .film-body {
    flex-direction: column;
  }

  .film-right {
    order: -1;
  }
}
