* {
  box-sizing: border-box;
}

:root {
  --orange: #f97316;
  --orange-dark: #ea580c;
  --amber: #f59e0b;
  --yellow: #facc15;
  --text: #1f2937;
  --muted: #6b7280;
  --line: #e5e7eb;
  --soft: #fff7ed;
  --page: #f9fafb;
  --white: #ffffff;
  --dark: #111827;
  --radius: 18px;
  --shadow: 0 14px 34px rgba(31, 41, 55, 0.10);
  --shadow-strong: 0 24px 60px rgba(31, 41, 55, 0.18);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background: var(--page);
}

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

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

button,
input {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, #fffbeb 0%, #fff7ed 100%);
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.10);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--text);
  white-space: nowrap;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.24);
  transition: transform 0.24s ease;
}

.brand:hover .brand-mark {
  transform: scale(1.08);
}

.brand-text {
  font-size: 21px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 13px;
  border-radius: 12px;
  color: #374151;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover {
  color: var(--orange-dark);
  background: rgba(249, 115, 22, 0.10);
  transform: translateY(-1px);
}

.nav-link.active {
  color: #ffffff;
  background: var(--orange);
  box-shadow: 0 10px 22px rgba(249, 115, 22, 0.25);
}

.mobile-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: rgba(249, 115, 22, 0.10);
  cursor: pointer;
}

.mobile-menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  border-radius: 99px;
}

.mobile-nav {
  display: none;
  padding: 0 16px 16px;
  border-top: 1px solid rgba(249, 115, 22, 0.16);
}

.mobile-nav.open {
  display: grid;
  gap: 8px;
}

.hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: linear-gradient(135deg, #ffedd5 0%, #fffbeb 48%, #fef3c7 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(42px);
  opacity: 0.30;
  pointer-events: none;
}

.hero-glow.one {
  width: 200px;
  height: 200px;
  top: 48px;
  left: 8%;
  background: var(--orange);
}

.hero-glow.two {
  width: 260px;
  height: 260px;
  right: 10%;
  bottom: 20px;
  background: var(--amber);
}

.hero-glow.three {
  width: 180px;
  height: 180px;
  left: 48%;
  top: 35%;
  background: var(--yellow);
}

.hero-inner {
  position: relative;
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 460px;
  align-items: center;
  gap: 56px;
  padding: 56px 0;
}

.hero-copy h1 {
  margin: 0 0 22px;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(90deg, var(--orange), var(--amber));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-copy p {
  max-width: 690px;
  margin: 0 0 28px;
  color: #4b5563;
  font-size: 20px;
  line-height: 1.75;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(31, 41, 55, 0.16);
}

.button.primary {
  color: #ffffff;
  background: linear-gradient(90deg, var(--orange), var(--amber));
}

.button.light {
  color: #374151;
  background: #ffffff;
  border: 1px solid rgba(229, 231, 235, 0.90);
}

.hero-panel {
  position: relative;
  border-radius: 30px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(16px);
}

.hero-slider {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #111827;
  aspect-ratio: 4 / 5;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: end;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

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

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.05), rgba(17, 24, 39, 0.88));
}

.hero-slide-content {
  position: relative;
  z-index: 3;
  padding: 28px;
  color: #ffffff;
}

.hero-slide-content small {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.92);
  font-weight: 700;
}

.hero-slide-content h2 {
  margin: 0 0 10px;
  font-size: 28px;
}

.hero-slide-content p {
  margin: 0 0 18px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.86);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
}

.slider-controls button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: #fff7ed;
  color: var(--orange-dark);
  font-weight: 800;
  cursor: pointer;
}

.slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
}

.slider-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #fed7aa;
  cursor: pointer;
}

.slider-dot.is-active {
  width: 26px;
  background: var(--orange);
}

.section {
  padding: 72px 0;
}

.section.white {
  background: #ffffff;
}

.section.soft {
  background: linear-gradient(135deg, #fff7ed 0%, #fffbeb 100%);
}

.section.gray {
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}

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

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange-dark);
  font-weight: 800;
  margin-bottom: 8px;
}

