:root {
  --bg: #fff7ed;
  --bg-soft: #fffbeb;
  --text: #1f2937;
  --muted: #6b7280;
  --brand-dark: #78350f;
  --brand: #c2410c;
  --brand-light: #f59e0b;
  --line: rgba(146, 64, 14, 0.15);
  --card: rgba(255, 255, 255, 0.92);
  --shadow: 0 20px 50px rgba(120, 53, 15, 0.14);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: linear-gradient(180deg, #fffbeb 0%, #fff7ed 45%, #ffedd5 100%);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

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

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

main {
  min-height: 60vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: #ffffff;
  background: linear-gradient(90deg, #78350f 0%, #9a3412 50%, #78350f 100%);
  box-shadow: 0 12px 30px rgba(69, 26, 3, 0.22);
}

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

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

.brand-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #78350f;
  background: linear-gradient(135deg, #fef3c7, #f59e0b);
  border-radius: 999px;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.45);
}

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

.brand-title {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-subtitle {
  margin-top: 4px;
  color: #fde68a;
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 650;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.92);
  transition: color 160ms ease, transform 160ms ease;
}

.site-nav a:hover,
.site-nav .is-active {
  color: #fde68a;
  transform: translateY(-1px);
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 285px;
}

.header-search input,
.hero-search input,
.page-search input,
.filter-bar input,
.filter-bar select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  outline: none;
  border-radius: 999px;
}

.header-search input {
  padding: 11px 15px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.header-search input::placeholder {
  color: #fde68a;
}

.header-search button,
.hero-search button,
.page-search button,
.filter-bar button {
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 750;
  white-space: nowrap;
}

.header-search button {
  padding: 11px 16px;
  color: #78350f;
  background: #fde68a;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  font-size: 24px;
}

.mobile-nav {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 12px 0 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.mobile-nav a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.12);
}

.mobile-category-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  margin-top: 8px;
}

.hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(105deg, #78350f 0%, #c2410c 48%, #92400e 100%);
  padding: 92px 0 84px;
}

.hero-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(12px);
  opacity: 0.32;
  pointer-events: none;
}

.hero-glow-one {
  top: -180px;
  left: -120px;
  background: #f59e0b;
}

.hero-glow-two {
  right: -120px;
  bottom: -180px;
  background: #fde68a;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 48px;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: max-content;
  margin-bottom: 12px;
  padding: 6px 12px;
  color: #78350f;
  background: #fef3c7;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-shadow: 0 14px 35px rgba(69, 26, 3, 0.32);
}

.hero-copy p {
  max-width: 650px;
  margin: 22px 0 0;
  color: #ffedd5;
  font-size: 18px;
  line-height: 1.8;
}

.hero-search,
.page-search {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.hero-search input,
.page-search input {
  padding: 16px 18px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 40px rgba(69, 26, 3, 0.18);
}

.hero-search button,
.page-search button {
  padding: 0 24px;
  color: #78350f;
  background: linear-gradient(135deg, #fef3c7, #f59e0b);
}

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

.primary-btn,
.ghost-btn,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.primary-btn {
  padding: 13px 22px;
  color: #78350f;
  background: linear-gradient(135deg, #fef3c7, #f59e0b);
  box-shadow: 0 16px 32px rgba(120, 53, 15, 0.22);
}

.ghost-btn {
  padding: 12px 21px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

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

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

.hero-stats span {
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-stats strong {
  color: #fde68a;
  font-size: 22px;
}

.hero-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.hero-card {
  min-height: 440px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  box-shadow: 0 24px 50px rgba(69, 26, 3, 0.36);
  transform: translateY(0);
  transition: transform 220ms ease;
}

.hero-card:nth-child(2) {
  transform: translateY(28px);
}

.hero-card:nth-child(3) {
  transform: translateY(56px);
}

.hero-card:hover {
  transform: translateY(-8px) scale(1.015);
}

.hero-card:nth-child(2):hover,
.hero-card:nth-child(3):hover {
  transform: translateY(12px) scale(1.015);
}

.hero-card a,
.poster-link {
  position: relative;
  display: block;
  height: 100%;
  background: linear-gradient(135deg, #92400e, #f97316);
}

.hero-card img,
.poster-link img,
.rank-cover img,
.detail-poster img,
.category-thumb-wall img,
.category-thumbs img {
  height: 100%;
  object-fit: cover;
}

img.image-missing {
  opacity: 0;
}

.hero-card-shade,
.poster-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.82));
}

.hero-label,
.poster-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 7px 11px;
  color: #78350f;
  background: #fbbf24;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
}

.hero-card-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 20px;
}

.hero-card-copy h2 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.25;
}

