:root {
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-300: #fcd34d;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --amber-700: #b45309;
  --amber-900: #78350f;
  --orange-50: #fff7ed;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --red-500: #ef4444;
  --pink-500: #ec4899;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-900: #111827;
  --shadow-md: 0 12px 30px rgba(120, 53, 15, 0.12);
  --shadow-lg: 0 22px 60px rgba(120, 53, 15, 0.18);
  --radius-lg: 22px;
  --radius-md: 16px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--gray-900);
  background: linear-gradient(180deg, var(--gray-50), var(--amber-50) 40%, #ffffff 100%);
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(255, 251, 235, 0.96), rgba(255, 247, 237, 0.96));
  border-bottom: 1px solid rgba(251, 191, 36, 0.28);
  box-shadow: 0 8px 30px rgba(146, 64, 14, 0.12);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(var(--max-width), calc(100% - 32px));
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  flex: 0 0 auto;
}

.brand-mark,
.footer-logo span {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: white;
  background: linear-gradient(135deg, var(--amber-400), var(--orange-500));
  box-shadow: 0 10px 24px rgba(245, 158, 11, 0.35);
}

.brand-text {
  font-size: 26px;
  line-height: 1;
  background: linear-gradient(90deg, var(--amber-600), var(--orange-600));
  -webkit-background-clip: text;
  color: transparent;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  white-space: nowrap;
}

.main-nav a,
.mobile-nav a {
  font-weight: 700;
  color: var(--gray-700);
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: var(--amber-600);
  transition: right 0.25s ease;
}

.main-nav a:hover,
.mobile-nav a:hover {
  color: var(--amber-700);
}

.main-nav a:hover::after {
  right: 0;
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.header-search input,
.filter-controls input,
.filter-controls select {
  border: 2px solid rgba(251, 191, 36, 0.42);
  border-radius: 999px;
  padding: 10px 14px;
  background: white;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

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

.header-search button,
.primary-btn,
.secondary-btn,
.ghost-btn,
.nav-toggle,
.slider-actions button {
  border: 0;
  cursor: pointer;
}

.header-search button,
.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 18px;
  color: white;
  font-weight: 800;
  background: linear-gradient(90deg, var(--amber-500), var(--orange-500));
  box-shadow: 0 14px 30px rgba(245, 158, 11, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-search button:hover,
.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(245, 158, 11, 0.34);
}

.secondary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 800;
}

.secondary-btn {
  color: var(--amber-900);
  background: rgba(255, 255, 255, 0.9);
}

.ghost-btn {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(251, 191, 36, 0.16);
  color: var(--amber-900);
  font-size: 22px;
}

.mobile-nav {
  display: none;
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 16px;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.mobile-nav.is-open {
  display: flex;
}

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: var(--amber-900);
}

.hero-track,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.hero-slide.is-active > img {
  animation: heroZoom 9s ease forwards;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 28%, rgba(251, 191, 36, 0.28), transparent 32%),
    linear-gradient(90deg, rgba(17, 24, 39, 0.9), rgba(120, 53, 15, 0.68) 45%, rgba(17, 24, 39, 0.28)),
    linear-gradient(0deg, rgba(17, 24, 39, 0.85), transparent 46%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
  min-height: 680px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: white;
  padding: 94px 0 110px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--amber-600);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
}

.hero .eyebrow,
.light .eyebrow,
.ranking-block .eyebrow {
  color: var(--amber-300);
}

.hero h1,
.hero h2 {
  max-width: 780px;
  margin: 16px 0 0;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.hero-movie-title {
  font-size: clamp(30px, 4vw, 52px) !important;
  letter-spacing: -0.03em !important;
  color: var(--amber-100);
}

.hero p {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
}

.hero-tags,
.hero-actions,
.detail-tags,
.detail-stats,
.movie-meta,
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

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

.hero-tags span,
.detail-tags span,
.detail-tags a,
.tag-cloud span {
  border-radius: 999px;
  padding: 7px 12px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.16);
  color: white;
  backdrop-filter: blur(12px);
}

.hero-actions {
  margin-top: 34px;
}

.hero-dots {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 44px;
  height: 6px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
}

.hero-dot.is-active {
  background: linear-gradient(90deg, var(--amber-400), var(--orange-500));
}

.section,
.page-main,
.detail-main {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 76px 0;
}

.section-raised {
  margin-top: -72px;
  position: relative;
  z-index: 6;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(251, 191, 36, 0.18);
  border-radius: 30px;
  padding: 44px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}

.section-heading {
  margin-bottom: 32px;
}

