:root {
  color-scheme: light;
  --page-bg: #f4f7fb;
  --card-bg: #ffffff;
  --ink: #0f172a;
  --muted: #64748b;
  --muted-2: #94a3b8;
  --line: rgba(15, 23, 42, 0.1);
  --blue: #2563eb;
  --cyan: #06b6d4;
  --red: #dc2626;
  --amber: #f59e0b;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  --soft-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: linear-gradient(180deg, #f8fbff 0%, var(--page-bg) 44%, #eef4ff 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  color: #ffffff;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(30, 64, 175, 0.95), rgba(8, 145, 178, 0.93));
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.28);
  backdrop-filter: blur(20px);
}

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

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, #60a5fa, #22d3ee);
  color: #ffffff;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.35);
}

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

.brand-text strong,
.footer-brand {
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, #bfdbfe, #67e8f9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-text small {
  margin-top: 4px;
  color: #bfdbfe;
  font-size: 0.75rem;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  flex-wrap: wrap;
}

.nav-link {
  padding: 10px 13px;
  border-radius: 12px;
  color: #dbeafe;
  font-size: 0.95rem;
  transition: 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: #ffffff;
  background: rgba(37, 99, 235, 0.72);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.menu-toggle {
  display: none;
  border: 0;
  color: #ffffff;
  border-radius: 12px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.14);
}

.home-hero {
  padding: 34px 0 18px;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.18), transparent 32%),
    radial-gradient(circle at top right, rgba(6, 182, 212, 0.16), transparent 30%);
}

.hero-shell {
  display: grid;
  grid-template-columns: 0.85fr 1.35fr;
  gap: 28px;
  width: min(1380px, calc(100% - 32px));
  margin: 0 auto;
  align-items: stretch;
}

.hero-heading {
  min-height: 560px;
  padding: clamp(28px, 5vw, 54px);
  border-radius: var(--radius-lg);
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(15, 23, 42, 0.94), rgba(30, 64, 175, 0.92)),
    radial-gradient(circle at 20% 20%, rgba(34, 211, 238, 0.42), transparent 38%);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.hero-heading::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -130px;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.22);
  filter: blur(8px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #075985;
  background: rgba(224, 242, 254, 0.92);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-heading .eyebrow,
.hero-copy .eyebrow,
.detail-copy .eyebrow,
.page-hero .eyebrow {
  color: #dbeafe;
  background: rgba(37, 99, 235, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-heading h1 {
  margin: 24px 0 16px;
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  line-height: 1.03;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.hero-heading p {
  margin: 0 0 28px;
  color: #dbeafe;
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero-search,
.inline-search {
  display: flex;
  gap: 10px;
  padding: 8px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  position: relative;
  z-index: 2;
}

.hero-search input,
.inline-search input,
.toolbar input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: none;
  padding: 13px 16px;
  color: var(--ink);
  background: #ffffff;
}

.hero-search button,
.inline-search button {
  border: 0;
  border-radius: 14px;
  padding: 0 20px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-weight: 800;
  cursor: pointer;
}

.hero-category-links {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-category-links a {
  padding: 8px 12px;
  border-radius: 999px;
  color: #bfdbfe;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: 0.2s ease;
}

.hero-category-links a:hover {
  color: #ffffff;
  transform: translateY(-2px);
  background: rgba(37, 99, 235, 0.44);
}

.hero-slider {
  position: relative;
  min-height: 560px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: #ffffff;
  box-shadow: var(--shadow);
  background: #0f172a;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 300px;
  align-items: end;
  gap: 26px;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity 0.6s ease, transform 0.6s ease;
  padding: clamp(24px, 4vw, 54px);
  background-image:
    linear-gradient(90deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.62), rgba(15, 23, 42, 0.82)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
}

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

.hero-backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 20%, rgba(6, 182, 212, 0.28), transparent 30%);
}

.hero-copy,
.hero-poster {
  position: relative;
  z-index: 2;
}

.hero-copy h2 {
  margin: 18px 0 14px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  font-weight: 950;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.hero-copy p {
  max-width: 720px;
  color: #e2e8f0;
  line-height: 1.8;
  font-size: 1.04rem;
}

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

.hero-tags span,
.detail-meta span,
.movie-meta span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: #dbeafe;
  background: rgba(15, 23, 42, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 10px;
  font-size: 0.86rem;
  font-weight: 700;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 14px;
  font-weight: 900;
  transition: 0.2s ease;
}

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

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--red), #f97316);
  box-shadow: 0 14px 28px rgba(220, 38, 38, 0.28);
}

.btn-soft {
  color: #ffffff;
  background: rgba(37, 99, 235, 0.82);
}

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

.hero-poster {
  align-self: center;
  justify-self: end;
  width: min(300px, 32vw);
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
  transform: rotate(2deg);
}

.hero-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.hero-dot {
  width: 28px;
  height: 7px;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
  transition: 0.2s ease;
}

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

.content-section {
  width: min(1380px, calc(100% - 32px));
  margin: 0 auto;
  padding: 52px 0;
}

.compact-section {
  padding-top: 28px;
}

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

.section-heading h2 {
  margin: 10px 0 0;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.15;
  font-weight: 950;
  letter-spacing: -0.03em;
}

.section-more,
.text-link {
  color: var(--blue);
  font-weight: 900;
}

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

.category-card,
.category-overview-card,
.article-card,
.movie-card,
.rank-item {
  background: var(--card-bg);
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
}

.category-card {
  position: relative;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 8px;
  border-radius: 22px;
  padding: 18px;
  overflow: hidden;
  color: #ffffff;
  isolation: isolate;
}

.category-card::before,
.category-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg, rgba(15, 23, 42, 0.24), rgba(15, 23, 42, 0.86)), var(--category-image);
  background-size: cover;
  background-position: center;
  z-index: -2;
  transition: 0.28s ease;
}

