:root {
  --primary-50: #f0f9f4;
  --primary-100: #dcf2e4;
  --primary-600: #267f56;
  --primary-700: #1f6546;
  --accent-50: #fef9ee;
  --accent-100: #fcefd0;
  --accent-500: #ea8b1c;
  --accent-600: #cf6913;
  --ink-900: #3d3d3d;
  --ink-700: #4f4f4f;
  --ink-600: #5d5d5d;
  --ink-500: #6d6d6d;
  --paper-50: #fafaf9;
  --paper-100: #f5f5f4;
  --paper-200: #e7e5e4;
  --white: #ffffff;
  --shadow-soft: 0 12px 30px rgba(61, 61, 61, 0.12);
  --shadow-strong: 0 25px 55px rgba(61, 61, 61, 0.22);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink-900);
  background: var(--paper-50);
  font-family: "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

main {
  min-height: 60vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--primary-100);
  box-shadow: 0 8px 22px rgba(61, 61, 61, 0.06);
  backdrop-filter: blur(14px);
}

.header-inner {
  max-width: 1180px;
  height: 68px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-600), var(--accent-600));
  border-radius: 999px;
  font-size: 15px;
  box-shadow: 0 10px 22px rgba(38, 127, 86, 0.25);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--ink-900);
  white-space: nowrap;
}

.brand-subtitle {
  margin-top: 3px;
  font-size: 12px;
  color: var(--ink-500);
  white-space: nowrap;
}

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

.nav-link {
  position: relative;
  color: var(--ink-700);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease;
}

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

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

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 0;
  color: var(--ink-700);
  background: transparent;
}

.menu-button span {
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
}

.mobile-nav {
  display: none;
  padding: 10px 24px 18px;
  border-top: 1px solid var(--primary-100);
  background: var(--white);
}

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

.mobile-nav-link {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: var(--ink-700);
  font-size: 14px;
  font-weight: 600;
}

.mobile-nav-link:hover,
.mobile-nav-link.is-active {
  color: var(--primary-700);
  background: var(--primary-50);
}

.hero-carousel {
  position: relative;
  height: 70vh;
  min-height: 520px;
  max-height: 820px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink-900);
}

.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,
.detail-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.03);
  filter: brightness(0.6);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 25%, rgba(234, 139, 28, 0.26), transparent 28%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.1));
}

.hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-100);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1,
.page-hero h1,
.detail-copy h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
  font-weight: 800;
  line-height: 1.08;
}

.hero-copy h1 {
  max-width: 850px;
  font-size: clamp(36px, 5vw, 64px);
}

.hero-subtitle {
  max-width: 720px;
  margin: 22px 0 26px;
  color: var(--paper-200);
  font-size: clamp(16px, 2vw, 22px);
}

.hero-feature {
  max-width: 660px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.hero-feature h2 {
  margin: 0 0 10px;
  font-size: clamp(23px, 3vw, 34px);
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
}

.hero-feature p {
  margin: 0 0 18px;
  color: var(--paper-200);
}

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

.hero-tags span,
.detail-tags span,
.pill-row span {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(38, 127, 86, 0.82);
  font-size: 12px;
  font-weight: 700;
}

.card-tags span {
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--primary-700);
  background: var(--primary-50);
  font-size: 12px;
}

.hero-actions,
.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.primary-button,
.ghost-button,
.section-link,
.global-search button,
.inline-filter button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: var(--radius-sm);
  border: 0;
  color: var(--white);
  background: var(--primary-600);
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button:hover,
.section-link:hover,
.global-search button:hover,
.inline-filter button:hover {
  background: var(--primary-700);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(38, 127, 86, 0.25);
}

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

.ghost-button:hover {
  background: rgba(255, 255, 255, 0.28);
}

.ghost-button.light {
  color: var(--primary-700);
  background: var(--primary-50);
  border-color: var(--primary-100);
}

.hero-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  font-size: 36px;
  line-height: 1;
  transform: translateY(-50%);
  backdrop-filter: blur(8px);
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
}

.hero-arrow.prev {
  left: 22px;
}

.hero-arrow.next {
  right: 22px;
}

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