.section-heading.centered {
  text-align: center;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.section-heading.between {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
}

.section-heading h2,
.page-hero h1,
.detail-content h1 {
  margin: 8px 0 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.section-heading p,
.page-hero p {
  color: var(--gray-600);
  margin: 12px auto 0;
}

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

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

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

.movie-card > a {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.movie-poster {
  position: relative;
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--amber-100), var(--orange-50));
}

.movie-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17, 24, 39, 0.52), transparent 52%);
}

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

.movie-card > a:hover .movie-poster img,
.horizontal-card a:hover img,
.category-card:hover img {
  transform: scale(1.08);
}

.score-badge,
.type-badge {
  position: absolute;
  z-index: 2;
  top: 12px;
  border-radius: 999px;
  padding: 6px 10px;
  color: white;
  font-weight: 900;
  font-size: 13px;
}

.score-badge {
  left: 12px;
  background: linear-gradient(90deg, var(--amber-500), var(--orange-500));
}

.type-badge {
  right: 12px;
  background: rgba(17, 24, 39, 0.72);
  backdrop-filter: blur(8px);
}

.movie-body {
  padding: 18px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.movie-body h3,
.horizontal-info h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.25;
  font-weight: 900;
}

.movie-body p,
.horizontal-info p {
  color: var(--gray-600);
  margin: 10px 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-meta {
  margin-top: 14px;
  color: var(--gray-500);
  font-size: 13px;
  font-weight: 700;
}

.movie-meta span {
  display: inline-flex;
  align-items: center;
}

.movie-meta span + span::before {
  content: "·";
  margin-right: 10px;
  color: var(--amber-500);
}

.tag-line {
  min-height: 22px;
  margin-top: 8px;
  color: var(--amber-700);
  font-size: 13px;
  font-weight: 800;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.category-section {
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100% - var(--max-width)) / 2));
  padding-right: max(16px, calc((100% - var(--max-width)) / 2));
  background: linear-gradient(180deg, white, var(--amber-50));
}

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

.category-card {
  min-height: 220px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 24px;
  padding: 24px;
  color: white;
  box-shadow: var(--shadow-md);
  isolation: isolate;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-lg);
}

.category-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(17, 24, 39, 0.82), rgba(180, 83, 9, 0.28));
}

.category-card span {
  font-size: 25px;
  font-weight: 900;
}

.category-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.88);
}

.slider-section {
  overflow: hidden;
}

.card-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 310px);
  gap: 22px;
  overflow-x: auto;
  padding: 8px 4px 28px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.card-slider::-webkit-scrollbar {
  display: none;
}

.slider-item {
  scroll-snap-align: start;
}

.slider-actions {
  display: flex;
  gap: 10px;
}

.slider-actions button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  color: var(--gray-700);
  box-shadow: var(--shadow-md);
  font-size: 28px;
  line-height: 1;
}

.ranking-block {
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100% - var(--max-width)) / 2));
  padding-right: max(16px, calc((100% - var(--max-width)) / 2));
  background: linear-gradient(135deg, var(--amber-900), #431407 70%, #1f1308);
  color: white;
}

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

.ranking-list.bright .horizontal-card a {
  background: white;
}

.horizontal-card a {
  display: flex;
  gap: 16px;
  min-height: 150px;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, background 0.25s ease;
}

.horizontal-card a:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.18);
}

.horizontal-card figure {
  width: 190px;
  flex: 0 0 190px;
  margin: 0;
  overflow: hidden;
}

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

.horizontal-info {
  padding: 18px 18px 18px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.ranking-block .horizontal-info p,
.ranking-block .movie-meta,
.ranking-block .horizontal-info h3 {
  color: white;
}

.horizontal-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.section-more {
  margin-top: 32px;
  text-align: center;
}

.text-link {
  color: var(--amber-700);
  font-weight: 900;
}

.page-main {
  padding-bottom: 60px;
}

.page-hero {
  margin: 44px 0 18px;
  border-radius: 30px;
  padding: clamp(44px, 7vw, 84px);
  color: white;
  background:
    radial-gradient(circle at 80% 20%, rgba(251, 191, 36, 0.33), transparent 30%),
    linear-gradient(135deg, var(--amber-900), var(--orange-600));
  box-shadow: var(--shadow-lg);
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.88);
  margin-left: 0;
}

.page-hero .secondary-btn {
  color: var(--amber-900);
}

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

.overview-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 22px;
  align-items: center;
  padding: 18px;
  border-radius: 24px;
  background: white;
  box-shadow: var(--shadow-md);
}

.overview-cover {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  overflow: hidden;
  border-radius: 18px;
}

.overview-cover img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.overview-card h2 {
  margin: 6px 0 8px;
}

.overview-card p {
  margin: 0;
  color: var(--gray-600);
}

