:root {
  color-scheme: dark;
  --bg: #020617;
  --bg-soft: #0f172a;
  --bg-card: rgba(15, 23, 42, 0.72);
  --bg-card-solid: #111827;
  --line: rgba(250, 204, 21, 0.18);
  --text: #f8fafc;
  --muted: #94a3b8;
  --muted-2: #64748b;
  --gold: #facc15;
  --gold-2: #f59e0b;
  --gold-3: #fde68a;
  --danger: #fb7185;
  --radius: 24px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 0%, rgba(250, 204, 21, 0.12), transparent 36rem),
    radial-gradient(circle at 88% 8%, rgba(245, 158, 11, 0.13), transparent 30rem),
    linear-gradient(180deg, #020617 0%, #0f172a 46%, #020617 100%);
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input {
  font: inherit;
}

.container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(250, 204, 21, 0.14);
  background: rgba(2, 6, 23, 0.78);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #111827;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 14px 36px rgba(250, 204, 21, 0.25);
}

.brand-text,
.footer-brand {
  font-size: 1.6rem;
  background: linear-gradient(90deg, var(--gold), var(--gold-3), var(--gold-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.nav-link,
.mobile-link {
  color: #cbd5e1;
  font-weight: 600;
  transition: color 0.22s ease, background 0.22s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
  color: var(--gold);
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px;
  border: 1px solid rgba(250, 204, 21, 0.22);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.8);
}

.header-search input,
.mobile-search input,
.big-search input,
.inline-filter input {
  min-width: 0;
  color: var(--text);
  outline: 0;
  border: 0;
  background: transparent;
}

.header-search input {
  width: 210px;
  padding: 8px 4px 8px 12px;
}

.header-search button,
.mobile-search button,
.big-search button,
.inline-filter button {
  cursor: pointer;
  border: 0;
  color: #111827;
  font-weight: 800;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 12px 30px rgba(250, 204, 21, 0.18);
}

.header-search button {
  padding: 8px 14px;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  cursor: pointer;
  color: var(--gold);
  border: 1px solid rgba(250, 204, 21, 0.22);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.78);
}

.mobile-panel {
  border-top: 1px solid rgba(250, 204, 21, 0.14);
  padding: 16px;
  background: rgba(2, 6, 23, 0.96);
}

.mobile-search {
  display: flex;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(250, 204, 21, 0.2);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.9);
}

.mobile-search input {
  flex: 1;
  padding: 10px;
}

.mobile-search button {
  padding: 10px 18px;
}

.mobile-nav {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.mobile-link {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.7);
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: #020617;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  filter: saturate(1.08);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.96) 0%, rgba(2, 6, 23, 0.78) 45%, rgba(2, 6, 23, 0.25) 100%),
    linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.12) 44%, rgba(2, 6, 23, 0.38) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 56px;
  padding: 76px 0 92px;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.hero h1,
.page-hero h1,
.detail-copy h1 {
  margin: 18px 0 16px;
  font-weight: 950;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.hero h1 {
  max-width: 850px;
  font-size: clamp(2.8rem, 6vw, 5.7rem);
}

.hero-title-line {
  margin: 0 0 14px;
  color: var(--gold-3);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 800;
}

.hero-summary {
  max-width: 720px;
  margin: 0;
  color: #d1d5db;
  font-size: 1.1rem;
  line-height: 1.8;
}

.hero-tags,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.hero-tags {
  margin-top: 24px;
}

.hero-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 11px;
  color: #fde68a;
  border: 1px solid rgba(250, 204, 21, 0.22);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.66);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.primary-btn,
.ghost-btn,
.section-more,
.category-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.primary-btn {
  color: #111827;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 20px 45px rgba(250, 204, 21, 0.22);
}

.primary-btn:hover,
.ghost-btn:hover,
.section-more:hover,
.category-card:hover .category-more {
  transform: translateY(-2px);
}

.ghost-btn,
.section-more,
.category-more {
  color: var(--gold);
  border: 1px solid rgba(250, 204, 21, 0.26);
  background: rgba(15, 23, 42, 0.64);
}

.hero-poster {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(250, 204, 21, 0.25);
  border-radius: 34px;
  box-shadow: var(--shadow), 0 0 0 12px rgba(250, 204, 21, 0.04);
  transform: rotate(2deg);
  transition: transform 0.3s ease;
}

.hero-poster:hover {
  transform: rotate(0deg) scale(1.02);
}

.hero-poster img {
  width: 100%;
  height: 510px;
  object-fit: cover;
}

.hero-poster span {
  position: absolute;
  left: 24px;
  bottom: 24px;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  color: #111827;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transform: translateX(-50%);
}

