:root {
  --cream-50: #fefdfb;
  --cream-100: #fdf9f3;
  --cream-200: #faf3e6;
  --cream-300: #f3e2c8;
  --coffee-50: #f7f1ea;
  --coffee-100: #ead8c1;
  --coffee-200: #d6b892;
  --coffee-300: #bf9668;
  --coffee-400: #9a7146;
  --coffee-500: #7f5f3c;
  --coffee-600: #6f5536;
  --coffee-700: #563f2a;
  --coffee-800: #3d2e1f;
  --coffee-900: #2a1f15;
  --white: #ffffff;
  --black: #080604;
  --shadow-sm: 0 2px 8px rgba(42, 31, 21, 0.08);
  --shadow-md: 0 10px 30px rgba(42, 31, 21, 0.12);
  --shadow-lg: 0 24px 70px rgba(42, 31, 21, 0.22);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --container: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream-100);
  color: var(--coffee-900);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.main-content {
  min-height: 65vh;
  padding-top: 72px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(250, 243, 230, 0.8);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
}

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

.site-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--coffee-800);
  font-weight: 800;
}

.site-logo-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--coffee-600), var(--coffee-400));
  box-shadow: var(--shadow-sm);
}

.site-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.site-logo-text strong {
  font-size: 22px;
}

.site-logo-text small {
  color: var(--coffee-600);
  font-size: 12px;
  font-weight: 500;
}

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

.nav-link {
  color: var(--coffee-600);
  font-size: 15px;
  font-weight: 700;
  transition: color 0.2s ease;
}

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

.header-search,
.mobile-search {
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--cream-300);
  background: var(--cream-100);
  border-radius: 999px;
}

.header-search input,
.mobile-search input {
  width: 220px;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 10px 4px 10px 16px;
  color: var(--coffee-900);
}

.header-search button,
.mobile-search button {
  border: 0;
  background: var(--coffee-600);
  color: var(--white);
  padding: 10px 15px;
  cursor: pointer;
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.mobile-toggle span {
  display: block;
  height: 2px;
  width: 24px;
  background: var(--coffee-700);
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--cream-200);
  background: var(--white);
}

.mobile-nav.is-open {
  display: block;
  animation: slideDown 0.28s ease;
}

.mobile-nav-inner {
  padding: 14px 0 18px;
}

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

.mobile-nav-link.is-active,
.mobile-nav-link:hover {
  background: var(--cream-200);
}

.hero-carousel {
  position: relative;
  height: min(80vh, 760px);
  min-height: 560px;
  overflow: hidden;
  background: var(--coffee-900);
}

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

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

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

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

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(42, 31, 21, 0.88) 0%, rgba(42, 31, 21, 0.56) 42%, rgba(42, 31, 21, 0.08) 100%),
    linear-gradient(0deg, rgba(42, 31, 21, 0.9) 0%, rgba(42, 31, 21, 0.12) 70%);
}

.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(48px, 8vw, 96px);
}

.hero-copy {
  width: min(680px, 100%);
  color: var(--white);
  animation: fadeIn 0.55s ease;
}

.hero-label,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cream-200);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-copy h1,
.page-hero h1,
.detail-main h1 {
  margin: 12px 0 16px;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero-copy p {
  max-width: 660px;
  margin: 0 0 18px;
  color: var(--cream-100);
  font-size: clamp(17px, 2vw, 22px);
}

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

.hero-meta {
  color: var(--cream-200);
  margin-bottom: 14px;
  font-weight: 600;
}

.hero-tags span,
.detail-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(250, 243, 230, 0.9);
  color: var(--coffee-700);
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
}

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

.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  min-height: 46px;
  padding: 0 22px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--coffee-600);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover,
.btn-ghost:hover {
  transform: translateY(-2px);
}

.btn-primary:hover {
  background: var(--coffee-700);
  box-shadow: var(--shadow-lg);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(10px);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.32);
  transform: translateY(-1px);
}

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

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

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-dot {
  width: 18px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

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

.section {
  padding: clamp(48px, 7vw, 84px) 0;
}

.bg-white {
  background: var(--white);
}

.bg-cream {
  background: var(--cream-50);
}

.bg-cream-gradient {
  background: linear-gradient(180deg, var(--cream-50), var(--cream-200));
}

.section-title,
.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-title > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-title h2,
.toolbar h2,
.content-card h2,
.info-card h2 {
  margin: 0;
  color: var(--coffee-900);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
}

.section-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--cream-200);
  color: var(--coffee-600);
}

