:root {
  color-scheme: dark;
  --bg: #020617;
  --panel: #0f172a;
  --panel-soft: #111c31;
  --panel-deep: #07111f;
  --border: rgba(148, 163, 184, 0.18);
  --text: #f8fafc;
  --muted: #94a3b8;
  --soft: #cbd5e1;
  --cyan: #22d3ee;
  --blue: #3b82f6;
  --violet: #8b5cf6;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(34, 211, 238, 0.16), transparent 30rem),
    radial-gradient(circle at 85% 10%, rgba(59, 130, 246, 0.14), transparent 34rem),
    linear-gradient(180deg, #020617 0%, #07111f 48%, #020617 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.94), rgba(30, 41, 59, 0.92), rgba(15, 23, 42, 0.94));
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.36);
}

.header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  gap: 24px;
  align-items: center;
  width: min(1280px, calc(100% - 32px));
  height: 72px;
  margin: 0 auto;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #00111d;
  box-shadow: 0 12px 30px rgba(34, 211, 238, 0.28);
}

.brand-text,
.footer-brand {
  font-size: 21px;
  background: linear-gradient(90deg, #67e8f9, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 0;
  overflow: hidden;
}

.nav-link {
  color: var(--soft);
  font-size: 14px;
  white-space: nowrap;
  transition: color 0.2s ease, transform 0.2s ease;
}

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

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

.header-search input,
.inline-filter input,
.large-search input {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.18);
  outline: none;
  background: rgba(15, 23, 42, 0.86);
  color: white;
  border-radius: 999px;
  padding: 10px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input:focus,
.inline-filter input:focus,
.large-search input:focus {
  border-color: rgba(34, 211, 238, 0.7);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.12);
}

.header-search button,
.inline-filter button,
.large-search button,
.primary-button,
.ghost-button,
.text-button {
  border: 0;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.header-search button,
.inline-filter button,
.large-search button,
.primary-button {
  border-radius: 999px;
  padding: 10px 18px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #00111d;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(34, 211, 238, 0.2);
}

.header-search button:hover,
.inline-filter button:hover,
.large-search button:hover,
.primary-button:hover,
.ghost-button:hover,
.text-button:hover {
  transform: translateY(-2px);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.82);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: white;
  border-radius: 999px;
}

.hero {
  width: min(1280px, calc(100% - 32px));
  margin: 28px auto 0;
}

.hero-stage {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 34px;
  background: #0f172a;
  box-shadow: var(--shadow);
}

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

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

.hero-slide > img,
.category-hero > img,
.detail-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(1.06) contrast(1.03);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 42%, rgba(34, 211, 238, 0.24), transparent 24rem),
    linear-gradient(90deg, rgba(2, 6, 23, 0.92) 0%, rgba(2, 6, 23, 0.62) 45%, rgba(2, 6, 23, 0.12) 100%),
    linear-gradient(0deg, rgba(2, 6, 23, 0.82), rgba(2, 6, 23, 0.08));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(650px, 100%);
  min-height: 620px;
  padding: 64px;
}

.kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  border: 1px solid rgba(34, 211, 238, 0.32);
  border-radius: 999px;
  padding: 5px 12px;
  background: rgba(8, 145, 178, 0.16);
  color: #67e8f9;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-content h1,
.page-hero h1,
.category-hero h1,
.detail-info h1 {
  margin: 0;
  color: white;
  font-size: clamp(40px, 7vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.06em;
}

.hero-content p,
.page-hero p,
.category-hero p,
.detail-one-line {
  width: min(720px, 100%);
  margin: 20px 0 0;
  color: #dbeafe;
  font-size: 18px;
}

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

.hero-tags span,
.tag-row span {
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(15, 23, 42, 0.68);
  color: #e0f2fe;
  font-size: 13px;
}

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

.ghost-button {
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 999px;
  padding: 10px 18px;
  background: rgba(15, 23, 42, 0.58);
  color: white;
}

.hero-card {
  position: absolute;
  right: 44px;
  bottom: 44px;
  z-index: 3;
  width: min(330px, calc(100% - 88px));
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 24px;
  padding: 22px;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 56px rgba(2, 6, 23, 0.42);
}

.hero-card span,
.hero-card small {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.hero-card strong {
  display: block;
  margin: 7px 0;
  color: white;
  font-size: 22px;
}

.hero-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 18px;
}

.hero-dot {
  width: 34px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.28);
  cursor: pointer;
}

.hero-dot.active {
  background: linear-gradient(90deg, var(--cyan), var(--blue));
}