.category-card:hover::before,
.category-visual:hover::before {
  transform: scale(1.08);
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.36), rgba(6, 182, 212, 0.18));
  z-index: -1;
}

.category-card span {
  font-size: 1.15rem;
  font-weight: 950;
}

.category-card strong {
  color: #e2e8f0;
  font-size: 0.9rem;
  line-height: 1.5;
}

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

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

.movie-card {
  overflow: hidden;
  border-radius: 20px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, #dbeafe, #e0f2fe);
}

.movie-card-compact .poster-link {
  aspect-ratio: 16 / 10;
}

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

.movie-card:hover .poster-link img {
  transform: scale(1.08);
  filter: saturate(1.05) contrast(1.05);
}

.poster-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(220, 38, 38, 0.92);
  font-size: 0.78rem;
  font-weight: 900;
}

.poster-play {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(37, 99, 235, 0.86);
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.35);
}

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

.movie-card h3,
.rank-content h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.35;
}

.movie-card h3 a:hover,
.rank-content h3 a:hover {
  color: var(--blue);
}

.movie-card p,
.rank-content p,
.article-card p,
.category-overview-card p {
  color: var(--muted);
  line-height: 1.72;
}

.movie-card p {
  margin: 0 0 12px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 3.4em;
}

.movie-meta span {
  color: var(--muted);
  background: #f1f5f9;
  border-color: rgba(15, 23, 42, 0.06);
  font-size: 0.78rem;
}

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

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

.rank-item {
  display: grid;
  grid-template-columns: 54px 116px 1fr;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border-radius: 20px;
  transition: 0.2s ease;
}

.rank-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.rank-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-weight: 950;
}

.rank-cover {
  display: block;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 4 / 3;
  background: #e2e8f0;
}

.rank-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero,
.detail-hero {
  position: relative;
  color: #ffffff;
  background:
    linear-gradient(115deg, rgba(15, 23, 42, 0.94), rgba(30, 64, 175, 0.86)),
    var(--page-hero-image, none);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.page-hero {
  padding: 84px 0;
}

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

.page-hero h1 {
  margin: 18px 0 14px;
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.page-hero p {
  max-width: 760px;
  color: #dbeafe;
  font-size: 1.1rem;
  line-height: 1.8;
}

.inline-search {
  max-width: 620px;
  margin-top: 22px;
}

.toolbar {
  width: min(680px, 100%);
  margin-bottom: 24px;
}

.hero-toolbar {
  margin-top: 26px;
  margin-bottom: 0;
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 22px;
  padding: 16px;
  border-radius: 24px;
  align-items: center;
}

.category-visual {
  position: relative;
  min-height: 160px;
  border-radius: 20px;
  overflow: hidden;
  isolation: isolate;
  background: #e2e8f0;
}

.category-overview-card h2 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  font-weight: 950;
}

.detail-hero {
  min-height: 620px;
  background-image:
    linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.72), rgba(15, 23, 42, 0.92)),
    var(--detail-image);
  background-size: cover;
  background-position: center;
}

