:root {
  --bg: #fffaf2;
  --surface: #ffffff;
  --surface-soft: #fff7ed;
  --text: #1f2937;
  --muted: #6b7280;
  --line: #f1dec7;
  --amber: #d97706;
  --amber-dark: #b45309;
  --orange: #ea580c;
  --dark: #111827;
  --shadow: 0 18px 45px rgba(146, 64, 14, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #fff7ed 0%, #fffbeb 36%, #ffffff 100%);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(255, 251, 235, 0.96), rgba(255, 237, 213, 0.96));
  border-bottom: 1px solid rgba(217, 119, 6, 0.12);
  box-shadow: 0 10px 30px rgba(146, 64, 14, 0.08);
  backdrop-filter: blur(18px);
}

.nav-container {
  width: min(1180px, calc(100% - 32px));
  height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(217, 119, 6, 0.28);
}

.brand-text {
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

.nav-link {
  padding: 22px 0 18px;
  color: #4b5563;
  font-size: 15px;
  font-weight: 700;
  border-bottom: 3px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--amber);
  border-bottom-color: var(--amber);
}

.header-search,
.mobile-search,
.banner-search,
.large-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-search input,
.mobile-search input,
.banner-search input,
.large-search input {
  border: 1px solid rgba(217, 119, 6, 0.22);
  background: #ffffff;
  outline: none;
  border-radius: 999px;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input {
  width: 200px;
  padding: 10px 14px;
}

.header-search input:focus,
.mobile-search input:focus,
.banner-search input:focus,
.large-search input:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.13);
}

.header-search button,
.mobile-search button,
.banner-search button,
.large-search button,
.btn.primary {
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(217, 119, 6, 0.26);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: none;
  background: rgba(217, 119, 6, 0.1);
  border-radius: 12px;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--amber-dark);
  border-radius: 99px;
}

.mobile-nav {
  display: none;
  padding: 12px 16px 18px;
  background: #ffffff;
  border-top: 1px solid var(--line);
}

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

.mobile-link {
  display: block;
  margin-top: 8px;
  padding: 12px 14px;
  border-radius: 14px;
  color: #4b5563;
  font-weight: 700;
}

.mobile-link:hover,
.mobile-link.is-active {
  color: var(--amber-dark);
  background: #ffedd5;
}

.hero {
  position: relative;
  height: min(720px, 72vh);
  min-height: 520px;
  overflow: hidden;
  background: #111827;
}

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

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 900ms ease;
}

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

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 24, 39, 0.93), rgba(17, 24, 39, 0.62) 42%, rgba(17, 24, 39, 0.2)), linear-gradient(0deg, rgba(17, 24, 39, 0.92), rgba(17, 24, 39, 0.08) 48%, rgba(17, 24, 39, 0.25));
}

.hero-copy {
  position: absolute;
  left: max(24px, calc((100vw - 1180px) / 2));
  bottom: 86px;
  max-width: 720px;
  color: #ffffff;
  z-index: 2;
}

.hero-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: #92400e;
  background: rgba(251, 191, 36, 0.18);
  border: 1px solid rgba(251, 191, 36, 0.35);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 800;
}

.hero-kicker {
  color: #fde68a;
  background: rgba(251, 191, 36, 0.18);
}

.hero h1 {
  margin: 18px 0 16px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1;
  letter-spacing: -0.06em;
  text-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.hero p {
  margin: 0;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 22px);
}

.hero-meta,
.detail-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}

.hero-meta span,
.detail-meta-row span {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  font-size: 14px;
  font-weight: 700;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
}

.btn.ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.28);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transform: translateY(-50%);
}

.hero-prev {
  left: 20px;
}

.hero-next {
  right: 20px;
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
  width: 34px;
  background: #ffffff;
}

.section {
  padding: 64px 0;
}

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

