:root {
  --bg: #0f172a;
  --bg-soft: #111827;
  --panel: rgba(30, 41, 59, 0.72);
  --panel-strong: rgba(15, 23, 42, 0.92);
  --line: rgba(96, 165, 250, 0.22);
  --text: #f8fafc;
  --muted: #94a3b8;
  --cyan: #22d3ee;
  --blue: #2563eb;
  --blue-light: #38bdf8;
  --shadow: 0 24px 70px rgba(2, 6, 23, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans SC", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 20% -10%, rgba(37, 99, 235, 0.38), transparent 32%),
    radial-gradient(circle at 80% 0%, rgba(34, 211, 238, 0.18), transparent 28%),
    linear-gradient(180deg, #0f172a 0%, #111827 48%, #020617 100%);
  min-height: 100vh;
}

body.no-scroll {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(30, 64, 175, 0.88), rgba(15, 23, 42, 0.96));
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 28px rgba(2, 6, 23, 0.34);
}

.header-inner {
  max-width: 1240px;
  height: 68px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(34, 211, 238, 0.22);
}

.brand-text {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, #60a5fa, #67e8f9, #38bdf8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

.top-search {
  flex: 1;
  max-width: 430px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-search input,
.mobile-search input,
.search-page-form input,
.local-filter input {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 999px;
  color: var(--text);
  background: rgba(15, 23, 42, 0.62);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.top-search input {
  padding: 10px 112px 10px 18px;
}

.top-search input:focus,
.mobile-search input:focus,
.search-page-form input:focus,
.local-filter input:focus {
  border-color: rgba(34, 211, 238, 0.72);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.12);
  background: rgba(15, 23, 42, 0.86);
}

.top-search button,
.mobile-search button,
.search-page-form button {
  border: 0;
  color: #ffffff;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.top-search button {
  position: absolute;
  right: 4px;
  padding: 8px 20px;
}

.top-search button:hover,
.mobile-search button:hover,
.search-page-form button:hover,
.primary-button:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 16px 35px rgba(34, 211, 238, 0.22);
}

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

.nav-link {
  color: #cbd5e1;
  padding: 9px 13px;
  border-radius: 999px;
  font-size: 15px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #67e8f9;
  background: rgba(37, 99, 235, 0.2);
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.62);
  color: #ffffff;
  width: 42px;
  height: 42px;
  cursor: pointer;
}

.category-strip {
  border-top: 1px solid rgba(148, 163, 184, 0.08);
}

.category-strip-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 22px 12px;
  display: flex;
  gap: 10px;
  overflow-x: auto;
}

.category-strip a {
  flex: 0 0 auto;
  color: #cbd5e1;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(15, 23, 42, 0.38);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 14px;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.category-strip a:hover {
  color: #67e8f9;
  border-color: rgba(34, 211, 238, 0.52);
  background: rgba(37, 99, 235, 0.18);
}

.mobile-panel {
  display: none;
  padding: 16px 22px 24px;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(2, 6, 23, 0.96);
}

.mobile-panel.open {
  display: grid;
  gap: 10px;
}

.mobile-panel a {
  padding: 11px 12px;
  border-radius: 12px;
  color: #cbd5e1;
  background: rgba(30, 41, 59, 0.42);
}

.mobile-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-bottom: 4px;
}

.mobile-search input {
  padding: 10px 14px;
}

.mobile-search button {
  padding: 10px 16px;
}

.hero {
  position: relative;
  height: 600px;
  min-height: 520px;
  overflow: hidden;
  background: #020617;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.95s ease;
}

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

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(1.05) contrast(1.02);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.96) 0%, rgba(2, 6, 23, 0.78) 42%, rgba(2, 6, 23, 0.12) 100%),
    linear-gradient(0deg, rgba(2, 6, 23, 0.92), transparent 46%);
}