.hero-dots,
.hero-mini-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-dot {
  width: 34px;
  height: 8px;
  cursor: pointer;
  border: 0;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.5);
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.is-active {
  width: 58px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
}

.hero-mini-links a {
  padding: 9px 13px;
  color: #e5e7eb;
  border: 1px solid rgba(250, 204, 21, 0.16);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.58);
}

.hero-mini-links a:hover {
  color: var(--gold);
  border-color: rgba(250, 204, 21, 0.32);
}

.quick-search-section {
  margin-top: -32px;
  position: relative;
  z-index: 8;
}

.quick-search-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 24px;
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(250, 204, 21, 0.16);
  border-radius: 30px;
  background: rgba(15, 23, 42, 0.92);
  box-shadow: var(--shadow);
}

.quick-search-card h2,
.section-head h2,
.rank-panel h2,
.detail-copy h2,
.info-card h2 {
  margin: 8px 0 0;
  font-size: clamp(1.6rem, 3vw, 2.45rem);
}

.quick-search-card p {
  color: var(--muted);
  line-height: 1.75;
}

.big-search,
.inline-filter {
  display: flex;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(250, 204, 21, 0.2);
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.7);
}

.big-search input,
.inline-filter input {
  flex: 1;
  padding: 14px 16px;
}

.big-search button,
.inline-filter button {
  padding: 0 24px;
}

.section {
  padding: 72px 0;
}

.muted-section {
  background: rgba(15, 23, 42, 0.32);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.section-head.inside {
  width: 100%;
  margin-bottom: 24px;
}

.movie-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.featured-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.compact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(250, 204, 21, 0.14);
  border-radius: var(--radius);
  background: var(--bg-card);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px) scale(1.012);
  border-color: rgba(250, 204, 21, 0.38);
  background: rgba(15, 23, 42, 0.94);
  box-shadow: 0 24px 70px rgba(250, 204, 21, 0.11);
}

.movie-card.is-hidden {
  display: none;
}

.movie-poster {
  position: relative;
  display: block;
  height: 310px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(2, 6, 23, 0.85));
}

.movie-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.movie-card:hover .movie-poster img {
  transform: scale(1.08);
}

.poster-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0) 64%);
}

.play-badge {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  padding: 8px 12px;
  color: #111827;
  font-size: 0.86rem;
  font-weight: 900;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.movie-card-body {
  padding: 18px;
}

.movie-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  color: var(--gold-3);
  font-size: 0.82rem;
  font-weight: 700;
}

.movie-title {
  margin: 10px 0 8px;
  font-size: 1.16rem;
  line-height: 1.35;
}

.movie-title a:hover {
  color: var(--gold);
}

.movie-one-line {
  min-height: 3.2em;
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tag-row span {
  min-height: 26px;
  padding: 4px 8px;
  font-size: 0.78rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.category-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(250, 204, 21, 0.16);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.58));
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.category-glow {
  position: absolute;
  inset: auto -30% -45% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(250, 204, 21, 0.12);
  filter: blur(10px);
}

.category-thumbs {
  position: absolute;
  inset: 18px 18px auto auto;
  display: flex;
  align-items: center;
}

