:root {
  color-scheme: light;
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --amber-700: #b45309;
  --amber-800: #92400e;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.10);
  --shadow-lg: 0 18px 45px rgba(15, 23, 42, 0.18);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  background: var(--gray-50);
  color: var(--gray-900);
  line-height: 1.6;
}

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

img {
  display: block;
  max-width: 100%;
  background: linear-gradient(135deg, var(--gray-200), var(--amber-100));
}

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--amber-800);
  letter-spacing: 0.02em;
}

.brand-mark,
.footer-logo span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--amber-500), var(--amber-700));
  color: var(--white);
  box-shadow: 0 10px 20px rgba(217, 119, 6, 0.28);
}

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

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--gray-700);
}

.nav-link {
  position: relative;
  font-weight: 600;
  transition: color 180ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--amber-700);
}

.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 3px;
  border-radius: 999px;
  background: var(--amber-600);
}

.header-search,
.mobile-search,
.search-panel,
.inline-filter {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-search input,
.mobile-search input,
.search-panel input,
.inline-filter input,
.search-panel select,
.inline-filter select {
  border: 1px solid var(--gray-300);
  border-radius: 999px;
  padding: 10px 16px;
  background: var(--white);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.header-search input {
  width: 220px;
}

.header-search input:focus,
.mobile-search input:focus,
.search-panel input:focus,
.inline-filter input:focus,
.search-panel select:focus,
.inline-filter select:focus {
  border-color: var(--amber-500);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.16);
}

.header-search button,
.mobile-search button,
.search-panel button {
  border: 0;
  border-radius: 999px;
  padding: 10px 18px;
  color: var(--white);
  background: var(--amber-600);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.header-search button:hover,
.mobile-search button:hover,
.search-panel button:hover {
  background: var(--amber-700);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  border: 0;
  background: var(--gray-100);
  border-radius: 12px;
  width: 44px;
  height: 44px;
  cursor: pointer;
}

.mobile-panel {
  display: none;
  padding: 0 16px 16px;
  border-top: 1px solid var(--gray-200);
}

.mobile-panel.is-open {
  display: block;
}

.mobile-search {
  margin: 14px auto;
  width: min(720px, 100%);
}

.mobile-search input {
  flex: 1;
}

.mobile-nav {
  display: grid;
  width: min(720px, 100%);
  margin: 0 auto;
  gap: 10px;
}

.mobile-link {
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--gray-700);
  background: var(--gray-50);
}

.hero-carousel {
  position: relative;
  height: min(720px, 70vh);
  min-height: 520px;
  overflow: hidden;
  background: var(--gray-900);
}

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

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

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 22%, rgba(245, 158, 11, 0.24), transparent 32%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.12));
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(680px, 100%);
  color: var(--white);
  animation: heroRise 900ms ease both;
}

.hero-tags,
.card-badges,
.detail-meta,
.tag-list,
.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.hero-tags span,
.card-badges span,
.detail-meta span,
.tag-list span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-tags span,
.card-badges span:first-child {
  background: var(--amber-600);
  color: var(--white);
}

.hero-tags span:not(:first-child),
.card-badges span:not(:first-child) {
  background: rgba(0, 0, 0, 0.54);
  color: var(--white);
}

.hero-copy h1 {
  margin: 18px 0 18px;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.hero-copy p {
  margin: 0 0 28px;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 2vw, 1.3rem);
}

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

.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 26px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.primary-button {
  color: var(--white);
  background: var(--amber-600);
  box-shadow: 0 14px 28px rgba(217, 119, 6, 0.32);
}

.primary-button:hover,
.ghost-button:hover {
  transform: translateY(-2px);
}

.primary-button:hover {
  background: var(--amber-700);
}

.ghost-button {
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.48);
  cursor: pointer;
  font-size: 2rem;
  transition: background 180ms ease;
}

.hero-nav:hover {
  background: rgba(0, 0, 0, 0.72);
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.hero-dot.is-active {
  width: 34px;
  background: var(--white);
}

.site-section {
  padding: 70px 0;
}

.warm-section {
  background: linear-gradient(180deg, var(--amber-50), var(--white));
}

.gray-section {
  background: var(--gray-100);
}

.section-heading,
.panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.section-heading > div,
.panel-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-icon,
.panel-title span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  color: var(--amber-800);
  background: var(--amber-100);
}

.section-heading h2,
.panel-title h2 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.2;
}

.section-more {
  font-weight: 800;
  color: var(--amber-700);
}

.movie-grid,
.large-card-grid,
.category-grid,
.overview-grid {
  display: grid;
  gap: 22px;
}

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

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

.movie-grid--five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.movie-grid--six {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.movie-card {
  min-width: 0;
}

.movie-card a {
  display: block;
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.movie-card a:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.movie-card figure {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.movie-card figure img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 500ms ease;
}

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

.movie-card--large figure {
  height: 390px;
}

.movie-card--large figure img {
  height: 100%;
}

.movie-card--large figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 26px;
  color: var(--white);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.10));
}

