:root {
  --page-bg: #020617;
  --panel: #0f172a;
  --panel-soft: #111827;
  --line: rgba(148, 163, 184, 0.2);
  --text: #f8fafc;
  --muted: #94a3b8;
  --cyan: #22d3ee;
  --cyan-strong: #06b6d4;
  --amber: #f59e0b;
  --radius: 18px;
  --shadow: 0 24px 70px rgba(2, 6, 23, 0.5);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: radial-gradient(circle at top left, rgba(34, 211, 238, 0.16), transparent 32rem), linear-gradient(180deg, #020617 0%, #0f172a 46%, #020617 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

.container,
.nav-shell,
.footer-inner,
.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.94), rgba(15, 23, 42, 0.96));
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 18px 48px rgba(2, 6, 23, 0.35);
  backdrop-filter: blur(18px);
}

.nav-main {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.brand-icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.18), rgba(14, 165, 233, 0.08));
  border: 1px solid rgba(34, 211, 238, 0.42);
  box-shadow: 0 12px 32px rgba(8, 145, 178, 0.18);
}

.brand-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.brand-text strong {
  font-size: 22px;
  letter-spacing: 0.04em;
  color: #ffffff;
}

.brand-text em {
  margin-top: 4px;
  font-size: 12px;
  font-style: normal;
  color: var(--cyan);
}

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

.nav-link {
  color: #cbd5e1;
  font-weight: 650;
  font-size: 15px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--cyan);
  transform: translateY(-1px);
}

.nav-search,
.mobile-search {
  position: relative;
  width: min(260px, 28vw);
}

.nav-search input,
.mobile-search input,
.list-toolbar input {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.24);
  color: #e2e8f0;
  background: rgba(15, 23, 42, 0.78);
  border-radius: 999px;
  padding: 11px 15px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-search input:focus,
.mobile-search input:focus,
.list-toolbar input:focus {
  border-color: rgba(34, 211, 238, 0.7);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.1);
}

.search-results {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  right: 0;
  max-height: 420px;
  overflow: auto;
  display: none;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(15, 23, 42, 0.98);
  box-shadow: var(--shadow);
}

.search-results.is-open {
  display: grid;
  gap: 8px;
}

.search-hit {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 10px;
  padding: 8px;
  border-radius: 12px;
  color: #e5e7eb;
  transition: background 0.2s ease;
}

.search-hit:hover {
  background: rgba(34, 211, 238, 0.1);
}

.search-hit img {
  width: 44px;
  height: 58px;
  object-fit: cover;
  border-radius: 8px;
  background: #111827;
}

.search-hit strong,
.search-hit em {
  display: block;
}

.search-hit strong {
  font-size: 14px;
  line-height: 1.35;
}

.search-hit em {
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted);
  font-style: normal;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.78);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: #fff;
}

.mobile-panel {
  display: none;
  padding: 0 0 18px;
}

.mobile-links {
  display: grid;
  gap: 10px;
  padding-top: 14px;
}

.hero-slider {
  position: relative;
  min-height: min(760px, calc(100vh - 76px));
  overflow: hidden;
  background: #020617;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity 0.65s ease, transform 0.85s ease;
}

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

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-size: cover;
  background-position: center;
  filter: blur(4px) saturate(1.1);
  transform: scale(1.06);
  opacity: 0.46;
}

.hero-shade {
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.96) 0%, rgba(15, 23, 42, 0.76) 44%, rgba(2, 6, 23, 0.58) 100%), linear-gradient(180deg, transparent 56%, #020617 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  min-height: min(760px, calc(100vh - 76px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.65fr);
  align-items: center;
  gap: 56px;
  padding: 68px 0 92px;
}

.hero-copy {
  max-width: 760px;
}

.hero-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.hero-copy p,
.page-hero p {
  max-width: 760px;
  color: #cbd5e1;
  font-size: clamp(17px, 2.1vw, 22px);
}

.hero-tags,
.tag-list,
.meta-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags {
  margin: 28px 0;
}

.hero-tags span,
.tag-list span,
.meta-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 13px;
  color: #dbeafe;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.64);
  border: 1px solid rgba(148, 163, 184, 0.22);
}

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

.btn-primary,
.btn-secondary,
.section-more,
.category-title-row b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  padding: 0 24px;
  color: #001014;
  background: linear-gradient(135deg, var(--cyan), #67e8f9);
  box-shadow: 0 16px 36px rgba(34, 211, 238, 0.24);
}

.btn-secondary,
.section-more,
.category-title-row b {
  padding: 0 22px;
  color: #e0f2fe;
  border: 1px solid rgba(34, 211, 238, 0.36);
  background: rgba(15, 23, 42, 0.64);
}

.btn-primary:hover,
.btn-secondary:hover,
.section-more:hover,
.category-title-row:hover b {
  transform: translateY(-2px);
}

