* {
  box-sizing: border-box;
}

:root {
  --bg: #0f172a;
  --bg-soft: #111827;
  --panel: #ffffff;
  --text: #1e293b;
  --muted: #64748b;
  --line: #e2e8f0;
  --amber: #f59e0b;
  --amber-deep: #d97706;
  --orange: #fb923c;
  --slate: #334155;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background: #f8fafc;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.94);
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
  backdrop-filter: blur(18px);
}

.site-nav {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.logo-mark {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #1f1300;
  background: linear-gradient(135deg, #fcd34d, #f97316);
  box-shadow: 0 10px 28px rgba(249, 115, 22, 0.32);
}

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

.desktop-nav a,
.mobile-nav a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 650;
  transition: color 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.mobile-nav a:hover {
  color: #fcd34d;
}

.nav-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px;
  background: rgba(30, 41, 59, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
}

.nav-search input {
  width: 210px;
  color: #ffffff;
  border: none;
  outline: none;
  padding: 8px 10px 8px 14px;
  background: transparent;
}

.nav-search input::placeholder {
  color: rgba(226, 232, 240, 0.66);
}

.nav-search button,
.quick-search-panel button {
  border: none;
  border-radius: 999px;
  color: #1f1300;
  font-weight: 800;
  padding: 8px 16px;
  background: linear-gradient(135deg, #fcd34d, #f97316);
  box-shadow: 0 10px 24px rgba(245, 158, 11, 0.24);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 12px;
  color: #ffffff;
  background: rgba(51, 65, 85, 0.82);
}

.mobile-nav {
  display: none;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

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

.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  color: #ffffff;
  background: var(--bg);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(0deg, #f8fafc, rgba(248, 250, 252, 0));
  pointer-events: none;
}

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

.hero-slide {
  opacity: 0;
  visibility: hidden;
  background-size: cover;
  background-position: center;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

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

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1240px, calc(100% - 32px));
  min-height: 690px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 390px);
  gap: 56px;
  align-items: center;
  padding: 72px 0 86px;
}

.hero-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: #fcd34d;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.96;
  font-weight: 950;
  letter-spacing: -0.05em;
  background: linear-gradient(120deg, #fff7ed, #fde68a, #fed7aa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-line {
  max-width: 720px;
  margin: 24px 0 22px;
  color: rgba(226, 232, 240, 0.94);
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.75;
}

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

.hero-tags span,
.detail-tags span,
.movie-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  color: #92400e;
  font-size: 13px;
  font-weight: 800;
  border-radius: 999px;
  background: #fef3c7;
}

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

.hero-actions.small {
  margin-top: 24px;
}

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

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

.btn.primary {
  color: #1f1300;
  background: linear-gradient(135deg, #fde68a, #fb923c);
  box-shadow: 0 18px 36px rgba(245, 158, 11, 0.32);
}

.btn.ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.btn.text {
  color: #fcd34d;
}

.hero-poster {
  display: block;
  position: relative;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 34px;
  background: rgba(15, 23, 42, 0.46);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px);
  transform: rotate(2deg);
}

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

.hero-poster span {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  display: inline-flex;
  padding: 11px 14px;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 800;
  background: rgba(15, 23, 42, 0.68);
  backdrop-filter: blur(12px);
}

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

.hero-controls > button {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  color: #ffffff;
  font-size: 30px;
  line-height: 1;
  background: rgba(15, 23, 42, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.hero-dot {
  width: 28px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
}

.hero-dot.is-active {
  width: 46px;
  background: #fcd34d;
}

.quick-search-panel {
  position: relative;
  z-index: 8;
  width: min(1120px, calc(100% - 32px));
  margin: -42px auto 42px;
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.quick-search-panel form {
  display: flex;
  align-items: center;
  gap: 12px;
}

.quick-search-panel form span {
  color: #92400e;
  font-weight: 950;
}

.quick-search-panel input,
.filter-bar input,
.filter-bar select {
  width: 100%;
  border: 1px solid var(--line);
  outline: none;
  border-radius: 16px;
  padding: 12px 14px;
  color: var(--text);
  background: #ffffff;
}

.quick-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.quick-links a {
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--slate);
  font-weight: 750;
  background: #f1f5f9;
}

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

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

.section-head h2,
.category-panel h2,
.story-block h2,
.detail-side h2,
.ranking-sidebar h2 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(26px, 3.5vw, 38px);
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.section-more,
.panel-link {
  color: #b45309;
  font-weight: 900;
}

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

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

.movie-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.78);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.16);
}

