:root {
  --brand: #d97706;
  --brand-dark: #b45309;
  --brand-soft: #fff7ed;
  --blue: #2563eb;
  --ink: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --panel: #ffffff;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fff7ed 0%, #ffffff 360px, #f8fafc 100%);
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(229, 231, 235, 0.85);
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
  background: linear-gradient(135deg, #2563eb, #d97706);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.22);
  transition: transform 0.2s ease;
}

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

.brand-copy strong {
  display: block;
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.brand-copy small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

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

.nav-link,
.dropdown-button {
  border: 0;
  background: transparent;
  color: #374151;
  font-weight: 700;
  cursor: pointer;
  padding: 10px 0;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.dropdown-button:hover {
  color: var(--brand);
}

.nav-dropdown {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 16px);
  right: 0;
  width: 240px;
  padding: 10px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s ease;
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-panel a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  color: #475569;
  font-weight: 700;
}

.dropdown-panel a:hover {
  color: var(--brand);
  background: #fff7ed;
}

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

.header-search input,
.mobile-search input,
.search-panel input,
.page-filter {
  border: 1px solid #d1d5db;
  outline: none;
  background: #ffffff;
  border-radius: 999px;
  transition: 0.2s ease;
}

.header-search input {
  width: 260px;
  padding: 11px 108px 11px 16px;
}

.header-search button,
.mobile-search button {
  position: absolute;
  right: 4px;
  border: 0;
  border-radius: 999px;
  padding: 8px 16px;
  color: #ffffff;
  background: var(--brand);
  cursor: pointer;
  font-weight: 700;
}

.header-search input:focus,
.mobile-search input:focus,
.search-panel input:focus,
.page-filter:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.13);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 0;
  border-radius: 12px;
  background: #f3f4f6;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: #111827;
  transition: 0.2s ease;
}

.mobile-panel {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 16px 0 22px;
  border-top: 1px solid var(--line);
}

.mobile-search {
  position: relative;
  margin-bottom: 12px;
}

.mobile-search input {
  width: 100%;
  padding: 12px 96px 12px 16px;
}

.mobile-link {
  display: block;
  padding: 13px 4px;
  border-bottom: 1px solid #f1f5f9;
  color: #374151;
  font-weight: 800;
}

.mobile-link.is-active {
  color: var(--brand);
}

.hero-carousel {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: #111827;
}

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

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 28%, rgba(217, 119, 6, 0.35), transparent 34%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.58) 44%, rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.68), transparent 48%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1240px, calc(100% - 32px));
  min-height: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
}

.hero-kicker {
  width: fit-content;
  padding: 8px 14px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  color: #ffedd5;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  font-weight: 800;
}

.hero-content h1 {
  max-width: 820px;
  margin: 0 0 22px;
  font-size: clamp(40px, 8vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  text-shadow: 0 14px 36px rgba(0, 0, 0, 0.42);
}

.hero-content p {
  max-width: 760px;
  margin: 0 0 26px;
  color: #f8fafc;
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.8;
}

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

.hero-tags span,
.detail-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.hero-tags span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 24px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), #ea580c);
  box-shadow: 0 16px 32px rgba(217, 119, 6, 0.25);
}

.button-glass {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(14px);
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 32px;
  z-index: 4;
  width: min(1240px, calc(100% - 32px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-arrow {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
  backdrop-filter: blur(12px);
}

.hero-dots {
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 28px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
  cursor: pointer;
}

.hero-dot.is-active {
  width: 48px;
  background: #ffffff;
}

.stats-strip {
  width: min(1240px, calc(100% - 32px));
  margin: -44px auto 0;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stats-strip span {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.stats-strip strong {
  display: block;
  color: var(--brand);
  font-size: 26px;
  line-height: 1;
}

.stats-strip em {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
}

.content-section {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 0;
}

.soft-panel {
  padding: 42px;
  margin-top: 72px;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(255, 247, 237, 0.96), rgba(239, 246, 255, 0.96));
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}

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

.section-heading h2 {
  margin: 0;
  color: #1f2937;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.section-heading p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.section-more {
  color: var(--brand);
  font-weight: 900;
  white-space: nowrap;
}

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

.movie-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.09);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.16);
}

.poster-wrap {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0f172a;
}

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

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

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.68), transparent 60%);
  opacity: 0.72;
}

.duration-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(217, 119, 6, 0.92);
  font-size: 12px;
  font-weight: 900;
}

.play-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(217, 119, 6, 0.92);
  transform: translate(-50%, -50%) scale(0.84);
  opacity: 0;
  transition: 0.25s ease;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

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

.card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
}

.card-body strong {
  color: #1f2937;
  font-size: 18px;
  line-height: 1.35;
}

.movie-card:hover .card-body strong,
.list-card:hover strong,
.rank-card:hover strong {
  color: var(--brand);
}

.card-body em {
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
  line-height: 1.65;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #64748b;
  font-size: 13px;
}

.meta-row span {
  padding: 4px 8px;
  border-radius: 999px;
  background: #f8fafc;
}

.tag-row span {
  color: #92400e;
  background: #ffedd5;
}

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

.category-card {
  position: relative;
  min-height: 230px;
  padding: 24px;
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  transition: 0.25s ease;
}

.category-card::after {
  content: "";
  position: absolute;
  top: -38px;
  right: -38px;
  width: 130px;
  height: 130px;
  border-radius: 999px;
  background: var(--cat-color);
  opacity: 0.1;
}

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

.category-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--cat-color);
  font-size: 24px;
  font-weight: 900;
}

.category-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
}

.category-card em {
  display: block;
  color: var(--muted);
  font-style: normal;
  line-height: 1.65;
}

.category-samples {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 18px;
  font-size: 13px;
}