.hero-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  transition: width 0.2s ease, background 0.2s ease;
}

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

.search-strip {
  max-width: 1180px;
  margin: -36px auto 0;
  padding: 0 24px;
  position: relative;
  z-index: 4;
}

.global-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.global-search input,
.inline-filter input,
.inline-filter select {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--primary-100);
  border-radius: var(--radius-sm);
  color: var(--ink-900);
  background: var(--white);
  outline: none;
}

.global-search input:focus,
.inline-filter input:focus,
.inline-filter select:focus {
  border-color: var(--primary-600);
  box-shadow: 0 0 0 3px rgba(38, 127, 86, 0.12);
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 4px 0;
}

.quick-links a {
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--primary-700);
  background: var(--primary-50);
  font-size: 13px;
  font-weight: 700;
}

.content-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px 24px 0;
}

.content-section.narrow {
  max-width: 920px;
}

.highlight-panel {
  margin-top: 64px;
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary-50), var(--accent-50));
}

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

.section-head h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.2;
}

.section-head p {
  margin: 8px 0 0;
  color: var(--ink-600);
}

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

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

.movie-card {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 8px 22px rgba(61, 61, 61, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.card-cover {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ink-900);
}

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

.movie-card:hover .card-cover img,
.featured-card:hover img {
  transform: scale(1.06);
}

.card-shade,
.featured-layer {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.movie-card:hover .card-shade {
  opacity: 1;
}

.card-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--primary-600);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.92);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

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

.card-duration,
.rank-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 8px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(61, 61, 61, 0.86);
  font-size: 12px;
  font-weight: 700;
}

.rank-badge {
  left: 10px;
  right: auto;
  background: var(--accent-600);
}

.card-body {
  padding: 16px;
}

.card-meta,
.card-stats,
.featured-stats,
.detail-facts {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--ink-500);
  font-size: 12px;
}

.card-meta {
  justify-content: space-between;
  margin-bottom: 8px;
}

.card-meta span:first-child {
  color: var(--primary-700);
  font-weight: 700;
}

.card-body h3 {
  min-height: 1.45em;
  margin: 0 0 8px;
  overflow: hidden;
  color: var(--ink-900);
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.movie-card:hover h3 {
  color: var(--primary-700);
}

.card-desc {
  min-height: 4.8em;
  margin: 0 0 12px;
  display: -webkit-box;
  overflow: hidden;
  color: var(--ink-600);
  font-size: 14px;
  line-height: 1.6;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.card-desc.compact {
  min-height: 3.2em;
  -webkit-line-clamp: 2;
}

.card-stats {
  justify-content: space-between;
  margin-top: 14px;
}

.card-stats span:first-child,
.featured-stats span:first-child,
.detail-facts span:first-child {
  color: var(--accent-600);
  font-weight: 800;
}

.featured-card {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 430px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--ink-900);
  box-shadow: var(--shadow-soft);
}

.featured-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.featured-layer {
  opacity: 1;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.18));
}

.featured-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 34px;
}

.featured-content h3 {
  margin: 16px 0 10px;
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.18;
}

.featured-content p {
  max-width: 720px;
  margin: 0 0 16px;
  color: var(--paper-200);
}

.featured-stats {
  color: var(--paper-200);
}

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

.category-tile,
.category-overview-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 22px rgba(61, 61, 61, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.category-posters,
.overview-covers {
  display: flex;
  min-height: 96px;
}

.category-posters img,
.overview-covers img {
  width: 64px;
  height: 96px;
  border: 3px solid var(--white);
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 14px rgba(0, 0, 0, 0.12);
}

.category-posters img + img,
.overview-covers img + img {
  margin-left: -28px;
}

.category-tile h3,
.category-overview-card h2 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
}

.category-tile p,
.category-overview-card p {
  margin: 0;
  color: var(--ink-600);
  font-size: 14px;
}

.category-overview-card {
  grid-template-columns: 1fr;
  align-items: stretch;
  padding: 22px;
  background: var(--white);
}

.category-overview-card span {
  margin-top: 8px;
  color: var(--primary-700);
  font-weight: 700;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink-900);
}