.text-link {
  color: var(--coffee-600);
  font-weight: 800;
}

.text-link:hover {
  color: var(--coffee-900);
}

.movie-grid {
  display: grid;
  gap: 24px;
}

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

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

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

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

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

.movie-poster {
  position: relative;
  display: block;
  height: 230px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--coffee-200), var(--coffee-600));
}

.movie-card--large .movie-poster {
  height: 320px;
}

.movie-poster img,
.compact-thumb img,
.category-tile img,
.overview-cover img,
.poster-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.movie-card:hover .movie-poster img,
.compact-row:hover .compact-thumb img,
.category-tile:hover img,
.overview-card:hover img {
  transform: scale(1.08);
}

.movie-poster-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.72));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.movie-card:hover .movie-poster-overlay {
  opacity: 1;
}

.play-circle {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--coffee-700);
  font-size: 23px;
  box-shadow: var(--shadow-md);
}

.movie-region {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.68);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

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

.movie-card-body h3 {
  margin: 0 0 8px;
  color: var(--coffee-900);
  font-size: 17px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-card-body h3 a:hover {
  color: var(--coffee-600);
}

.movie-card-body p {
  min-height: 44px;
  margin: 0 0 12px;
  color: var(--coffee-600);
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--coffee-500);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}

.tag-row {
  gap: 6px;
}

.tag-row span {
  background: var(--cream-200);
}

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

.category-tile {
  position: relative;
  min-height: 154px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--coffee-700);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.category-tile-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(42, 31, 21, 0.08), rgba(42, 31, 21, 0.86));
}

.category-tile strong,
.category-tile small {
  position: absolute;
  left: 18px;
  z-index: 2;
}

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

.category-tile small {
  bottom: 18px;
  color: var(--cream-200);
  font-weight: 700;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px;
}

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

.compact-row {
  display: grid;
  grid-template-columns: auto 112px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.compact-row:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.rank-number {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--coffee-600);
  color: var(--white);
  font-weight: 900;
}

.compact-thumb {
  width: 112px;
  height: 70px;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--coffee-200);
}

.compact-main h3 {
  margin: 0 0 5px;
  font-size: 16px;
}

.compact-main h3 a:hover {
  color: var(--coffee-600);
}

.compact-main p {
  margin: 0;
  color: var(--coffee-600);
  font-size: 13px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.compact-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  color: var(--coffee-500);
  font-size: 13px;
  font-weight: 700;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(78px, 12vw, 148px) 0 clamp(54px, 8vw, 96px);
  color: var(--white);
  background:
    radial-gradient(circle at 20% 20%, rgba(250, 243, 230, 0.26), transparent 28%),
    linear-gradient(135deg, var(--coffee-900), var(--coffee-700));
}

.page-hero--compact {
  padding-top: 94px;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--cream-100);
  font-size: 18px;
}

.overview-card {
  display: grid;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.overview-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.overview-cover {
  height: 168px;
  background: linear-gradient(135deg, var(--coffee-200), var(--coffee-600));
}

.overview-body {
  padding: 18px;
}

.overview-body h2 {
  margin: 0 0 8px;
  font-size: 22px;
}

.overview-body p {
  min-height: 48px;
  margin: 0 0 12px;
  color: var(--coffee-600);
}

.overview-body span {
  display: inline-flex;
  color: var(--coffee-600);
  font-weight: 900;
}

.toolbar {
  align-items: flex-end;
}

.toolbar p {
  margin: 8px 0 0;
  color: var(--coffee-600);
}

.filter-box {
  display: grid;
  gap: 8px;
  min-width: min(360px, 100%);
}

.filter-box--wide {
  min-width: min(520px, 100%);
}

.filter-box span {
  color: var(--coffee-600);
  font-size: 13px;
  font-weight: 800;
}

.filter-box input {
  width: 100%;
  border: 1px solid var(--cream-300);
  border-radius: 999px;
  outline: 0;
  background: var(--white);
  color: var(--coffee-900);
  padding: 13px 18px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.filter-box input:focus {
  border-color: var(--coffee-400);
  box-shadow: 0 0 0 4px rgba(111, 85, 54, 0.12);
}

.result-counter {
  margin: -8px 0 20px;
  color: var(--coffee-600);
  font-weight: 800;
}

.empty-state {
  padding: 26px;
  text-align: center;
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--coffee-600);
  box-shadow: var(--shadow-sm);
}

.ranking-list {
  margin-bottom: 30px;
}

.ranking-card-grid {
  margin-top: 30px;
}

.player-section {
  padding: 30px 0;
  background: var(--black);
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #000000;
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow-lg);
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.72));
  color: var(--white);
  cursor: pointer;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.player-play-icon {
  width: 76px;
  height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--coffee-700);
  font-size: 30px;
  box-shadow: var(--shadow-md);
}