.movie-card--large h3 {
  margin: 14px 0 8px;
  font-size: 1.55rem;
}

.movie-card--large p,
.movie-card .card-content p,
.movie-card--list p,
.ranking-card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.year-badge,
.genre-badge {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
}

.year-badge {
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.68);
}

.genre-badge {
  left: 12px;
  bottom: 12px;
  background: var(--amber-600);
}

.card-content {
  padding: 16px;
}

.card-content h3,
.movie-card--compact h3,
.movie-card--list h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  line-height: 1.35;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-content p,
.movie-card--list p,
.movie-card--compact p {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.92rem;
}

.card-meta {
  margin-top: 12px;
  justify-content: space-between;
  color: var(--gray-500);
  font-size: 0.85rem;
}

.movie-card--compact figure img {
  height: 160px;
}

.movie-card--compact figcaption {
  padding: 12px;
}

.movie-card--compact p {
  font-size: 0.82rem;
}

.movie-card--list a {
  display: flex;
  gap: 16px;
  padding: 0;
}

.movie-card--list img {
  width: 190px;
  height: 124px;
  object-fit: cover;
  flex: 0 0 auto;
}

.movie-card--list div {
  padding: 15px 15px 15px 0;
  min-width: 0;
}

.movie-card--list span {
  display: inline-flex;
  margin-right: 12px;
  color: var(--gray-500);
  font-size: 0.84rem;
}

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

.category-tile,
.overview-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.category-tile {
  min-height: 142px;
  padding: 22px;
  border: 1px solid rgba(245, 158, 11, 0.16);
}

.category-tile::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -30px;
  bottom: -38px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.32), transparent 70%);
}

.category-tile:hover,
.overview-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.category-tile strong,
.overview-card h2 {
  display: block;
  margin: 0 0 8px;
  font-size: 1.18rem;
  color: var(--gray-900);
}

.category-tile span,
.overview-card p {
  color: var(--gray-600);
}

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

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -10px 0 22px;
}

.filter-pills button {
  border: 0;
  border-radius: 999px;
  padding: 9px 16px;
  background: var(--white);
  color: var(--gray-700);
  cursor: pointer;
}

.filter-pills button.is-active {
  background: var(--amber-600);
  color: var(--white);
}

.ranking-panel,
.related-panel,
.poster-card,
.detail-card {
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.ranking-panel {
  padding: 24px;
}

.ranking-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.ranking-list a {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 4px 12px;
  align-items: center;
  padding: 12px;
  border-radius: 14px;
  background: var(--gray-50);
  transition: background 180ms ease;
}

.ranking-list a:hover {
  background: var(--amber-50);
}

.rank-num {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  color: var(--white);
  background: var(--amber-600);
  font-weight: 900;
}

.rank-title {
  font-weight: 800;
}

.rank-meta {
  color: var(--gray-500);
  font-size: 0.86rem;
}

.list-stack {
  display: grid;
  gap: 16px;
}

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

.page-hero {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.38), transparent 30%),
    linear-gradient(135deg, #0f172a, #2d1b08 58%, #111827);
}

.compact-hero {
  padding: 76px 0;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--amber-100);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.08;
}

.page-hero p {
  margin: 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

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

.overview-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 22px;
  min-height: 160px;
}

.overview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overview-card div {
  padding: 24px 24px 24px 0;
}

.inline-filter {
  margin-bottom: 24px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.inline-filter input {
  min-width: min(420px, 100%);
  flex: 1;
}

.empty-message {
  display: none;
  margin: 36px 0 0;
  text-align: center;
  color: var(--gray-500);
  font-size: 1.05rem;
}

.empty-message.is-visible {
  display: block;
}

.ranking-card-list {
  display: grid;
  gap: 16px;
}

.ranking-card a {
  display: grid;
  grid-template-columns: 70px 148px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.ranking-card a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.ranking-index {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  color: var(--white);
  background: var(--amber-600);
  font-weight: 900;
  font-size: 1.2rem;
}

.ranking-card img {
  width: 148px;
  height: 92px;
  border-radius: 12px;
  object-fit: cover;
}

.ranking-card h2 {
  margin: 0 0 6px;
  font-size: 1.15rem;
}

.ranking-card span:last-child {
  color: var(--gray-500);
  font-size: 0.9rem;
}

.search-panel {
  padding: 18px;
  margin-bottom: 28px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-md);
  flex-wrap: wrap;
}

.search-panel input {
  flex: 1 1 360px;
}

.detail-main {
  padding: 34px 0 70px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--gray-600);
  font-size: 0.92rem;
}

.breadcrumb a {
  color: var(--amber-700);
  font-weight: 700;
}

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