.hero-card-copy p {
  display: -webkit-box;
  margin: 0 0 12px;
  overflow: hidden;
  color: #f3f4f6;
  font-size: 14px;
  line-height: 1.6;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.hero-card-copy span {
  color: #fde68a;
  font-size: 13px;
  font-weight: 700;
}

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

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

.section-heading.compact {
  margin-bottom: 18px;
}

.section-heading h2,
.rank-panel-head h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.03em;
}

.section-heading a,
.rank-panel-head a,
.text-link {
  color: #c2410c;
  font-weight: 800;
}

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

.full-grid {
  align-items: stretch;
}

.movie-card {
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(120, 53, 15, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.movie-card:hover {
  border-color: rgba(194, 65, 12, 0.36);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.poster-link {
  height: 290px;
  overflow: hidden;
}

.poster-link img {
  transition: transform 260ms ease;
}

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

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

.movie-meta-line,
.movie-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
}

.movie-meta-line a,
.movie-meta-line span:first-child {
  color: #b45309;
  font-weight: 800;
}

.movie-card h3 {
  display: -webkit-box;
  min-height: 54px;
  margin: 10px 0 8px;
  overflow: hidden;
  color: #111827;
  font-size: 18px;
  line-height: 1.45;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-card h3 a:hover {
  color: #c2410c;
}

.movie-card p {
  display: -webkit-box;
  min-height: 45px;
  margin: 0 0 12px;
  overflow: hidden;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.65;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.tag-list,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.tag-list span,
.detail-tags span {
  padding: 5px 9px;
  color: #92400e;
  background: #fef3c7;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

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

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

.category-tile,
.category-overview-card {
  display: block;
  padding: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 12px 32px rgba(120, 53, 15, 0.08);
}

.category-tile span {
  color: #b45309;
  font-weight: 850;
}

.category-tile strong {
  display: block;
  margin-top: 4px;
  color: #111827;
  font-size: 28px;
}

.category-tile p {
  margin: 8px 0 16px;
  color: #6b7280;
  line-height: 1.7;
}

.category-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  height: 88px;
}

.category-thumbs img {
  min-height: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #f59e0b, #92400e);
}

.rank-panel {
  position: sticky;
  top: 92px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.rank-panel-head {
  margin-bottom: 18px;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 42px 70px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.rank-number {
  color: #c2410c;
  font-size: 22px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.rank-cover {
  height: 92px;
  overflow: hidden;
  background: linear-gradient(135deg, #f59e0b, #92400e);
  border-radius: 14px;
}

.rank-copy h3 {
  margin: 0 0 4px;
  color: #111827;
  font-size: 15px;
  line-height: 1.4;
}

.rank-copy p {
  margin: 0 0 5px;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.5;
}

.rank-copy span {
  color: #b45309;
  font-size: 12px;
  font-weight: 800;
}

.rank-list-wide {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(105deg, #78350f 0%, #c2410c 55%, #92400e 100%);
}

.small-page-hero,
.category-page-hero {
  padding: 70px 0;
}

.page-hero > div,
.detail-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.page-hero h1,
.detail-copy h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.page-hero p,
.detail-one-line {
  max-width: 760px;
  margin: 18px 0 0;
  color: #ffedd5;
  font-size: 18px;
  line-height: 1.8;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 22px;
  color: #fde68a;
  font-size: 14px;
  font-weight: 700;
}

.filter-wrap {
  padding-top: 34px;
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) 170px 170px auto;
  gap: 14px;
  align-items: end;
  padding: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 12px 34px rgba(120, 53, 15, 0.08);
}

.filter-bar label {
  display: grid;
  gap: 7px;
  color: #92400e;
  font-size: 13px;
  font-weight: 850;
}

.filter-bar input,
.filter-bar select {
  min-height: 44px;
  padding: 0 14px;
  color: #1f2937;
  background: #ffffff;
  border-color: var(--line);
}

.filter-bar button {
  min-height: 44px;
  padding: 0 18px;
  color: #ffffff;
  background: #c2410c;
}

.filter-count {
  margin: 16px 0 22px;
  color: #92400e;
  font-weight: 800;
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.category-thumb-wall {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  height: 220px;
}

.category-thumb-wall img {
  border-radius: 16px;
  background: linear-gradient(135deg, #f59e0b, #92400e);
}

.category-overview-card h2 {
  margin: 0 0 10px;
  font-size: 28px;
}

.category-overview-card p {
  margin: 0 0 16px;
  color: #6b7280;
  line-height: 1.8;
}

.detail-hero {
  padding: 58px 0 64px;
}

.detail-bg {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  filter: blur(10px) saturate(1.2);
  transform: scale(1.08);
}

.detail-bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(105deg, rgba(120, 53, 15, 0.94), rgba(194, 65, 12, 0.9));
}

.detail-bg img {
  height: 100%;
  object-fit: cover;
}

.detail-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 36px;
  align-items: end;
}

.detail-poster {
  overflow: hidden;
  height: 390px;
  background: linear-gradient(135deg, #f59e0b, #92400e);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 26px;
  box-shadow: 0 24px 60px rgba(69, 26, 3, 0.38);
}

.detail-copy .ghost-btn {
  color: #ffffff;
}

.detail-main {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 28px;
}

.player-card,
.detail-text-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.player-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #111827;
  border-radius: 22px;
}

.movie-player {
  width: 100%;
  height: 100%;
  background: #111827;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 28px;
  color: #ffffff;
  border: 0;
  cursor: pointer;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.72));
  text-align: center;
}

.player-shell.is-playing .player-overlay {
  display: none;
}

.play-circle {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  color: #78350f;
  background: linear-gradient(135deg, #fef3c7, #f59e0b);
  border-radius: 999px;
  font-size: 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.26);
}

.player-overlay strong {
  font-size: 22px;
}

.player-overlay small {
  color: #fde68a;
}

.player-status {
  margin: 14px 0 0;
  color: #92400e;
  font-weight: 750;
}

.detail-text-card h2 {
  margin: 0 0 12px;
  color: #111827;
  font-size: 24px;
}

.detail-text-card h2:not(:first-child) {
  margin-top: 26px;
}

.detail-text-card p {
  margin: 0;
  color: #4b5563;
  line-height: 1.95;
}

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

.detail-meta-grid div {
  padding: 14px;
  background: #fffbeb;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.detail-meta-grid dt {
  color: #92400e;
  font-size: 12px;
  font-weight: 850;
}

.detail-meta-grid dd {
  margin: 4px 0 0;
  color: #111827;
  font-weight: 750;
}

.page-search {
  max-width: 720px;
}

.empty-result {
  grid-column: 1 / -1;
  padding: 30px;
  color: #92400e;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 20px;
  text-align: center;
  font-weight: 800;
}

.sitemap-wrap {
  display: grid;
  gap: 24px;
}

.sitemap-section {
  padding: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 24px;
}

.sitemap-section h2 {
  margin: 0 0 14px;
  color: #111827;
}

.sitemap-section ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sitemap-section a {
  color: #374151;
  line-height: 1.5;
}

.sitemap-section a:hover {
  color: #c2410c;
}

.sitemap-section span {
  display: block;
  color: #9ca3af;
  font-size: 12px;
}

.site-footer {
  margin-top: 70px;
  color: #ffffff;
  background: linear-gradient(90deg, #78350f 0%, #7c2d12 50%, #78350f 100%);
}

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

.footer-logo {
  margin-bottom: 12px;
  color: #fde68a;
  font-size: 22px;
  font-weight: 900;
}

.site-footer h2 {
  margin: 0 0 12px;
  color: #fde68a;
  font-size: 17px;
}

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

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li + li {
  margin-top: 8px;
}

.site-footer a {
  color: #ffedd5;
}

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

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

  .hero-inner,
  .two-column-layout,
  .detail-main {
    grid-template-columns: 1fr;
  }

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

  .rank-panel {
    position: static;
  }

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

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

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

  .menu-toggle {
    display: block;
  }

  .brand {
    min-width: 0;
  }

  .brand-title {
    font-size: 16px;
  }

  .hero-section {
    padding: 58px 0 44px;
  }

  .hero-inner {
    gap: 28px;
  }

  .hero-feature-grid,
  .movie-grid,
  .category-showcase,
  .rank-list-wide,
  .sitemap-section ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-card,
  .hero-card:nth-child(2),
  .hero-card:nth-child(3) {
    min-height: 330px;
    transform: none;
  }

  .hero-card:hover,
  .hero-card:nth-child(2):hover,
  .hero-card:nth-child(3):hover {
    transform: translateY(-4px);
  }

  .filter-bar,
  .category-overview-card,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .detail-poster {
    width: min(280px, 100%);
  }
}

@media (max-width: 560px) {
  .header-inner {
    width: min(100% - 24px, 1180px);
    height: 66px;
  }

  .brand-subtitle {
    display: none;
  }

  .hero-search,
  .page-search,
  .hero-actions,
  .detail-actions {
    flex-direction: column;
  }

  .hero-search button,
  .page-search button {
    min-height: 48px;
  }

  .hero-feature-grid,
  .movie-grid,
  .category-showcase,
  .rank-list-wide,
  .sitemap-section ul,
  .detail-meta-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .poster-link {
    height: 340px;
  }

  .rank-item {
    grid-template-columns: 34px 62px minmax(0, 1fr);
  }

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

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