/* ─── HERO ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 56.25vw; /* 16:9 */
  max-height: 95vh;
  min-height: 400px;
  overflow: hidden;
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 20%;
  background-color: #141414;
  transition: background-image 0.6s ease;
}

.hero__vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    77deg,
    rgba(0,0,0,0.6) 0%,
    transparent 85%
  );
}
.hero__vignette-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(
    to top,
    #141414 0%,
    rgba(20,20,20,0.8) 40%,
    transparent 100%
  );
}

.hero__content {
  position: absolute;
  bottom: 30%;
  left: 60px;
  max-width: 500px;
  z-index: 5;
}

.hero__logo-img {
  max-width: 400px;
  max-height: 200px;
  margin-bottom: 20px;
}
.hero__logo-img img {
  max-width: 100%;
  max-height: 200px;
  object-fit: contain;
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.5));
}

.hero__title {
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.45);
  margin-bottom: 12px;
  max-width: 460px;
}

.hero__info-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 700;
}
.hero__match { color: var(--green); }
.hero__year { color: #a3a3a3; font-weight: 400; }
.hero__rating-badge {
  border: 1px solid rgba(255,255,255,0.5);
  padding: 2px 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  font-weight: 400;
}
.hero__seasons { font-size: 15px; font-weight: 400; color: #e5e5e5; }
.hero__dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: #a3a3a3;
}

.hero__desc {
  font-size: clamp(13px, 1.5vw, 17px);
  line-height: 1.5;
  color: #e5e5e5;
  margin-bottom: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
}

.hero__actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 26px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: opacity var(--transition-fast), background var(--transition-fast);
  white-space: nowrap;
}
.hero__btn svg { width: 26px; height: 26px; }
.hero__btn:hover { opacity: 0.75; }

.hero__btn--play {
  background: #fff;
  color: #000;
}
.hero__btn--info {
  background: rgba(109,109,110,0.7);
  color: #fff;
}

/* Maturity rating badge - bottom right of hero */
.hero__maturity {
  position: absolute;
  bottom: 30%;
  right: 60px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__maturity-badge {
  border-left: 3px solid rgba(255,255,255,0.5);
  padding: 4px 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  background: rgba(51,51,51,0.6);
}

@media (max-width: 960px) {
  .hero__content { left: 30px; max-width: 380px; }
  .hero__maturity { right: 30px; }
}
@media (max-width: 640px) {
  .hero__content { left: 16px; max-width: 90vw; bottom: 22%; }
  .hero__maturity { display: none; }
  .hero__btn { font-size: 14px; padding: 8px 18px; }
  .hero__btn svg { width: 20px; height: 20px; }
}