.hero-content {
  position: absolute;
  inset: 0;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.hero-content h1 {
  max-width: 760px;
  margin: 18px 0 18px;
  font-size: clamp(42px, 7vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  text-shadow: 0 14px 44px rgba(0, 0, 0, 0.55);
}

.hero-content p {
  max-width: 660px;
  margin: 0 0 30px;
  color: #e2e8f0;
  font-size: 20px;
  line-height: 1.75;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.hero-tags,
.badge-row,
.detail-meta,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags span,
.badge-row span,
.detail-meta span,
.tag-list span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 11px;
  border-radius: 999px;
  color: #dbeafe;
  background: rgba(37, 99, 235, 0.28);
  border: 1px solid rgba(125, 211, 252, 0.2);
  font-size: 13px;
}

.hero-actions,
.detail-actions,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

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

.primary-button {
  min-height: 46px;
  padding: 0 24px;
  color: #ffffff;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.primary-button.small {
  min-height: 38px;
  padding: 0 18px;
  font-size: 14px;
}

.ghost-button {
  min-height: 46px;
  padding: 0 22px;
  color: #dbeafe;
  border: 1px solid rgba(226, 232, 240, 0.24);
  background: rgba(15, 23, 42, 0.42);
  backdrop-filter: blur(8px);
}

.ghost-button:hover {
  color: #ffffff;
  border-color: rgba(34, 211, 238, 0.64);
  background: rgba(37, 99, 235, 0.22);
}

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

.hero-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

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

.quick-search-panel,
.content-section,
.page-hero,
.detail-hero,
.watch-section,
.detail-text,
.rank-page-list {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 22px;
  padding-right: 22px;
}

.quick-search-panel {
  margin-top: -58px;
  position: relative;
  z-index: 6;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 24px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding-top: 26px;
  padding-bottom: 26px;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.82), rgba(15, 23, 42, 0.92));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.quick-search-panel span,
.section-heading span,
.page-hero span {
  color: #67e8f9;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 13px;
}

.quick-search-panel h2,
.section-heading h2,
.page-hero h1 {
  margin: 8px 0 0;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.04em;
}

.quick-search-panel p,
.page-hero p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.quick-search-panel form,
.search-page-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.quick-search-panel input,
.search-page-form input {
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(2, 6, 23, 0.46);
  outline: none;
}

.quick-search-panel button,
.search-page-form button {
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  color: #ffffff;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  font-weight: 800;
  cursor: pointer;
}

.content-section {
  padding-top: 72px;
}

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

.section-heading a {
  color: #67e8f9;
  font-weight: 700;
}

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

.movie-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.82), rgba(15, 23, 42, 0.94));
  box-shadow: 0 20px 45px rgba(2, 6, 23, 0.28);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 211, 238, 0.42);
  box-shadow: 0 28px 70px rgba(2, 6, 23, 0.45);
}

.poster {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.9);
}

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

.movie-card:hover .poster img {
  transform: scale(1.07);
  filter: brightness(1.08);
}

.poster-glow {
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.92), transparent);
}

.card-body {
  padding: 18px;
}

.card-body h3 {
  margin: 12px 0 8px;
  font-size: 19px;
  line-height: 1.35;
}

.card-body h3 a:hover {
  color: #67e8f9;
}

.card-body p {
  margin: 0 0 16px;
  color: #a8b4c7;
  line-height: 1.65;
  font-size: 14px;
}

.text-link {
  color: #67e8f9;
}

.play-link {
  color: #ffffff;
  background: rgba(37, 99, 235, 0.28);
  min-height: 34px;
  padding: 0 13px;
  font-size: 13px;
}

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

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

.movie-card.large .card-body h3 {
  font-size: 28px;
}

.side-list {
  display: grid;
  gap: 18px;
}

.movie-card.horizontal {
  display: grid;
  grid-template-columns: 132px 1fr;
  min-height: 168px;
}

.movie-card.horizontal .poster {
  height: 100%;
  aspect-ratio: auto;
}

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

.movie-card.horizontal .card-body h3 {
  font-size: 18px;
}

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

.category-tile,
.category-card {
  min-height: 150px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 24px;
  padding: 22px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.24), rgba(15, 23, 42, 0.82));
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.22);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.category-tile:hover,
.category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 211, 238, 0.48);
}

.category-tile strong,
.category-card h2 {
  display: block;
  margin: 0 0 10px;
  font-size: 22px;
}

.category-tile span,
.category-card p {
  color: #a8b4c7;
  line-height: 1.7;
}

.category-samples {
  display: grid;
  gap: 7px;
  margin-top: 18px;
}

.category-samples a {
  color: #cbd5e1;
  font-size: 14px;
}

.category-samples a:hover {
  color: #67e8f9;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 14px;
  align-items: center;
  min-height: 60px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 18px;
  padding: 12px 16px;
  background: rgba(30, 41, 59, 0.54);
}

.rank-item:hover {
  border-color: rgba(34, 211, 238, 0.42);
  background: rgba(37, 99, 235, 0.16);
}