.quick-search-panel,
.content-section,
.page-hero,
.category-hero,
.detail-wrap,
.watch-section {
  width: min(1280px, calc(100% - 32px));
  margin: 34px auto 0;
}

.quick-search-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(15, 23, 42, 0.72);
  box-shadow: 0 18px 48px rgba(2, 6, 23, 0.25);
}

.large-search,
.inline-filter {
  display: flex;
  gap: 10px;
  align-items: center;
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quick-links a {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(2, 6, 23, 0.36);
  color: var(--soft);
}

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

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

.section-head h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.section-head p {
  margin: 10px 0 0;
  color: var(--muted);
}

.section-link,
.text-button {
  color: #67e8f9;
  font-weight: 800;
}

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.84);
  box-shadow: 0 22px 46px rgba(2, 6, 23, 0.22);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  border-color: rgba(34, 211, 238, 0.62);
  box-shadow: 0 28px 60px rgba(8, 145, 178, 0.16);
}

.movie-poster {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a, #1e293b);
}

.movie-poster img,
.category-tile img,
.category-overview-media img,
.rank-cover img,
.detail-poster img,
.player-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.movie-card:hover .movie-poster img,
.category-tile:hover img,
.rank-row:hover .rank-cover img {
  transform: scale(1.08);
}

.poster-shade,
.category-shade,
.player-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.86), transparent 62%);
}

.play-badge,
.player-button {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  width: 62px;
  height: 62px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #0f172a;
  font-size: 24px;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.movie-card:hover .play-badge {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.04);
}

.card-rank {
  position: absolute;
  right: 12px;
  bottom: 12px;
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(2, 6, 23, 0.72);
  color: #67e8f9;
  font-weight: 800;
  font-size: 13px;
}

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

.movie-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
}

.movie-card h2,
.rank-info h2,
.category-overview-body h2,
.story-card h2 {
  margin: 9px 0 0;
  color: white;
  font-size: 18px;
  line-height: 1.32;
}

.movie-card h2 a:hover,
.rank-info h2 a:hover,
.category-overview-body h2 a:hover {
  color: #67e8f9;
}

.movie-card p,
.rank-info p,
.category-overview-body p,
.story-card p {
  color: var(--muted);
}

.movie-card p {
  display: -webkit-box;
  min-height: 48px;
  margin: 10px 0 0;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 14px;
}

.tag-row {
  margin-top: 14px;
  gap: 7px;
}

.tag-row span {
  padding: 4px 8px;
  font-size: 12px;
}

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

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

.rank-row {
  display: grid;
  grid-template-columns: 54px 116px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 12px;
  background: rgba(15, 23, 42, 0.82);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.rank-row:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 211, 238, 0.55);
}

.rank-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.2), rgba(59, 130, 246, 0.24));
  color: #67e8f9;
  font-weight: 900;
}

.rank-cover {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 16px;
  background: #0f172a;
}

.rank-info p {
  display: -webkit-box;
  margin: 6px 0 8px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 14px;
}

.rank-heat {
  display: grid;
  place-items: center;
  min-width: 74px;
  color: #67e8f9;
}

.rank-heat strong {
  font-size: 24px;
  line-height: 1;
}

.rank-heat span {
  color: var(--muted);
  font-size: 12px;
}

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

.category-tile {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #0f172a;
  box-shadow: 0 22px 46px rgba(2, 6, 23, 0.24);
}

.category-tile img {
  position: absolute;
  inset: 0;
}

.category-tile span,
.category-tile strong,
.category-tile small {
  position: relative;
  z-index: 2;
  display: block;
  margin: 0 18px;
}

.category-name {
  width: fit-content;
  margin-top: 112px !important;
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(34, 211, 238, 0.18);
  color: #67e8f9;
  font-weight: 800;
}

.category-tile strong {
  margin-top: 10px;
  color: white;
  font-size: 20px;
}

.category-tile small {
  margin-top: 8px;
  color: var(--soft);
}

.page-hero,
.category-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: rgba(15, 23, 42, 0.82);
  box-shadow: var(--shadow);
}

.page-hero {
  padding: 72px;
  background:
    radial-gradient(circle at 80% 20%, rgba(34, 211, 238, 0.18), transparent 28rem),
    linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.72));
}

.category-hero {
  min-height: 460px;
  padding: 72px;
}

.category-hero-shade,
.detail-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.32)),
    linear-gradient(0deg, rgba(2, 6, 23, 0.74), rgba(2, 6, 23, 0.1));
}

.category-hero > div {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
}

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

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

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