.section-head h2,
.page-title h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
}

.section-head p,
.page-title p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

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

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

.movie-card {
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}

.movie-cover {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #f3f4f6;
}

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

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

.movie-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0);
  transition: background 0.24s ease;
}

.movie-card:hover .movie-cover::after {
  background: rgba(17, 24, 39, 0.28);
}

.play-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%) scale(0.85);
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.90);
  opacity: 0;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.movie-card:hover .play-badge,
.compact-card:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.year-badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  padding: 4px 10px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  background: rgba(0, 0, 0, 0.66);
}

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

.movie-title {
  display: -webkit-box;
  min-height: 48px;
  margin-bottom: 8px;
  overflow: hidden;
  color: var(--text);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.2s ease;
}

.movie-card:hover .movie-title,
.list-card:hover h3 a {
  color: var(--orange-dark);
}

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

.movie-meta,
.list-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #6b7280;
  font-size: 13px;
}

.movie-meta span,
.list-meta span {
  padding: 4px 8px;
  border-radius: 999px;
  background: #f3f4f6;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.tag-row span,
.detail-tag {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  color: #9a3412;
  background: #ffedd5;
  font-size: 12px;
  font-weight: 700;
}

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

.category-tile {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 22px;
  color: #ffffff;
  border-radius: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-tile:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.08), rgba(17, 24, 39, 0.76));
}

.category-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.42;
  transition: transform 0.35s ease;
}

.category-tile:hover .category-bg {
  transform: scale(1.08);
}

.category-icon,
.category-tile strong,
.category-tile small {
  position: relative;
  z-index: 2;
}

.category-icon {
  font-size: 34px;
}

.category-tile strong {
  font-size: 22px;
}