.rank-num {
  color: #67e8f9;
  font-size: 22px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.rank-title {
  font-weight: 700;
}

.rank-meta {
  color: var(--muted);
  font-size: 13px;
}

.masonry-list {
  columns: 4 240px;
  column-gap: 24px;
}

.masonry-list .movie-card {
  display: inline-block;
  width: 100%;
  margin: 0 0 24px;
  break-inside: avoid;
}

.page-main,
.detail-main {
  padding-bottom: 80px;
}

.page-hero {
  padding-top: 70px;
  padding-bottom: 28px;
}

.small-hero {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.breadcrumb {
  max-width: 1240px;
  margin: 0 auto;
  padding: 28px 22px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: #94a3b8;
  font-size: 14px;
}

.breadcrumb a:hover {
  color: #67e8f9;
}

.local-filter {
  max-width: 420px;
  margin-top: 24px;
}

.local-filter input {
  min-height: 48px;
  padding: 0 18px;
}

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

.rank-page-list {
  display: grid;
  gap: 18px;
  padding-top: 30px;
}

.rank-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  align-items: stretch;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 24px;
  padding: 16px;
  background: rgba(30, 41, 59, 0.68);
  box-shadow: 0 18px 44px rgba(2, 6, 23, 0.24);
}

.rank-poster {
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 2 / 3;
  background: #0f172a;
}

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

.rank-card-body h2 {
  margin: 4px 0 10px;
  font-size: 26px;
}

.rank-card-body p {
  margin: 0 0 16px;
  color: #a8b4c7;
  line-height: 1.75;
}

.detail-main {
  background: radial-gradient(circle at 80% 8%, rgba(37, 99, 235, 0.28), transparent 30%);
}

.detail-hero {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 34px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 34px;
}

.detail-cover {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 28px;
  aspect-ratio: 2 / 3;
  background: rgba(15, 23, 42, 0.82);
  box-shadow: var(--shadow);
}

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

.detail-info h1 {
  margin: 18px 0 18px;
  max-width: 860px;
  font-size: clamp(38px, 6vw, 70px);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.detail-info .lead {
  max-width: 760px;
  margin: 0 0 22px;
  color: #dbeafe;
  font-size: 20px;
  line-height: 1.75;
}

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

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

.video-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(34, 211, 238, 0.22);
  border-radius: 28px;
  background: #020617;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

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

.play-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 0;
  color: #ffffff;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.32), rgba(2, 6, 23, 0.72));
  cursor: pointer;
}

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

.play-icon {
  width: 88px;
  height: 88px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding-left: 6px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-size: 36px;
  box-shadow: 0 20px 50px rgba(34, 211, 238, 0.3);
}

.play-layer strong {
  max-width: 70%;
  text-align: center;
  font-size: 24px;
}

.detail-text {
  max-width: 980px;
  padding-top: 56px;
}

.detail-text h2 {
  margin: 0 0 16px;
  font-size: 30px;
}

.detail-text p {
  margin: 0 0 30px;
  color: #cbd5e1;
  line-height: 2;
  font-size: 17px;
}

.search-page-form {
  max-width: 650px;
  margin-top: 24px;
}

.search-results:empty::before {
  content: "输入关键词后显示匹配内容";
  display: block;
  grid-column: 1 / -1;
  padding: 30px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 20px;
  color: var(--muted);
  background: rgba(30, 41, 59, 0.48);
}

.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.68), #020617);
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 42px 22px 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.footer-brand {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
  align-items: center;
}

.footer-brand p {
  grid-column: 2;
  margin: 6px 0 0;
  color: var(--muted);
}

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

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

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

.copyright {
  grid-column: 1 / -1;
  margin: 0;
  color: #64748b;
  font-size: 14px;
}

@media (max-width: 1080px) {
  .top-search {
    max-width: 340px;
  }

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

  .detail-hero {
    grid-template-columns: 250px 1fr;
  }
}

@media (max-width: 860px) {
  .desktop-nav,
  .top-search,
  .category-strip {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    margin-left: auto;
  }

  .header-inner {
    height: 64px;
  }

  .brand-text {
    font-size: 21px;
  }

  .hero {
    height: 560px;
  }

  .hero-content h1 {
    font-size: 44px;
  }

  .hero-content p {
    font-size: 17px;
  }

  .quick-search-panel,
  .feature-layout,
  .detail-hero,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .quick-search-panel {
    margin-top: -38px;
  }

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

  .rank-list {
    grid-template-columns: 1fr;
  }

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

  .rank-card {
    grid-template-columns: 120px 1fr;
  }

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

@media (max-width: 560px) {
  .header-inner,
  .hero-content,
  .quick-search-panel,
  .content-section,
  .page-hero,
  .detail-hero,
  .watch-section,
  .detail-text,
  .rank-page-list,
  .breadcrumb {
    padding-left: 16px;
    padding-right: 16px;
  }

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

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .hero {
    height: 520px;
    min-height: 500px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-actions,
  .detail-actions {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  .primary-button,
  .ghost-button {
    width: 100%;
  }

  .quick-search-panel form,
  .search-page-form,
  .mobile-search {
    grid-template-columns: 1fr;
  }

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

  .movie-card.horizontal,
  .rank-card {
    grid-template-columns: 1fr;
  }

  .movie-card.horizontal .poster,
  .rank-poster {
    aspect-ratio: 16 / 10;
  }

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

  .rank-item {
    grid-template-columns: 42px 1fr;
  }

  .rank-meta {
    grid-column: 2;
  }

  .play-icon {
    width: 70px;
    height: 70px;
    font-size: 30px;
  }

  .play-layer strong {
    font-size: 18px;
  }
}