.detail-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 76% 18%, rgba(6, 182, 212, 0.22), transparent 30%);
}

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

.breadcrumb,
.breadcrumb-sep {
  display: inline-flex;
  margin: 0 6px 30px 0;
  color: #bfdbfe;
  font-weight: 800;
}

.detail-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 38px;
  align-items: center;
}

.detail-poster {
  overflow: hidden;
  border-radius: 26px;
  aspect-ratio: 3 / 4;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.44);
  background: #e2e8f0;
}

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

.detail-copy h1 {
  margin: 20px 0 18px;
  font-size: clamp(2.35rem, 5vw, 5rem);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.detail-one-line {
  max-width: 820px;
  color: #e2e8f0;
  font-size: 1.15rem;
  line-height: 1.85;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  color: #dbeafe;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-weight: 800;
}

.player-section {
  width: min(1180px, calc(100% - 32px));
  margin: -72px auto 0;
  position: relative;
  z-index: 5;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #020617;
  box-shadow: 0 34px 80px rgba(15, 23, 42, 0.36);
  aspect-ratio: 16 / 9;
}

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

.play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 10px;
  border: 0;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.24), rgba(2, 6, 23, 0.7));
  cursor: pointer;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.play-overlay span {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), #f97316);
  box-shadow: 0 20px 45px rgba(220, 38, 38, 0.38);
  font-size: 2.2rem;
  padding-left: 5px;
}

.play-overlay strong {
  font-size: 1.08rem;
  letter-spacing: 0.08em;
}

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

.detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.article-card {
  border-radius: 24px;
  padding: clamp(22px, 3vw, 32px);
}

.article-card h2 {
  margin: 0 0 14px;
  font-size: 1.4rem;
  font-weight: 950;
}

.article-card p {
  margin: 0;
  font-size: 1rem;
}

.site-footer {
  margin-top: 46px;
  color: #cbd5e1;
  background: linear-gradient(135deg, #0f172a, #172554, #083344);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 32px;
  width: min(1380px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 26px;
}

.footer-inner p {
  max-width: 540px;
  color: #94a3b8;
  line-height: 1.75;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  justify-content: flex-end;
}

.footer-links a {
  color: #dbeafe;
}

.footer-links a:hover {
  color: #67e8f9;
}

.footer-copy {
  width: min(1380px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 28px;
  color: #94a3b8;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

@media (max-width: 1180px) {
  .hero-shell,
  .hero-slide,
  .detail-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-heading,
  .hero-slider {
    min-height: auto;
  }

  .hero-slider {
    min-height: 620px;
  }

  .hero-poster {
    display: none;
  }

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

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

  .rank-page-list,
  .detail-content,
  .category-overview-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 860px) {
  .header-inner {
    min-height: 68px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.98);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .nav-link {
    width: 100%;
  }

  .hero-shell,
  .content-section,
  .page-hero > div,
  .detail-inner,
  .player-section,
  .footer-inner,
  .footer-copy {
    width: min(100% - 24px, 720px);
  }

  .hero-slide {
    padding: 28px;
    align-items: center;
  }

  .hero-slider {
    min-height: 560px;
  }

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

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

  .category-overview-card,
  .rank-item {
    grid-template-columns: 1fr;
  }

  .rank-cover {
    width: 100%;
    aspect-ratio: 16 / 9;
  }

  .detail-poster {
    max-width: 280px;
  }

  .player-section {
    margin-top: -34px;
  }
}

@media (max-width: 560px) {
  .brand {
    min-width: auto;
  }

  .brand-text small {
    display: none;
  }

  .hero-heading,
  .hero-slide,
  .article-card {
    padding: 22px;
  }

  .hero-search,
  .inline-search {
    flex-direction: column;
  }

  .hero-search button,
  .inline-search button {
    min-height: 44px;
  }

  .movie-grid,
  .wide-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .detail-copy h1,
  .page-hero h1,
  .hero-heading h1,
  .hero-copy h2 {
    letter-spacing: -0.03em;
  }
}