.category-overview-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 14px;
  background: rgba(15, 23, 42, 0.82);
}

.category-overview-media {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #0f172a;
}

.category-overview-media span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(2, 6, 23, 0.72);
  color: #67e8f9;
  font-weight: 800;
}

.category-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 16px;
}

.category-preview span {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 9px;
  color: var(--soft);
  font-size: 13px;
}

.detail-hero {
  width: min(1280px, calc(100% - 32px));
  min-height: 640px;
  margin: 28px auto 0;
}

.detail-wrap {
  position: relative;
  z-index: 2;
  padding: 52px 0;
}

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

.detail-poster {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: #0f172a;
  box-shadow: 0 34px 70px rgba(2, 6, 23, 0.45);
}

.detail-info {
  padding-bottom: 8px;
}

.detail-info h1 {
  font-size: clamp(38px, 6vw, 72px);
}

.detail-data {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 0;
}

.detail-data div {
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 18px;
  padding: 13px;
  background: rgba(15, 23, 42, 0.58);
}

.detail-data dt {
  color: var(--muted);
  font-size: 12px;
}

.detail-data dd {
  margin: 4px 0 0;
  color: white;
  font-weight: 800;
}

.watch-section {
  scroll-margin-top: 90px;
}

.watch-player {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 28px;
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: var(--shadow);
}

.watch-player video,
.player-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.watch-player video {
  background: #000;
}

.player-cover {
  border: 0;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  background: #020617;
}

.player-cover.is-hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.player-cover .player-button {
  width: 88px;
  height: 88px;
  opacity: 1;
  font-size: 34px;
}

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

.story-card {
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  background: rgba(15, 23, 42, 0.82);
  box-shadow: 0 20px 48px rgba(2, 6, 23, 0.22);
}

.story-card h2 {
  margin-top: 0;
  font-size: 28px;
}

.story-card p {
  margin-bottom: 0;
  color: #d1d5db;
  font-size: 17px;
  line-height: 1.9;
}

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

.empty-result {
  display: none;
  margin-top: 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  background: rgba(15, 23, 42, 0.78);
  color: var(--muted);
  text-align: center;
}

.empty-result.show {
  display: block;
}

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

.site-footer {
  margin-top: 58px;
  border-top: 1px solid var(--border);
  background: rgba(2, 6, 23, 0.82);
}

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

.site-footer p,
.footer-links a {
  color: var(--muted);
}

.site-footer h2 {
  margin: 0 0 12px;
  font-size: 16px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

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

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  padding: 18px;
  color: #64748b;
  text-align: center;
}

@media (max-width: 1120px) {
  .header-inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .header-search {
    display: none;
  }

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

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

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

@media (max-width: 860px) {
  .header-inner {
    display: flex;
    justify-content: space-between;
  }

  .site-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 18px;
    background: rgba(15, 23, 42, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .nav-link {
    padding: 9px 0;
  }

  .menu-button {
    display: block;
  }

  .hero-stage,
  .hero-content {
    min-height: 560px;
  }

  .hero-content {
    padding: 34px;
  }

  .hero-card {
    left: 34px;
    right: 34px;
    bottom: 28px;
    width: auto;
  }

  .quick-search-panel,
  .section-head,
  .large-search,
  .inline-filter,
  .footer-grid,
  .detail-grid,
  .article-layout,
  .category-overview-card {
    grid-template-columns: 1fr;
  }

  .quick-search-panel,
  .section-head,
  .large-search,
  .inline-filter {
    align-items: stretch;
  }

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

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

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

  .page-hero,
  .category-hero {
    padding: 42px 24px;
  }

  .detail-wrap {
    padding: 32px 0;
  }

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

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

  .hero,
  .quick-search-panel,
  .content-section,
  .page-hero,
  .category-hero,
  .detail-hero,
  .watch-section,
  .detail-wrap,
  .footer-grid {
    width: min(100% - 20px, 1280px);
  }

  .hero-stage,
  .hero-content {
    min-height: 520px;
  }

  .hero-content {
    padding: 24px;
  }

  .hero-content h1,
  .page-hero h1,
  .category-hero h1,
  .detail-info h1 {
    font-size: 34px;
  }

  .hero-content p,
  .page-hero p,
  .category-hero p,
  .detail-one-line {
    font-size: 16px;
  }

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

  .rank-row {
    grid-template-columns: 38px 86px minmax(0, 1fr);
  }

  .rank-heat {
    grid-column: 3;
    justify-items: start;
  }

  .detail-data {
    grid-template-columns: 1fr;
  }

  .story-card {
    padding: 22px;
  }
}