.category-tile small {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

.grad-orange { background: linear-gradient(135deg, #fb923c, #f97316); }
.grad-red { background: linear-gradient(135deg, #f87171, #ef4444); }
.grad-blue { background: linear-gradient(135deg, #60a5fa, #2563eb); }
.grad-green { background: linear-gradient(135deg, #34d399, #059669); }
.grad-purple { background: linear-gradient(135deg, #a78bfa, #7c3aed); }
.grad-pink { background: linear-gradient(135deg, #fb7185, #db2777); }
.grad-indigo { background: linear-gradient(135deg, #818cf8, #4f46e5); }
.grad-amber { background: linear-gradient(135deg, #fbbf24, #d97706); }

.list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.list-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  overflow: hidden;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.list-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}

.list-cover {
  position: relative;
  overflow: hidden;
  min-height: 170px;
}

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

.list-cover span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.92);
}

.list-body {
  padding: 18px;
}

.eyebrow {
  margin-bottom: 6px;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 800;
}

.list-body h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.list-body p {
  display: -webkit-box;
  margin: 0 0 12px;
  overflow: hidden;
  color: var(--muted);
  line-height: 1.65;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  background: linear-gradient(135deg, #f97316 0%, #f59e0b 100%);
  color: #ffffff;
}

.page-hero::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: 12%;
  top: 18%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  filter: blur(12px);
}

.page-title {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.page-title p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  padding: 18px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.search-box {
  position: relative;
  width: min(100%, 560px);
}

.search-box input {
  width: 100%;
  min-height: 50px;
  padding: 0 18px 0 48px;
  border: 1px solid var(--line);
  border-radius: 16px;
  outline: none;
  color: var(--text);
  background: #ffffff;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.search-box input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

.search-box::before {
  content: "⌕";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  font-size: 24px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: #6b7280;
  font-size: 14px;
}

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

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

.player-card,
.detail-card,
.side-card {
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.player-card {
  overflow: hidden;
  margin-bottom: 24px;
  background: #000000;
}

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

.player-shell video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000000;
}

.play-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.62));
  cursor: pointer;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.play-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.play-overlay i {
  width: 78px;
  height: 78px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-style: normal;
  font-size: 26px;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  box-shadow: 0 14px 30px rgba(249, 115, 22, 0.35);
}

.play-overlay span {
  font-size: 18px;
  font-weight: 800;
}

.detail-card {
  padding: 28px;
  margin-bottom: 24px;
}

.detail-card h1 {
  margin: 12px 0 18px;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.2;
}

.detail-card h2,
.side-card h2 {
  margin: 0 0 14px;
  font-size: 24px;
}

.detail-card p {
  color: #4b5563;
  line-height: 1.9;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.detail-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  color: #374151;
  background: #f3f4f6;
  font-weight: 700;
}

.side-card {
  padding: 20px;
  margin-bottom: 22px;
}

.poster-large {
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 3 / 4;
  margin-bottom: 18px;
  background: #f3f4f6;
}

.poster-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-list {
  display: grid;
  gap: 10px;
  color: #4b5563;
}

.info-list div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f3f4f6;
}

.info-list strong {
  color: var(--text);
  white-space: nowrap;
}

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

.compact-grid {
  display: grid;
  gap: 12px;
}

.compact-card {
  position: relative;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 16px;
  background: #f9fafb;
  transition: background 0.2s ease, transform 0.2s ease;
}

.compact-card:hover {
  background: #fff7ed;
  transform: translateX(4px);
}

.compact-card img {
  width: 86px;
  height: 64px;
  object-fit: cover;
  border-radius: 12px;
}

.compact-card span {
  display: block;
  overflow: hidden;
  color: var(--text);
  font-weight: 800;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.compact-card small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.rank-list {
  display: grid;
  gap: 14px;
}

.rank-item {
  display: grid;
  grid-template-columns: 64px 96px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 14px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
}

.rank-number {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--orange), var(--amber));
}

.rank-item img {
  width: 96px;
  height: 70px;
  object-fit: cover;
  border-radius: 14px;
}

.rank-info h2,
.rank-info h3 {
  margin: 0 0 6px;
  font-size: 20px;
}

.rank-info p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  line-height: 1.6;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.rank-link {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 800;
  background: var(--orange);
}

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

.empty-state {
  grid-column: 1 / -1;
  padding: 40px;
  text-align: center;
  color: var(--muted);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.cta-band {
  text-align: center;
  color: #ffffff;
  background: linear-gradient(90deg, var(--orange), var(--amber));
}

.cta-band h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 42px);
}

.cta-band p {
  margin: 0 0 26px;
  font-size: 18px;
  opacity: 0.90;
}

.site-footer {
  color: #d1d5db;
  background: linear-gradient(180deg, #1f2937 0%, #111827 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding: 48px 0;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: #ffffff;
}

.site-footer p,
.site-footer li {
  color: #d1d5db;
  line-height: 1.75;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a:hover {
  color: #fb923c;
}

.footer-bottom {
  padding: 18px 0;
  text-align: center;
  color: #9ca3af;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

  .mobile-menu-button {
    display: block;
  }

  .hero-inner,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 560px;
  }

  .movie-grid,
  .movie-grid.dense,
  .category-grid,
  .search-results {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .list-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .brand-text {
    font-size: 18px;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    padding: 42px 0;
    gap: 34px;
  }

  .hero-copy p {
    font-size: 17px;
  }

  .hero-panel {
    padding: 10px;
  }

  .hero-slide-content {
    padding: 20px;
  }

  .section {
    padding: 48px 0;
  }

  .section-head,
  .toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .movie-grid,
  .movie-grid.dense,
  .category-grid,
  .related-grid,
  .search-results {
    grid-template-columns: 1fr;
  }

  .list-card {
    grid-template-columns: 128px minmax(0, 1fr);
  }

  .list-cover {
    min-height: 150px;
  }

  .rank-item {
    grid-template-columns: 46px 84px minmax(0, 1fr);
  }

  .rank-link {
    grid-column: 2 / -1;
    justify-content: center;
  }

  .detail-card,
  .side-card {
    padding: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}
