.film-hero {
  position: relative;
  min-height: 70vh;
  padding: 7.5rem 8% 4rem;
  display: grid;
  align-items: center;
  justify-items: center;
  overflow: hidden;
}

.film-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(18, 16, 13, 0.6) 0%, rgba(18, 16, 13, 0.25) 60%, rgba(18, 16, 13, 0.1) 100%),
    url('budha.jpg');
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.05);
}

.film-hero-card {
  position: relative;
  z-index: 2;
  max-width: 860px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 3rem 3rem 2.5rem;
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(16px);
  text-align: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.hero-actions .btn { min-width: 200px; justify-content: center; }

.film-player {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  align-items: start;
}

.film-frame {
  background: #000;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(31, 27, 22, 0.18);
}

.film-frame iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

.film-details {
  background: #fff;
  border-radius: 20px;
  padding: 1.8rem;
  border: 1px solid rgba(31, 27, 22, 0.08);
  box-shadow: 0 12px 28px rgba(31, 27, 22, 0.12);
  display: grid;
  gap: 1.5rem;
}

.film-meta {
  display: grid;
  gap: 0.8rem;
}

.film-meta div {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}

.film-meta span { color: var(--secondary); }

@media (max-width: 900px) {
  .film-player { grid-template-columns: 1fr; }
  .film-frame iframe { height: 320px; }
}

@media (max-width: 700px) {
  .film-hero { min-height: auto; padding: 6rem 6% 3rem; }
  .film-hero-card { padding: 2rem 1.6rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}