.hero-poster {
  position: relative;
  width: min(360px, 100%);
  justify-self: center;
  border-radius: 28px;
  overflow: hidden;
  background: #0f172a;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.54);
  aspect-ratio: 2 / 3;
}

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

.hero-poster:hover img {
  transform: scale(1.05);
}

.hero-play,
.play-dot,
.video-overlay {
  display: inline-grid;
  place-items: center;
}

.hero-play {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
}

.hero-play span,
.play-dot,
.video-overlay span {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #0f172a;
}

.hero-controls {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.62);
  border: 1px solid rgba(148, 163, 184, 0.18);
  backdrop-filter: blur(14px);
}

.hero-controls button {
  border: 0;
  color: #e0f2fe;
  background: transparent;
  cursor: pointer;
}

.hero-controls > button {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 28px;
  line-height: 0;
}

.hero-controls > button:hover {
  background: rgba(34, 211, 238, 0.16);
}

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

.hero-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 999px;
  background: rgba(203, 213, 225, 0.44);
}

.hero-dots button.is-active {
  width: 28px;
  background: var(--cyan);
}

.category-strip,
.content-section,
.page-hero,
.detail-shell {
  position: relative;
}

.category-strip {
  padding: 28px 0;
  background: rgba(15, 23, 42, 0.86);
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
}

.category-strip .container {
  display: grid;
  gap: 18px;
}

.category-strip h2 {
  margin: 0;
  font-size: 22px;
}

.category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.category-chips a {
  padding: 10px 18px;
  border-radius: 999px;
  color: #e2e8f0;
  background: rgba(30, 41, 59, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.18);
  transition: background 0.2s ease, transform 0.2s ease;
}

.category-chips a:hover {
  background: rgba(34, 211, 238, 0.16);
  transform: translateY(-2px);
}

.content-section {
  padding: 64px 0;
}

.dark-section {
  background: #020617;
}

.soft-top {
  background: linear-gradient(180deg, #020617 0%, #0f172a 100%);
}

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

.section-head h2,
.list-toolbar h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15;
}

.section-head p,
.list-toolbar p {
  margin: 8px 0 0;
  color: var(--muted);
}

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

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

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

.movie-card {
  display: block;
  min-width: 0;
}

.poster-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  border-radius: 16px;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 18px 42px rgba(2, 6, 23, 0.34);
}

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

.poster-mask {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(2, 6, 23, 0.0);
  opacity: 0;
  transition: opacity 0.25s ease, background 0.25s ease;
}

.poster-mask .play-dot {
  width: 52px;
  height: 52px;
  margin: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  position: relative;
}

.poster-mask .play-dot::after {
  content: "";
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid #0f172a;
}

.movie-card:hover .poster-wrap img {
  transform: scale(1.08);
  filter: saturate(1.12);
}

.movie-card:hover .poster-mask {
  opacity: 1;
  background: rgba(2, 6, 23, 0.32);
}

.card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #001014;
  background: rgba(103, 232, 249, 0.92);
  font-size: 12px;
  font-weight: 850;
}

.movie-title {
  display: -webkit-box;
  min-height: 48px;
  margin-top: 12px;
  color: #f8fafc;
  font-weight: 800;
  line-height: 1.45;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.2s ease;
}

.movie-title.compact {
  min-height: 42px;
  font-size: 14px;
}

.movie-card:hover .movie-title {
  color: var(--cyan);
}

.movie-meta,
.movie-genre {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.movie-genre {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rank-feature {
  background: radial-gradient(circle at center left, rgba(34, 211, 238, 0.12), transparent 34rem), #0f172a;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 38px;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 52px 76px 1fr;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.15);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.rank-row:hover {
  transform: translateX(4px);
  border-color: rgba(34, 211, 238, 0.38);
  background: rgba(15, 23, 42, 0.95);
}

.rank-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: var(--cyan);
  background: rgba(34, 211, 238, 0.1);
  font-weight: 900;
}

.rank-row img {
  width: 76px;
  height: 54px;
  object-fit: cover;
  border-radius: 12px;
  background: #111827;
}

.rank-info strong,
.rank-info em {
  display: block;
}

.rank-info strong {
  color: #f8fafc;
  font-size: 15px;
}

.rank-info em {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.page-hero {
  padding: 86px 0 72px;
  background: radial-gradient(circle at top right, rgba(34, 211, 238, 0.2), transparent 28rem), linear-gradient(135deg, #020617, #0f172a 56%, #1e293b);
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
}

.compact-hero,
.category-hero,
.ranking-hero {
  min-height: 300px;
  display: flex;
  align-items: center;
}

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

.category-overview-card {
  padding: 24px;
  border-radius: 26px;
  background: rgba(15, 23, 42, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.15);
  box-shadow: 0 20px 56px rgba(2, 6, 23, 0.24);
}

.category-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

.category-title-row strong,
.category-title-row em {
  display: block;
}

.category-title-row strong {
  font-size: 24px;
}

.category-title-row em {
  margin-top: 4px;
  color: var(--muted);
  font-style: normal;
}

.list-toolbar input {
  width: min(320px, 100%);
  border-radius: 16px;
}

.empty-state {
  padding: 28px;
  text-align: center;
  color: var(--muted);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.68);
}

.movie-card.is-hidden {
  display: none;
}

.narrow-container {
  width: min(860px, calc(100% - 32px));
}

.detail-shell {
  padding: 34px 0 72px;
  background: radial-gradient(circle at top left, rgba(34, 211, 238, 0.12), transparent 30rem), #020617;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 14px;
}

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

.breadcrumb strong {
  color: #e2e8f0;
  font-weight: 650;
}

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

.player-card,
.detail-content,
.side-card {
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.86);
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 24px 60px rgba(2, 6, 23, 0.36);
}

.player-card {
  padding: 12px;
}

.video-frame {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #000;
  aspect-ratio: 16 / 9;
}

.video-frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #000;
}

