:root {
  --primary-50: #f0f9f4;
  --primary-100: #dcf2e4;
  --primary-200: #bce5cd;
  --primary-400: #5ab889;
  --primary-600: #267f56;
  --primary-700: #1f6546;
  --accent-50: #fff7e9;
  --accent-100: #fcefd0;
  --accent-400: #f1a73c;
  --accent-600: #cf6913;
  --accent-700: #ac4a12;
  --ink-900: #3d3d3d;
  --ink-700: #4f4f4f;
  --ink-600: #5d5d5d;
  --ink-500: #6d6d6d;
  --paper-50: #fafaf9;
  --paper-200: #e7e5e4;
  --paper-300: #d6d3d1;
  --paper-400: #a8a29e;
  --white: #ffffff;
  --shadow-soft: 0 18px 40px rgba(61, 61, 61, 0.12);
  --shadow-card: 0 10px 30px rgba(61, 61, 61, 0.10);
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  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;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.header-inner {
  width: min(1180px, calc(100% - 32px));
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-600), var(--primary-400));
  box-shadow: 0 12px 28px rgba(38, 127, 86, 0.25);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.brand-copy strong {
  font-family: Georgia, Cambria, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: 0.03em;
}

.brand-copy em {
  color: var(--ink-500);
  font-size: 12px;
  font-style: normal;
}

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

.nav-link {
  position: relative;
  color: var(--ink-700);
  font-size: 15px;
  font-weight: 600;
  transition: color 0.25s 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: -24px;
  height: 2px;
  border-radius: 999px;
  background: var(--primary-600);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: var(--primary-50);
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--primary-700);
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 14px;
  padding: 12px;
  border: 1px solid var(--primary-100);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

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

.mobile-nav__link {
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--ink-700);
  font-weight: 600;
}

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

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

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: opacity 0.8s ease, transform 1.1s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.12));
}

.hero-content {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.6fr);
  align-items: center;
  gap: 42px;
}

.hero-copy {
  max-width: 690px;
  color: var(--white);
}

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

.eyebrow.dark {
  color: var(--primary-700);
}

.hero h1,
.page-hero h1,
.detail-copy h1 {
  margin: 0;
  font-family: Georgia, Cambria, "Times New Roman", serif;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.hero h1 {
  font-size: clamp(42px, 5.8vw, 72px);
}

.hero-subtitle {
  margin: 16px 0 0;
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 700;
}

.hero-text {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--paper-200);
  font-size: 18px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 12px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--primary-600);
  box-shadow: 0 14px 30px rgba(38, 127, 86, 0.28);
}

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

.button-glass {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.hero-feature-card {
  display: grid;
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.hero-feature-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
}

.hero-feature-card strong {
  display: block;
  font-size: 22px;
}

.hero-feature-card em {
  display: block;
  margin-top: 6px;
  color: var(--paper-200);
  font-style: normal;
}

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

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

.hero-arrow-left {
  left: 18px;
}

.hero-arrow-right {
  right: 18px;
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  transition: width 0.25s ease, background 0.25s ease;
}

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

.search-panel {
  width: min(1180px, calc(100% - 32px));
  margin: -36px auto 0;
  position: relative;
  z-index: 6;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 480px);
  align-items: center;
  gap: 28px;
  padding: 26px;
  border: 1px solid var(--primary-100);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}

.search-panel.inner-panel {
  margin-top: 28px;
}

.search-panel h2 {
  margin: 0 0 6px;
  font-size: 24px;
}

.search-panel p {
  margin: 0;
  color: var(--ink-600);
}

.search-box {
  display: grid;
  gap: 7px;
}

.search-box span {
  color: var(--primary-700);
  font-size: 13px;
  font-weight: 800;
}

.search-box input {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--primary-200);
  border-radius: 14px;
  color: var(--ink-900);
  background: var(--primary-50);
  outline: none;
}

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

.section-wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 72px auto;
}

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

.section-heading.center {
  text-align: center;
}

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

.section-heading h2,
.detail-content h2,
.ranking-aside h2 {
  margin: 0 0 8px;
  font-family: Georgia, Cambria, "Times New Roman", serif;
  color: var(--ink-900);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.12;
}

.section-heading p,
.detail-content p,
.ranking-aside p {
  margin: 0;
  color: var(--ink-600);
}

.section-link {
  display: inline-flex;
  align-items: center;
  color: var(--primary-700);
  font-weight: 800;
}

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

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

.movie-card {
  overflow: hidden;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 42px rgba(61, 61, 61, 0.16);
}

.movie-card__poster {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-100), var(--accent-100));
}

.movie-card__poster img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.play-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(38, 127, 86, 0.88);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.86);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.rank-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  min-width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--accent-600);
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(207, 105, 19, 0.25);
}

.movie-card__body {
  padding: 18px;
}

.movie-card__tags,
.inline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.movie-card__tags span,
.inline-tags span {
  padding: 4px 9px;
  border-radius: 999px;
  color: var(--primary-700);
  background: var(--primary-50);
  font-size: 12px;
  font-weight: 700;
}

.movie-card h3 {
  margin: 12px 0 8px;
  font-size: 19px;
  line-height: 1.28;
}

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

.movie-card__desc {
  min-height: 50px;
  margin: 0;
  color: var(--ink-600);
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  color: var(--ink-500);
  font-size: 13px;
}

.featured-section {
  margin-top: 64px;
}