.small-hero {
  min-height: 330px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 82% 10%, rgba(234, 139, 28, 0.28), transparent 28%),
    linear-gradient(135deg, var(--ink-900), var(--primary-700));
}

.page-hero-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 70px 24px;
}

.page-hero h1 {
  max-width: 760px;
  font-size: clamp(32px, 5vw, 56px);
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--paper-200);
  font-size: 18px;
}

.inline-filter {
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 12px;
  max-width: 720px;
  margin-top: 28px;
}

.search-page-form {
  grid-template-columns: 1fr auto;
}

.tabs {
  display: grid;
  gap: 24px;
}

.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tab-button {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--primary-100);
  border-radius: 999px;
  color: var(--ink-700);
  background: var(--white);
  font-weight: 700;
}

.tab-button.is-active,
.tab-button:hover {
  color: var(--white);
  background: var(--primary-600);
}

.tab-panel {
  display: none;
}

.tab-panel.is-active {
  display: block;
}

.detail-hero {
  min-height: 620px;
}

.detail-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.26)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.5), transparent);
}

.detail-inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px 24px 70px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 32px;
  color: var(--paper-200);
  font-size: 14px;
}

.breadcrumbs a:hover {
  color: var(--accent-100);
}

.detail-grid {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 42px;
  align-items: center;
}

.detail-poster {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
}

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

.detail-copy h1 {
  max-width: 840px;
  font-size: clamp(36px, 6vw, 64px);
}

.detail-one-line {
  max-width: 820px;
  color: var(--paper-200);
  font-size: 20px;
}

.detail-facts {
  margin: 22px 0;
  color: var(--paper-200);
  font-size: 14px;
}

.watch-section h2,
.detail-content h2,
.text-panel h2 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
  font-size: clamp(24px, 3vw, 36px);
}

.watch-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #000000;
  box-shadow: var(--shadow-strong);
}

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

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  color: var(--white);
  background: rgba(0, 0, 0, 0.38);
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.play-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--primary-600);
  box-shadow: 0 16px 34px rgba(38, 127, 86, 0.36);
}

.detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.detail-content article,
.text-panel {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 8px 22px rgba(61, 61, 61, 0.07);
}

.detail-content p,
.text-panel p {
  margin: 0;
  color: var(--ink-600);
  font-size: 16px;
}

.search-results {
  min-height: 240px;
}

.search-empty {
  padding: 34px;
  border-radius: var(--radius-lg);
  color: var(--ink-600);
  background: var(--white);
  box-shadow: 0 8px 22px rgba(61, 61, 61, 0.07);
}

.site-footer {
  margin-top: 72px;
  color: var(--paper-200);
  background: var(--ink-900);
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 44px 24px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 28px;
}

.footer-logo {
  margin-bottom: 12px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
  font-size: 22px;
  font-weight: 800;
}

.footer-brand p {
  max-width: 560px;
  margin: 0;
  color: var(--paper-200);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-content: start;
  justify-content: flex-end;
}

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

.footer-copy {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--paper-200);
  font-size: 13px;
  text-align: center;
}

@media (max-width: 1100px) {
  .movie-grid,
  .large-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .desktop-nav {
    gap: 18px;
  }
}

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

  .menu-button {
    display: inline-flex;
  }

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

  .hero-arrow {
    display: none;
  }

  .movie-grid,
  .large-grid,
  .category-grid,
  .category-overview-grid,
  .detail-content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .detail-poster {
    max-width: 320px;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .header-inner {
    padding: 0 16px;
  }

  .brand-subtitle {
    display: none;
  }

  .hero-inner,
  .content-section,
  .page-hero-inner,
  .detail-inner,
  .search-strip {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-feature {
    padding: 18px;
  }

  .search-strip {
    margin-top: -24px;
  }

  .global-search,
  .inline-filter,
  .search-page-form {
    grid-template-columns: 1fr;
  }

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

  .movie-grid,
  .large-grid,
  .category-grid,
  .category-overview-grid,
  .detail-content {
    grid-template-columns: 1fr;
  }

  .category-tile {
    grid-template-columns: 1fr;
  }

  .featured-card {
    min-height: 360px;
  }

  .featured-content {
    padding: 24px;
  }
}