.poster {
  position: relative;
  display: block;
  overflow: hidden;
  background: #0f172a;
}

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

.movie-card:hover .poster img {
  transform: scale(1.06);
}

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.02), rgba(15, 23, 42, 0.75));
}

.score,
.rank-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  color: #1f1300;
  font-weight: 950;
  background: #fcd34d;
}

.score {
  right: 12px;
  bottom: 12px;
}

.rank-badge {
  left: 12px;
  top: 12px;
}

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

.movie-card h3 {
  margin: 10px 0 8px;
  color: #0f172a;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 900;
}

.movie-card p {
  min-height: 48px;
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.65;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.78fr);
  gap: 34px;
  align-items: start;
}

.rank-list {
  display: grid;
  gap: 12px;
}

.rank-list.long {
  max-height: 920px;
  overflow: auto;
  padding-right: 8px;
}

.rank-row {
  display: grid;
  grid-template-columns: 46px 58px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.86);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
}

.rank-num {
  color: #d97706;
  font-size: 20px;
  font-weight: 950;
  text-align: center;
}

.rank-row img {
  width: 58px;
  height: 76px;
  border-radius: 12px;
  object-fit: cover;
}

.rank-text {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.rank-text b {
  overflow: hidden;
  color: #0f172a;
  font-size: 16px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rank-text em {
  overflow: hidden;
  color: #64748b;
  font-size: 13px;
  font-style: normal;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.category-grid,
.category-panels {
  display: grid;
  gap: 18px;
}

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

.category-tile,
.category-panel {
  display: block;
  padding: 22px;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(135deg, #ffffff, #fff7ed);
  border: 1px solid rgba(251, 191, 36, 0.22);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.category-icon,
.category-panel-head > span {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 16px;
  color: #1f1300;
  font-weight: 950;
  background: linear-gradient(135deg, #fcd34d, #fb923c);
}

.category-tile strong {
  display: block;
  color: #0f172a;
  font-size: 20px;
  font-weight: 950;
}

.category-tile p,
.category-panel p {
  margin: 10px 0 14px;
  color: #64748b;
  line-height: 1.7;
}

.category-samples {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.category-samples a {
  max-width: 100%;
  overflow: hidden;
  padding: 6px 10px;
  border-radius: 999px;
  color: #92400e;
  font-size: 13px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: #fef3c7;
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: radial-gradient(circle at 20% 10%, rgba(251, 191, 36, 0.28), transparent 38%), linear-gradient(135deg, #0f172a, #1e293b 58%, #431407);
}

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

.page-hero h1 {
  max-width: 840px;
  margin: 0 0 20px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: rgba(226, 232, 240, 0.9);
  font-size: 20px;
  line-height: 1.8;
}

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

.category-panel-head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.mini-poster-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin: 20px 0;
}

.mini-poster-row a {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #0f172a;
}

.mini-poster-row img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  opacity: 0.86;
}

.mini-poster-row span {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  overflow: hidden;
  color: #ffffff;
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px 150px;
  gap: 12px;
  margin-bottom: 24px;
  padding: 16px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.08);
}

.detail-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: #0f172a;
}

.detail-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.08);
}

.detail-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.18), transparent 34%);
}

.detail-wrap {
  position: relative;
  z-index: 2;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 64px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-bottom: 24px;
  color: rgba(226, 232, 240, 0.78);
  font-size: 14px;
  font-weight: 750;
}