.detail-left {
  display: grid;
  gap: 22px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #000000;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 9;
}

.player-shell video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000000;
  cursor: pointer;
}

.player-button {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: rgba(217, 119, 6, 0.92);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.32);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, opacity 180ms ease;
}

.player-button span {
  margin-left: 5px;
  font-size: 2rem;
}

.player-button:hover {
  transform: translate(-50%, -50%) scale(1.06);
  background: var(--amber-700);
}

.player-shell.is-playing .player-button {
  opacity: 0;
  pointer-events: none;
}

.player-status {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  min-height: 0;
  color: var(--white);
  text-align: center;
  font-size: 0.92rem;
  pointer-events: none;
}

.detail-card {
  padding: clamp(22px, 4vw, 34px);
}

.detail-card h1 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.12;
}

.detail-meta {
  margin-bottom: 20px;
}

.detail-meta span,
.tag-list span {
  color: var(--amber-800);
  background: var(--amber-100);
}

.lead-text {
  margin: 0 0 28px;
  padding: 20px;
  border-left: 5px solid var(--amber-600);
  border-radius: 14px;
  color: var(--gray-700);
  background: var(--amber-50);
  font-size: 1.08rem;
  font-weight: 700;
}

.detail-card section {
  margin-top: 28px;
}

.detail-card h2,
.related-panel h2 {
  margin: 0 0 12px;
  font-size: 1.26rem;
}

.detail-card p {
  margin: 0;
  color: var(--gray-700);
  white-space: pre-line;
}

.detail-side {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 18px;
}

.poster-card {
  overflow: hidden;
}

.poster-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.poster-card div {
  padding: 18px;
}

.poster-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.08rem;
}

.poster-card span {
  color: var(--gray-600);
  font-size: 0.92rem;
}

.related-panel {
  padding: 20px;
}

.compact-related .movie-card--list img {
  width: 110px;
  height: 76px;
}

.compact-related .movie-card--list div {
  padding: 10px 10px 10px 0;
}

.compact-related .movie-card--list h3 {
  font-size: 0.92rem;
}

.compact-related .movie-card--list p {
  display: none;
}

.site-footer {
  color: var(--gray-300);
  background: var(--gray-900);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 34px;
  padding: 48px 0;
}

.footer-brand p {
  max-width: 620px;
  color: var(--gray-400);
}

.footer-logo {
  color: var(--amber-500);
  font-size: 1.2rem;
}

.site-footer h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 1rem;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a {
  color: var(--gray-400);
  transition: color 180ms ease;
}

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

.footer-bottom {
  padding: 18px;
  text-align: center;
  color: var(--gray-500);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.is-hidden {
  display: none !important;
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1120px) {
  .header-search {
    display: none;
  }

  .movie-grid--six,
  .movie-grid--five,
  .movie-grid--four {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .large-card-grid,
  .split-layout,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .detail-side {
    position: static;
  }
}

@media (max-width: 820px) {
  .desktop-nav {
    display: none;
  }

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

  .hero-carousel {
    height: 66vh;
    min-height: 500px;
  }

  .hero-nav {
    display: none;
  }

  .large-card-grid,
  .movie-grid--six,
  .movie-grid--five,
  .movie-grid--four,
  .category-grid,
  .overview-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .overview-card {
    grid-template-columns: 1fr;
  }

  .overview-card img {
    height: 180px;
  }

  .overview-card div {
    padding: 18px;
  }

  .ranking-card a {
    grid-template-columns: 52px 110px minmax(0, 1fr);
  }

  .ranking-card img {
    width: 110px;
    height: 78px;
  }
}

@media (max-width: 560px) {
  .site-container {
    width: min(100% - 22px, 1180px);
  }

  .hero-carousel {
    min-height: 560px;
  }

  .hero-content {
    align-items: flex-end;
    padding-bottom: 80px;
  }

  .hero-copy h1 {
    font-size: 2.35rem;
  }

  .hero-actions,
  .search-panel,
  .inline-filter {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-button,
  .ghost-button,
  .search-panel button,
  .search-panel input,
  .search-panel select,
  .inline-filter input,
  .inline-filter select {
    width: 100%;
  }

  .large-card-grid,
  .movie-grid--six,
  .movie-grid--five,
  .movie-grid--four,
  .category-grid,
  .overview-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .movie-card figure img {
    height: 230px;
  }

  .movie-card--compact figure img {
    height: 210px;
  }

  .movie-card--list a {
    gap: 12px;
  }

  .movie-card--list img {
    width: 120px;
    height: 86px;
  }

  .ranking-card a {
    grid-template-columns: 46px 88px minmax(0, 1fr);
    gap: 12px;
  }

  .ranking-card img {
    width: 88px;
    height: 68px;
  }

  .player-button {
    width: 68px;
    height: 68px;
  }
}