.section-head h2,
.page-hero h1,
.detail-hero h1 {
  margin: 10px 0 8px;
  color: #111827;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.section-head p,
.page-hero p {
  margin: 0;
  max-width: 720px;
  color: var(--muted);
}

.section-more {
  flex-shrink: 0;
  color: var(--amber-dark);
  font-weight: 800;
}

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

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

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

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

.movie-card {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(217, 119, 6, 0.12);
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(146, 64, 14, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(217, 119, 6, 0.3);
  box-shadow: var(--shadow);
}

.poster-wrap {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4.1;
  overflow: hidden;
  background: linear-gradient(135deg, #fde68a, #fed7aa);
}

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

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

.card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  color: #ffffff;
  background: rgba(17, 24, 39, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.card-body {
  display: block;
  padding: 15px;
}

.movie-card strong {
  display: block;
  color: #111827;
  font-size: 17px;
  line-height: 1.35;
}

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

.card-meta {
  margin-top: 6px;
}

.card-desc {
  min-height: 42px;
  margin-top: 8px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.tag-row span,
.detail-tags span {
  display: inline-flex;
  color: var(--amber-dark);
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 999px;
  padding: 3px 9px;
  font-size: 12px;
  font-weight: 700;
}

.movie-card.large .poster-wrap {
  aspect-ratio: 16 / 10;
}

.category-band {
  background: linear-gradient(135deg, rgba(254, 243, 199, 0.82), rgba(255, 237, 213, 0.86));
}

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

.category-card,
.category-overview-card {
  display: block;
  padding: 22px;
  min-height: 150px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(217, 119, 6, 0.15);
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(146, 64, 14, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.category-card span,
.category-overview-card strong {
  display: block;
  color: #111827;
  font-size: 20px;
  font-weight: 900;
}

.category-card p,
.category-overview-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.category-overview-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

.category-overview-card div span {
  padding: 4px 8px;
  color: #92400e;
  background: #fffbeb;
  border-radius: 999px;
  font-size: 12px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 34px;
}

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

.compact-card,
.rank-row {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 12px;
  background: #ffffff;
  border: 1px solid rgba(217, 119, 6, 0.12);
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(146, 64, 14, 0.07);
}

.compact-card img,
.rank-row img {
  width: 70px;
  height: 92px;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 12px;
}

.compact-card span,
.rank-info {
  min-width: 0;
}

.compact-card strong,
.rank-info strong {
  display: block;
  color: #111827;
  font-size: 16px;
}

.compact-card small,
.rank-info small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.compact-card em {
  display: block;
  margin-top: 4px;
  color: #6b7280;
  font-size: 13px;
  font-style: normal;
}

.ranking-panel,
.info-card,
.side-card,
.ranking-board {
  background: #ffffff;
  border: 1px solid rgba(217, 119, 6, 0.12);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.ranking-panel {
  padding: 20px;
  align-self: start;
}

.panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-weight: 900;
}

.panel-title a {
  color: var(--amber-dark);
  font-size: 13px;
}

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

.rank-number {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ffffff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  border-radius: 12px;
  font-weight: 900;
}

.rank-row em,
.ranking-score {
  margin-left: auto;
  color: var(--amber-dark);
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
}

.search-banner {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 50px;
  padding: 36px;
  color: #ffffff;
  background: radial-gradient(circle at top left, rgba(251, 191, 36, 0.45), transparent 35%), linear-gradient(135deg, #92400e, #ea580c);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.search-banner .section-kicker {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.16);
}

.search-banner h2 {
  margin: 12px 0 8px;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.12;
}

.search-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.banner-search input,
.large-search input {
  flex: 1;
  min-width: 0;
  padding: 15px 18px;
}

.banner-search button,
.large-search button {
  padding: 15px 22px;
}

.page-hero {
  padding: 76px 0;
  background: radial-gradient(circle at 15% 20%, rgba(251, 191, 36, 0.28), transparent 30%), linear-gradient(135deg, #fff7ed, #ffffff);
  border-bottom: 1px solid rgba(217, 119, 6, 0.1);
}

.page-hero h1 {
  margin-top: 14px;
}

.hero-category-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-category-links a {
  padding: 8px 12px;
  color: #92400e;
  background: #ffffff;
  border: 1px solid #fde68a;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.filter-toolbar {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(217, 119, 6, 0.13);
  border-radius: 22px;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-button {
  border: 1px solid #fde68a;
  border-radius: 999px;
  padding: 8px 13px;
  color: #92400e;
  background: #ffffff;
  font-weight: 800;
  cursor: pointer;
}

.filter-button.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  border-color: transparent;
}

.ranking-board {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.ranking-card {
  display: grid;
  grid-template-columns: 46px 84px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.ranking-card:hover {
  background: #fffbeb;
  transform: translateX(4px);
}

.ranking-num {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  border-radius: 14px;
  font-weight: 900;
}

.ranking-card img {
  width: 84px;
  height: 110px;
  object-fit: cover;
  border-radius: 14px;
}

.ranking-copy strong,
.ranking-copy small,
.ranking-copy em {
  display: block;
}

.ranking-copy strong {
  color: #111827;
  font-size: 18px;
}

.ranking-copy small {
  margin: 4px 0;
  color: var(--muted);
}

.ranking-copy em {
  color: #4b5563;
  font-style: normal;
}

.detail-hero {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  color: #ffffff;
  background: #111827;
}

.detail-bg,
.detail-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.detail-bg {
  object-fit: cover;
  filter: blur(5px);
  transform: scale(1.04);
}

.detail-overlay {
  background: linear-gradient(90deg, rgba(17, 24, 39, 0.94), rgba(17, 24, 39, 0.62)), linear-gradient(0deg, rgba(17, 24, 39, 0.88), transparent);
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
  padding: 72px 0 64px;
}

.detail-hero h1 {
  max-width: 900px;
  color: #ffffff;
}

.detail-hero p {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.breadcrumb a {
  color: #fde68a;
}

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

.detail-main,
.detail-sidebar {
  display: grid;
  gap: 22px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  background: #000000;
  border-radius: 26px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.2);
}

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

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: none;
  color: #ffffff;
  background: radial-gradient(circle at center, rgba(217, 119, 6, 0.38), rgba(0, 0, 0, 0.58));
  cursor: pointer;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

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

.play-icon {
  width: 80px;
  height: 80px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  border-radius: 50%;
  font-size: 34px;
  box-shadow: 0 18px 40px rgba(217, 119, 6, 0.36);
}

.info-card,
.side-card {
  padding: 24px;
}

.info-card h2,
.side-card h2 {
  margin: 0 0 12px;
  color: #111827;
  font-size: 22px;
}

.info-card p,
.side-card p {
  margin: 0;
  color: #4b5563;
}

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

.meta-grid span {
  padding: 12px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 14px;
}

.meta-grid b {
  display: block;
  color: #92400e;
  font-size: 12px;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.side-category {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 10px 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  border-radius: 999px;
  font-weight: 900;
}

.mini-list .compact-card {
  box-shadow: none;
}

.large-search {
  max-width: 760px;
  margin-top: 26px;
}

.search-results-section {
  min-height: 420px;
}

.site-footer {
  margin-top: 40px;
  color: #d1d5db;
  background: linear-gradient(135deg, #111827, #1f2937);
}

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

.footer-logo {
  color: #ffffff;
  font-size: 22px;
}

.footer-brand p {
  max-width: 520px;
  color: #9ca3af;
}

.footer-col {
  display: grid;
  gap: 8px;
  align-content: start;
}

.footer-col h2 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 18px;
}

.footer-col a {
  color: #9ca3af;
}

.footer-col a:hover {
  color: #fbbf24;
}

.footer-bottom {
  padding: 20px 16px;
  color: #9ca3af;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.is-hidden-card {
  display: none !important;
}

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

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

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

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

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

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

  .menu-toggle {
    display: flex;
    margin-left: auto;
  }

  .nav-container {
    gap: 12px;
  }

  .hero {
    min-height: 560px;
    height: 78vh;
  }

  .hero-copy {
    right: 20px;
    bottom: 72px;
  }

  .hero-arrow {
    display: none;
  }

  .section {
    padding: 44px 0;
  }

  .section-head {
    display: block;
  }

  .section-more {
    display: inline-flex;
    margin-top: 12px;
  }

  .movie-grid,
  .featured-grid,
  .catalog-grid,
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .card-body {
    padding: 12px;
  }

  .card-desc {
    display: none;
  }

  .category-grid,
  .category-overview-grid,
  .detail-sidebar,
  .meta-grid {
    grid-template-columns: 1fr;
  }

  .ranking-card {
    grid-template-columns: 38px 72px minmax(0, 1fr);
  }

  .ranking-score {
    display: none;
  }

  .banner-search,
  .large-search,
  .mobile-search {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-inner {
    padding: 36px 0;
  }
}

@media (max-width: 440px) {
  .brand-text {
    font-size: 17px;
  }

  .movie-grid,
  .featured-grid,
  .catalog-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .movie-card.large .poster-wrap {
    aspect-ratio: 3 / 4;
  }
}