.featured-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  max-width: 980px;
  margin: 0 auto;
}

.featured-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.featured-copy {
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.featured-copy h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.1;
}

.featured-copy p {
  margin: 0;
  color: var(--ink-600);
}

.category-section {
  padding: 34px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--primary-50), var(--accent-50));
}

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

.category-tile {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  padding: 20px;
  border-radius: 20px;
  color: var(--white);
  background: var(--ink-900);
  box-shadow: var(--shadow-card);
}

.category-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.48;
  transition: transform 0.45s ease;
}

.category-tile:hover img {
  transform: scale(1.06);
}

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

.category-tile span,
.category-tile em {
  position: relative;
  z-index: 1;
  display: block;
}

.category-tile span {
  margin-top: 98px;
  font-size: 24px;
  font-weight: 900;
}

.category-tile em {
  margin-top: 8px;
  color: var(--paper-200);
  font-size: 14px;
  font-style: normal;
}

.page-hero {
  color: var(--white);
  background: radial-gradient(circle at 18% 20%, rgba(90, 184, 137, 0.62), transparent 32%), linear-gradient(135deg, var(--ink-900), #1e3f31 56%, var(--primary-700));
}

.compact-hero,
.ranking-hero {
  padding: 82px 0;
}

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

.page-hero h1 {
  font-size: clamp(38px, 5vw, 64px);
}

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

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

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

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

.category-overview-card__covers img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  background: var(--primary-50);
}

.category-overview-card h2 {
  margin: 6px 0 8px;
  font-size: 25px;
}

.category-overview-card p {
  margin: 0 0 18px;
  color: var(--ink-600);
}

.filter-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 38px;
  margin-bottom: 26px;
}

.filter-strip button {
  border: 0;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--ink-700);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

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

.ranking-layout {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 28px;
  align-items: start;
}

.ranking-aside {
  position: sticky;
  top: 96px;
  padding: 20px;
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.mini-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.mini-card {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 12px;
}

.mini-card img {
  width: 64px;
  height: 54px;
  object-fit: cover;
  border-radius: 10px;
  background: var(--primary-50);
}

.mini-card strong,
.mini-card em {
  display: block;
}

.mini-card strong {
  line-height: 1.25;
}

.mini-card em {
  color: var(--ink-500);
  font-size: 12px;
  font-style: normal;
}

.mini-rank {
  position: absolute;
  left: -7px;
  top: -7px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  color: var(--white);
  background: var(--accent-600);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  line-height: 22px;
}

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

.breadcrumb {
  width: min(1180px, calc(100% - 32px));
  margin: 28px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--ink-500);
  font-size: 14px;
}

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

.detail-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 34px;
  align-items: stretch;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--white), var(--primary-50));
  box-shadow: var(--shadow-soft);
}

.detail-cover img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 22px;
  background: var(--primary-100);
}

.detail-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.detail-copy h1 {
  color: var(--ink-900);
  font-size: clamp(34px, 4vw, 60px);
}

.detail-one-line {
  margin: 0;
  color: var(--ink-600);
  font-size: 19px;
}

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

.detail-meta span {
  padding: 12px;
  border-radius: 14px;
  color: var(--ink-700);
  background: var(--white);
}

.detail-meta strong {
  display: block;
  color: var(--primary-700);
  font-size: 12px;
}

.player-section {
  margin-top: 42px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #101513;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.22);
  aspect-ratio: 16 / 9;
}

.movie-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #101513;
}

.player-cover {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 0;
  color: var(--white);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.72));
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.player-cover__icon {
  width: 78px;
  height: 78px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--primary-600);
  box-shadow: 0 18px 38px rgba(38, 127, 86, 0.36);
  font-size: 28px;
}

.player-cover strong {
  font-size: clamp(20px, 3vw, 34px);
}

.player-message {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 3;
  margin: 0;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(172, 74, 18, 0.92);
  transform: translateX(-50%);
}

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

.detail-content article {
  padding: 26px;
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.detail-content p {
  font-size: 16px;
}

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

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

.footer-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 46px 0;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 42px;
}

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

.site-footer p {
  max-width: 440px;
  margin: 0;
}

.site-footer h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 16px;
}

.site-footer a {
  display: block;
  margin: 8px 0;
  color: var(--paper-300);
}

.site-footer a:hover {
  color: var(--primary-400);
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--paper-400);
  font-size: 14px;
  text-align: center;
}

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

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

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

  .hero-feature-card {
    display: none;
  }

  .detail-cover img {
    min-height: auto;
    aspect-ratio: 16 / 9;
  }

  .ranking-aside {
    position: static;
  }
}

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

  .menu-button {
    display: block;
  }

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

  .hero-content {
    min-height: 620px;
    padding: 72px 0 96px;
  }

  .search-panel,
  .featured-card,
  .category-overview-card,
  .detail-content,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .category-grid,
  .movie-grid,
  .full-grid,
  .ranking-grid,
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-overview-card__covers {
    max-width: 280px;
  }

  .featured-image img {
    min-height: auto;
    aspect-ratio: 16 / 9;
  }
}

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

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

  .brand-copy em {
    display: none;
  }

  .hero-copy {
    padding-right: 12px;
  }

  .hero-actions,
  .section-heading.row {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-arrow {
    display: none;
  }

  .search-panel,
  .category-section,
  .detail-hero {
    padding: 18px;
  }

  .movie-grid,
  .full-grid,
  .ranking-grid,
  .related-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

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