.video-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: radial-gradient(circle, rgba(15, 23, 42, 0.18), rgba(2, 6, 23, 0.64));
  cursor: pointer;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.video-overlay span {
  width: 84px;
  height: 84px;
  margin: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  position: relative;
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.36);
}

.video-overlay span::after {
  content: "";
  position: absolute;
  left: 34px;
  top: 27px;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 22px solid #0f172a;
}

.video-frame.is-playing .video-overlay {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.detail-content {
  margin-top: 20px;
  padding: 28px;
}

.meta-pills {
  margin-bottom: 18px;
}

.detail-content h1 {
  margin: 0 0 16px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.14;
}

.detail-lead {
  margin: 0 0 22px;
  color: #dbeafe;
  font-size: 18px;
}

.tag-list {
  margin: 0 0 28px;
}

.detail-content h2,
.related-list h2 {
  margin: 26px 0 12px;
  font-size: 22px;
}

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

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

.side-card {
  padding: 18px;
}

.poster-side img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 18px;
  background: #111827;
}

.poster-side strong,
.poster-side em {
  display: block;
}

.poster-side strong {
  margin-top: 14px;
  font-size: 20px;
}

.poster-side em {
  margin-top: 5px;
  color: var(--muted);
  font-style: normal;
}

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

.related-list h2 {
  margin-top: 0;
}

.related-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 16px;
  background: rgba(30, 41, 59, 0.64);
  transition: background 0.2s ease, transform 0.2s ease;
}

.related-card:hover {
  background: rgba(34, 211, 238, 0.1);
  transform: translateX(3px);
}

.related-card img {
  width: 96px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 12px;
  background: #111827;
}

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

.related-card strong {
  font-size: 14px;
  line-height: 1.35;
}

.related-card em {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.site-footer {
  background: linear-gradient(180deg, #0f172a, #020617);
  border-top: 1px solid rgba(148, 163, 184, 0.16);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr;
  gap: 40px;
  padding: 48px 0 36px;
}

.footer-brand p,
.footer-list a,
.footer-bottom {
  color: var(--muted);
}

.footer-brand p {
  max-width: 460px;
}

.site-footer h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 18px;
}

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

.footer-list a:hover {
  color: var(--cyan);
}

.footer-bottom {
  padding: 22px 0;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
}

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

  .nav-search {
    margin-left: auto;
    width: min(320px, 42vw);
  }

  .menu-toggle {
    display: block;
  }

  .mobile-panel.is-open {
    display: block;
  }

  .mobile-search {
    width: 100%;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 48px;
  }

  .hero-poster {
    width: min(280px, 70vw);
    justify-self: start;
  }

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

  .split-layout,
  .detail-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .detail-side {
    position: static;
  }

  .poster-side {
    display: none;
  }
}

@media (max-width: 720px) {
  .container,
  .nav-shell,
  .footer-inner,
  .footer-bottom {
    width: min(100% - 22px, 1180px);
  }

  .nav-main {
    min-height: 66px;
    gap: 12px;
  }

  .brand-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }

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

  .brand-text em {
    display: none;
  }

  .nav-search {
    display: none;
  }

  .hero-slider,
  .hero-content {
    min-height: 680px;
  }

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

  .hero-actions,
  .page-actions,
  .section-head,
  .list-toolbar,
  .category-title-row {
    align-items: stretch;
    flex-direction: column;
  }

  .movie-grid,
  .large-grid,
  .category-grid,
  .mini-grid,
  .overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .rank-row {
    grid-template-columns: 42px 64px 1fr;
    gap: 10px;
  }

  .rank-row img {
    width: 64px;
    height: 48px;
  }

  .content-section {
    padding: 44px 0;
  }

  .page-hero {
    padding: 58px 0 48px;
  }

  .detail-shell {
    padding-top: 22px;
  }

  .detail-content,
  .side-card,
  .category-overview-card {
    padding: 18px;
    border-radius: 20px;
  }

  .related-card {
    grid-template-columns: 84px 1fr;
  }

  .related-card img {
    width: 84px;
  }
}