.breadcrumb a:hover {
  color: #fcd34d;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(310px, 0.78fr);
  gap: 34px;
  align-items: center;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #020617;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

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

.play-cover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.06), rgba(2, 6, 23, 0.54));
  cursor: pointer;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

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

.play-icon {
  width: 92px;
  height: 92px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 7px;
  border-radius: 50%;
  color: #1f1300;
  font-size: 34px;
  background: linear-gradient(135deg, #fef3c7, #fb923c);
  box-shadow: 0 18px 44px rgba(245, 158, 11, 0.36);
}

.detail-info h1 {
  margin: 0 0 18px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.06;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.detail-line {
  margin: 0 0 18px;
  color: rgba(226, 232, 240, 0.92);
  font-size: 19px;
  line-height: 1.8;
}

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

.detail-meta div {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.detail-meta dt {
  margin-bottom: 4px;
  color: rgba(226, 232, 240, 0.7);
  font-size: 13px;
}

.detail-meta dd {
  margin: 0;
  color: #ffffff;
  font-weight: 850;
}

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

.story-block,
.detail-side,
.ranking-sidebar {
  padding: 28px;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.82);
}

.story-block h2:not(:first-child) {
  margin-top: 32px;
}

.story-block p {
  margin: 16px 0 0;
  color: #475569;
  font-size: 18px;
  line-height: 2;
}

.side-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.search-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  padding: 28px 16px;
  background: rgba(2, 6, 23, 0.68);
  backdrop-filter: blur(12px);
}

.search-modal.is-open {
  display: block;
}

.search-box {
  width: min(840px, 100%);
  max-height: calc(100vh - 56px);
  overflow: auto;
  margin: 0 auto;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.28);
}

.search-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}

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

.search-close {
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  color: #ffffff;
  background: #0f172a;
}

.search-results {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.search-result {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 14px;
  padding: 12px;
  border-radius: 18px;
  background: #f8fafc;
}

.search-result img {
  width: 70px;
  height: 92px;
  border-radius: 12px;
  object-fit: cover;
}

.search-result b {
  display: block;
  margin-bottom: 6px;
  color: #0f172a;
  font-size: 17px;
}

.search-result p {
  margin: 0;
  color: #64748b;
  line-height: 1.55;
}

.site-footer {
  margin-top: 40px;
  color: rgba(226, 232, 240, 0.82);
  background: #0f172a;
}

.footer-grid {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 54px 0;
  display: grid;
  grid-template-columns: 1.3fr 0.5fr 0.5fr;
  gap: 32px;
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 14px;
  color: #ffffff;
}

.site-footer p {
  margin: 0;
  line-height: 1.8;
}

.site-footer a {
  display: block;
  margin: 8px 0;
  color: rgba(226, 232, 240, 0.82);
}

.site-footer a:hover {
  color: #fcd34d;
}

.copyright {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0 30px;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  font-size: 14px;
}

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

  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    gap: 14px;
  }

  .nav-search {
    margin-left: auto;
  }

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

  .split-section,
  .detail-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .hero,
  .hero-inner {
    min-height: 760px;
  }

  .hero-inner,
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-poster {
    max-width: 270px;
    transform: none;
  }

  .quick-search-panel {
    grid-template-columns: 1fr;
  }

  .quick-search-panel form,
  .filter-bar {
    grid-template-columns: 1fr;
    display: grid;
  }

  .nav-search input {
    width: 150px;
  }

  .movie-grid,
  .featured-grid,
  .category-panels,
  .category-grid.compact,
  .ranking-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 560px) {
  .site-nav {
    width: calc(100% - 22px);
  }

  .logo span:last-child {
    max-width: 124px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .nav-search {
    display: none;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-line,
  .page-hero p:not(.eyebrow) {
    font-size: 17px;
  }

  .movie-grid,
  .featured-grid,
  .category-panels,
  .category-grid.compact,
  .ranking-card-grid,
  .mini-poster-row {
    grid-template-columns: 1fr;
  }

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

  .rank-row {
    grid-template-columns: 40px 52px minmax(0, 1fr);
  }

  .section-wrap {
    padding: 38px 0;
  }
}