.category-thumbs img {
  width: 62px;
  height: 86px;
  object-fit: cover;
  border: 2px solid rgba(15, 23, 42, 0.95);
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.category-thumbs img + img {
  margin-left: -24px;
}

.category-card strong {
  position: relative;
  z-index: 2;
  font-size: 1.45rem;
}

.category-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.category-more {
  position: relative;
  z-index: 2;
  align-self: flex-start;
  min-height: 38px;
  padding: 0 16px;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 32px;
  align-items: start;
}

.rank-panel,
.info-card,
.detail-copy,
.player-shell,
.poster-card,
.rank-directory {
  border: 1px solid rgba(250, 204, 21, 0.14);
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.74);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.rank-panel {
  position: sticky;
  top: 96px;
  padding: 24px;
}

.rank-panel-head {
  margin-bottom: 18px;
}

.rank-list,
.rank-directory {
  display: grid;
  gap: 12px;
}

.rank-directory {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 24px;
}

.rank-item {
  display: grid;
  grid-template-columns: 38px 58px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 18px;
  background: rgba(2, 6, 23, 0.32);
  transition: background 0.2s ease, transform 0.2s ease;
}

.rank-item:hover {
  transform: translateX(3px);
  background: rgba(30, 41, 59, 0.82);
}

.rank-number {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #111827;
  font-weight: 950;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
}

.rank-number.small {
  color: var(--gold);
  background: rgba(250, 204, 21, 0.1);
}

.rank-item img {
  width: 58px;
  height: 74px;
  object-fit: cover;
  border-radius: 12px;
}

.rank-copy {
  min-width: 0;
}

.rank-copy strong,
.rank-copy em {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-copy strong {
  margin-bottom: 5px;
}

.rank-copy em {
  color: var(--muted);
  font-size: 0.86rem;
  font-style: normal;
}

.page-main {
  min-height: 70vh;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 56px;
  border-bottom: 1px solid rgba(250, 204, 21, 0.12);
  background:
    radial-gradient(circle at 15% 0%, rgba(250, 204, 21, 0.16), transparent 30rem),
    linear-gradient(135deg, rgba(15, 23, 42, 0.85), rgba(2, 6, 23, 0.96));
}

.page-hero h1 {
  max-width: 850px;
  font-size: clamp(2.3rem, 5vw, 4.7rem);
}

.page-hero p {
  max-width: 780px;
  color: #d1d5db;
  font-size: 1.08rem;
  line-height: 1.8;
}

.large-category-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.inline-filter {
  max-width: 720px;
  margin-top: 26px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  padding: 28px 0 20px;
  color: var(--muted);
}

.breadcrumb a:hover {
  color: var(--gold);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 30px;
  align-items: start;
}

.player-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
}

.movie-video,
.player-cover,
.player-cover img,
.player-cover-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.movie-video {
  z-index: 1;
  background: #000;
}

.player-cover {
  z-index: 2;
  cursor: pointer;
  padding: 0;
  border: 0;
  color: var(--text);
  overflow: hidden;
  background: #000;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-cover img {
  object-fit: cover;
  filter: saturate(1.05);
}

.player-cover-shade {
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.82), rgba(2, 6, 23, 0.22));
}

.player-button {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  color: #111827;
  font-size: 2.1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.38);
  transform: translate(-50%, -50%);
}

.player-cover.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.detail-copy {
  margin-top: 22px;
  padding: 30px;
}

.detail-copy h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.detail-one-line {
  color: #e5e7eb;
  font-size: 1.12rem;
  line-height: 1.8;
}

.detail-copy p {
  color: #d1d5db;
  line-height: 1.95;
}

.detail-copy h2 {
  margin-top: 30px;
  font-size: 1.55rem;
}

.detail-tags {
  margin: 22px 0 4px;
}

.detail-side {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 20px;
}

.poster-card {
  overflow: hidden;
}

.poster-card img {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
}

.info-card {
  padding: 24px;
}

.info-card dl {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 12px 14px;
  margin: 20px 0 24px;
}

.info-card dt {
  color: var(--muted);
}

.info-card dd {
  margin: 0;
  color: #e5e7eb;
}

.full-btn {
  width: 100%;
}

.related-section {
  padding-top: 50px;
}

.related-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.site-footer {
  margin-top: 40px;
  border-top: 1px solid rgba(250, 204, 21, 0.13);
  background: rgba(2, 6, 23, 0.84);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 34px 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 16px;
}

.footer-links a:hover {
  color: var(--gold);
}

@media (max-width: 1080px) {
  .desktop-nav,
  .header-search {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .hero-content,
  .quick-search-card,
  .split-layout,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .hero-content {
    gap: 28px;
    padding-top: 54px;
  }

  .hero-poster {
    max-width: 380px;
    transform: none;
  }

  .rank-panel,
  .detail-side {
    position: static;
  }

  .movie-grid,
  .featured-grid,
  .compact-grid,
  .category-grid,
  .large-category-grid,
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rank-directory {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 22px, 1200px);
  }

  .header-inner {
    min-height: 64px;
  }

  .brand-text {
    font-size: 1.3rem;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    min-height: 700px;
    padding: 36px 0 100px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 13vw, 3.6rem);
  }

  .hero-summary {
    font-size: 1rem;
  }

  .hero-actions,
  .hero-controls,
  .footer-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-mini-links {
    flex-wrap: wrap;
  }

  .hero-poster img {
    height: 360px;
  }

  .quick-search-card,
  .detail-copy,
  .info-card,
  .rank-panel,
  .rank-directory {
    padding: 20px;
    border-radius: 22px;
  }

  .big-search,
  .inline-filter {
    flex-direction: column;
    border-radius: 22px;
  }

  .big-search button,
  .inline-filter button {
    min-height: 46px;
  }

  .section {
    padding: 50px 0;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .movie-grid,
  .featured-grid,
  .compact-grid,
  .category-grid,
  .large-category-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .movie-poster {
    height: 360px;
  }

  .page-hero {
    padding: 58px 0 40px;
  }

  .poster-card img {
    min-height: 360px;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}