.category-samples a {
  color: #475569;
}

.category-samples a:hover {
  color: var(--brand);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(310px, 1fr);
  gap: 36px;
  align-items: start;
}

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

.list-card,
.rank-card {
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transition: 0.25s ease;
}

.list-card {
  padding: 14px;
}

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

.list-card img {
  width: 190px;
  height: 108px;
  border-radius: 14px;
  object-fit: cover;
  transition: 0.4s ease;
}

.list-card span,
.rank-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 7px;
}

.list-card strong,
.rank-copy strong {
  color: #1f2937;
  font-size: 17px;
  line-height: 1.35;
}

.list-card em,
.rank-copy em {
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
  line-height: 1.55;
}

.list-card small,
.rank-copy small {
  color: #64748b;
}

.rank-card {
  padding: 12px;
}

.rank-number {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  font-weight: 900;
  flex-shrink: 0;
}

.rank-card img {
  width: 90px;
  height: 64px;
  border-radius: 12px;
  object-fit: cover;
  transition: 0.4s ease;
}

.rank-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(345px, 1fr));
  gap: 18px;
}

.page-hero {
  min-height: 300px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.18), transparent 30%),
    linear-gradient(135deg, #1d4ed8, #d97706);
}

.page-hero div {
  width: min(1240px, calc(100% - 32px));
  padding: 58px 0;
}

.page-hero p {
  margin: 0 0 12px;
  color: #ffedd5;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(38px, 7vw, 68px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.page-hero span {
  display: block;
  max-width: 760px;
  color: #f8fafc;
  font-size: 18px;
  line-height: 1.8;
}

.category-hero {
  background:
    radial-gradient(circle at 74% 26%, rgba(255, 255, 255, 0.18), transparent 32%),
    linear-gradient(135deg, var(--cat-color), #111827);
}

.category-overview-grid {
  display: grid;
  gap: 24px;
}

.category-overview {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  padding: 24px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
}

.category-poster-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.category-poster-row img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 18px;
}

.category-overview-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.category-overview-copy span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: var(--cat-color);
  font-size: 24px;
  font-weight: 900;
}

.category-overview-copy h2 {
  margin: 18px 0 10px;
  font-size: 34px;
}

.category-overview-copy p {
  max-width: 680px;
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.8;
}

.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px;
  margin-bottom: 24px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 8px 26px rgba(15, 23, 42, 0.08);
}

.filter-bar label {
  color: #1f2937;
  font-weight: 900;
}

.page-filter {
  width: min(480px, 100%);
  padding: 12px 16px;
}

.search-panel {
  display: flex;
  gap: 14px;
  padding: 18px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.search-panel input {
  flex: 1;
  min-width: 0;
  padding: 14px 18px;
}

.search-results:empty {
  display: none;
}

.detail-layout {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 32px;
  align-items: start;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: #64748b;
  font-size: 14px;
}

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

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #000000;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.25);
}

.movie-player {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.cover-layer {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

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

.cover-play {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), #ea580c);
  font-size: 34px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.42);
  transform: translateX(3px);
}

.detail-article,
.side-card {
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
}

.detail-article {
  margin-top: 24px;
  padding: 30px;
}

.detail-article h1 {
  margin: 0 0 14px;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.05em;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.detail-meta span {
  padding: 7px 12px;
  border-radius: 999px;
  color: #475569;
  background: #f1f5f9;
  font-weight: 800;
  font-size: 13px;
}

.lead-text {
  color: #334155;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
}

.detail-tags {
  margin: 18px 0;
}

.detail-tags span {
  color: #92400e;
  background: #ffedd5;
}

.detail-article p {
  color: #374151;
  line-height: 1.95;
}

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

.side-card {
  padding: 20px;
}

.poster-side img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 16px;
}

.poster-side strong {
  display: block;
  font-size: 20px;
  margin-bottom: 6px;
}

.poster-side span {
  color: var(--muted);
}

.side-card h2 {
  margin: 0 0 16px;
  font-size: 22px;
}

.side-list a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid #eef2f7;
  color: #334155;
  font-weight: 700;
}

.side-list a:hover {
  color: var(--brand);
}

.site-footer {
  margin-top: 86px;
  color: #cbd5e1;
  background: #0f172a;
}

.footer-inner {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 46px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
}

.footer-brand {
  color: #ffffff;
  font-size: 26px;
  font-weight: 900;
}

.footer-inner p {
  max-width: 720px;
  color: #94a3b8;
  line-height: 1.8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-content: start;
}

.footer-links a {
  color: #e2e8f0;
  font-weight: 800;
}

.footer-links a:hover {
  color: #f59e0b;
}

.footer-bottom {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 28px;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  color: #94a3b8;
  font-size: 14px;
}

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

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

  .menu-toggle {
    display: block;
  }

  .detail-layout,
  .two-column,
  .category-overview {
    grid-template-columns: 1fr;
  }

  .detail-side {
    position: static;
  }
}

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

  .brand-copy small {
    display: none;
  }

  .brand-copy strong {
    font-size: 22px;
  }

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

  .hero-content {
    justify-content: flex-end;
    padding-bottom: 104px;
  }

  .hero-actions,
  .search-panel,
  .filter-bar,
  .section-heading,
  .footer-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 16px;
  }

  .soft-panel {
    padding: 26px;
  }

  .list-card {
    align-items: flex-start;
  }

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

  .category-poster-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-poster-row img {
    height: 132px;
  }

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

@media (max-width: 520px) {
  .movie-grid {
    grid-template-columns: 1fr;
  }

  .stats-strip {
    grid-template-columns: 1fr;
  }

  .content-section,
  .detail-layout {
    width: min(100% - 22px, 1240px);
  }

  .detail-article {
    padding: 22px;
  }
}