.overview-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.overview-links a {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--amber-100);
  color: var(--amber-900);
  font-weight: 800;
  font-size: 13px;
}

.filter-panel {
  margin-bottom: 28px;
  padding: 22px;
  border-radius: 24px;
  background: white;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.filter-panel h2 {
  margin: 0;
}

.filter-panel p {
  margin: 4px 0 0;
  color: var(--gray-600);
}

.filter-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.filter-controls input {
  min-width: 240px;
}

.empty-state {
  width: 100%;
  padding: 16px;
  border-radius: 16px;
  background: var(--amber-50);
  color: var(--amber-900);
  font-weight: 800;
}

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

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: var(--gray-600);
  font-weight: 800;
  margin-bottom: 26px;
}

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

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

.player-card,
.detail-content,
.side-panel,
.detail-side > img {
  border-radius: 24px;
  background: white;
  box-shadow: var(--shadow-md);
}

.player-card {
  overflow: hidden;
  background: #000000;
}

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

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

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  color: white;
  background: radial-gradient(circle, rgba(17, 24, 39, 0.18), rgba(17, 24, 39, 0.76));
  cursor: pointer;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.play-circle {
  width: 88px;
  height: 88px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber-400), var(--orange-500));
  font-size: 34px;
  box-shadow: 0 20px 45px rgba(245, 158, 11, 0.36);
}

.detail-content {
  margin-top: 22px;
  padding: clamp(24px, 4vw, 42px);
}

.detail-tags a,
.detail-tags span,
.tag-cloud span {
  color: var(--amber-900);
  background: var(--amber-100);
}

.detail-content h1 {
  margin-top: 18px;
}

.detail-one-line {
  font-size: 20px;
  color: var(--gray-700);
  font-weight: 700;
}

.detail-content h2 {
  margin: 30px 0 8px;
  font-size: 24px;
}

.detail-content p {
  color: var(--gray-700);
}

.detail-stats span {
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--gray-100);
  color: var(--gray-700);
  font-weight: 800;
}

.tag-cloud {
  margin-top: 28px;
}

.detail-side {
  position: sticky;
  top: 96px;
}

.detail-side > img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  overflow: hidden;
}

.side-panel {
  margin-top: 18px;
  padding: 22px;
}

.side-panel h2 {
  margin: 0 0 14px;
}

.side-panel dl {
  margin: 0;
}

.side-panel dt {
  color: var(--gray-500);
  font-size: 13px;
  font-weight: 900;
}

.side-panel dd {
  margin: 2px 0 14px;
  font-weight: 800;
}

.site-footer {
  background: linear-gradient(180deg, var(--amber-900), #451a03);
  color: var(--amber-50);
  margin-top: 40px;
}

.footer-inner {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 54px 0 34px;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1.1fr;
  gap: 30px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 900;
}

.footer-brand p,
.site-footer p,
.site-footer li {
  color: rgba(255, 251, 235, 0.76);
}

.site-footer h2 {
  margin: 0 0 14px;
  font-size: 18px;
  color: var(--amber-300);
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.site-footer a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(254, 243, 199, 0.16);
  text-align: center;
  padding: 18px;
  color: rgba(254, 243, 199, 0.78);
}

.is-filtered-out {
  display: none !important;
}

@keyframes heroZoom {
  from {
    transform: scale(1.04);
  }

  to {
    transform: scale(1.12);
  }
}

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

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

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

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

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

  .detail-side {
    position: static;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 18px;
  }

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

@media (max-width: 760px) {
  .header-inner {
    min-height: 62px;
  }

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

  .hero,
  .hero-content {
    min-height: 600px;
  }

  .hero-content {
    padding-top: 74px;
  }

  .section,
  .section-raised {
    padding: 48px 0;
  }

  .section-raised {
    width: min(var(--max-width), calc(100% - 32px));
    padding: 28px 18px;
  }

  .section-heading.between,
  .filter-panel {
    display: block;
  }

  .filter-controls {
    margin-top: 16px;
    justify-content: stretch;
  }

  .filter-controls input,
  .filter-controls select {
    width: 100%;
    min-width: 0;
  }

  .movie-grid,
  .top-grid,
  .category-grid,
  .ranking-list,
  .overview-grid {
    grid-template-columns: 1fr;
  }

  .horizontal-card a,
  .overview-card {
    grid-template-columns: 1fr;
    display: block;
  }

  .horizontal-card figure {
    width: 100%;
    height: 180px;
  }

  .horizontal-info {
    padding: 16px;
  }

  .overview-cover {
    margin-bottom: 16px;
  }

  .detail-side {
    display: block;
  }

  .detail-side > img {
    max-height: 420px;
  }

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