.player-status {
  position: absolute;
  left: 18px;
  bottom: 14px;
  z-index: 4;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  pointer-events: none;
}

.detail-section {
  padding-top: 54px;
}

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

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--coffee-500);
  font-size: 14px;
  font-weight: 800;
}

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

.detail-main h1 {
  color: var(--coffee-900);
}

.detail-meta {
  margin-bottom: 16px;
}

.detail-meta span {
  border-radius: 999px;
  background: var(--white);
  color: var(--coffee-600);
  padding: 7px 12px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

.detail-tags {
  margin-bottom: 24px;
}

.content-card,
.info-card {
  border-radius: var(--radius-md);
  background: var(--white);
  padding: clamp(20px, 3vw, 30px);
  box-shadow: var(--shadow-sm);
  margin-bottom: 22px;
}

.content-card h2,
.info-card h2 {
  font-size: 22px;
  margin-bottom: 14px;
}

.content-card p {
  margin: 0 0 12px;
  color: var(--coffee-700);
  font-size: 16px;
}

.content-card p:last-child {
  margin-bottom: 0;
}

.lead-text {
  font-weight: 800;
}

.detail-aside {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 20px;
}

.poster-card {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--coffee-200), var(--coffee-600));
  box-shadow: var(--shadow-md);
}

.poster-card img {
  min-height: 420px;
}

.info-card dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.info-card div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--cream-200);
  padding-bottom: 12px;
}

.info-card div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.info-card dt {
  color: var(--coffee-500);
  font-weight: 700;
}

.info-card dd {
  margin: 0;
  color: var(--coffee-900);
  font-weight: 900;
  text-align: right;
}

.info-card a {
  color: var(--coffee-600);
}

.site-footer {
  background: var(--coffee-800);
  color: var(--cream-100);
}

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

.footer-logo {
  color: var(--cream-50);
  margin-bottom: 14px;
}

.footer-grid h2 {
  margin: 0 0 14px;
  color: var(--cream-50);
  font-size: 17px;
}

.footer-grid p {
  margin: 0;
  color: var(--cream-300);
  font-size: 14px;
}

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

.footer-grid a {
  color: var(--cream-300);
  font-size: 14px;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(250, 243, 230, 0.16);
  padding: 20px 0;
  color: var(--cream-300);
  font-size: 13px;
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

  .mobile-toggle {
    display: flex;
  }

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

  .hero-arrow {
    display: none;
  }

  .movie-grid--three,
  .movie-grid--four,
  .movie-grid--six,
  .category-grid,
  .overview-grid,
  .two-column,
  .detail-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-aside {
    position: static;
  }

  .toolbar,
  .section-title {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .main-content {
    padding-top: 64px;
  }

  .header-inner {
    height: 64px;
  }

  .site-logo-icon {
    width: 34px;
    height: 34px;
  }

  .site-logo-text strong {
    font-size: 18px;
  }

  .site-logo-text small {
    display: none;
  }

  .hero-carousel {
    height: 72vh;
    min-height: 520px;
  }

  .hero-copy h1,
  .page-hero h1,
  .detail-main h1 {
    font-size: 38px;
  }

  .hero-copy p,
  .page-hero p {
    font-size: 16px;
  }

  .hero-tags {
    display: none;
  }

  .section {
    padding: 42px 0;
  }

  .movie-grid--three,
  .movie-grid--four,
  .movie-grid--six,
  .category-grid,
  .overview-grid,
  .two-column,
  .detail-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .scroll-grid {
    display: flex;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .scroll-grid .movie-card {
    min-width: 260px;
  }

  .movie-poster,
  .movie-card--large .movie-poster {
    height: 260px;
  }

  .compact-row {
    grid-template-columns: auto 90px minmax(0, 1fr);
  }

  .compact-thumb {
    width: 90px;
    height: 62px;
  }

  .compact-side {
    display: none;
  }

  .poster-card img {
    min-height: 320px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
