:root {
  --blue-900: #0f1f4d;
  --blue-800: #1e3a8a;
  --blue-700: #1d4ed8;
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --orange-600: #ea580c;
  --orange-500: #f97316;
  --orange-100: #ffedd5;
  --red-600: #dc2626;
  --green-500: #22c55e;
  --cyan-500: #06b6d4;
  --purple-500: #8b5cf6;
  --pink-500: #ec4899;
  --indigo-500: #6366f1;
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --white: #ffffff;
  --shadow-sm: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 18px 45px rgba(15, 23, 42, 0.16);
  --shadow-lg: 0 28px 65px rgba(15, 23, 42, 0.22);
  --radius-lg: 18px;
  --radius-xl: 28px;
  --container: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--slate-800);
  background: linear-gradient(180deg, #f8fbff 0%, #f3f6fb 38%, #ffffff 100%);
  line-height: 1.65;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: var(--white);
  background: linear-gradient(90deg, var(--blue-700), var(--blue-900));
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.18);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange-500), #fb7185);
  font-weight: 900;
  font-size: 22px;
  box-shadow: 0 12px 25px rgba(249, 115, 22, 0.35);
}

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

.brand-copy strong {
  font-size: 20px;
  letter-spacing: 0.02em;
}

.brand-copy em {
  margin-top: 4px;
  color: #bfdbfe;
  font-size: 12px;
  font-style: normal;
}

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

.desktop-nav a,
.mobile-panel a {
  color: #dbeafe;
  font-weight: 700;
  transition: color 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.mobile-panel a:hover,
.mobile-panel a.active {
  color: #fed7aa;
}

.top-search {
  display: flex;
  width: 270px;
  border-radius: 999px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.top-search input,
.mobile-panel input,
.rank-search input,
.search-panel input {
  width: 100%;
  border: 0;
  outline: 0;
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--slate-800);
  background: var(--white);
}

.top-search button,
.mobile-panel button,
.rank-search button,
.search-panel button {
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--orange-500);
  cursor: pointer;
  font-weight: 800;
  transition: background 0.2s ease, transform 0.2s ease;
}

.top-search button:hover,
.mobile-panel button:hover,
.rank-search button:hover,
.search-panel button:hover {
  background: var(--orange-600);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  color: var(--white);
  background: transparent;
  font-size: 28px;
  cursor: pointer;
}

.mobile-panel {
  display: none;
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  padding: 0 0 18px;
}

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

.mobile-panel form {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.mobile-panel nav {
  display: grid;
  gap: 12px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  color: var(--white);
  background: var(--slate-950);
}

.hero-stage {
  position: relative;
  min-height: 620px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  align-items: center;
  gap: 42px;
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  padding: 64px 0 86px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.hero-slide::before {
  content: "";
  position: fixed;
  inset: 68px 0 auto 0;
  height: 620px;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.94), rgba(15, 23, 42, 0.72), rgba(30, 58, 138, 0.44)),
    var(--hero-image) center / cover no-repeat;
  filter: saturate(1.1);
  z-index: -2;
}

.hero-slide::after {
  content: "";
  position: fixed;
  inset: 68px 0 auto 0;
  height: 620px;
  background: radial-gradient(circle at 20% 18%, rgba(59, 130, 246, 0.32), transparent 28%), radial-gradient(circle at 82% 22%, rgba(249, 115, 22, 0.22), transparent 30%);
  z-index: -1;
}

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

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: max-content;
  margin-bottom: 14px;
  border-radius: 999px;
  padding: 7px 12px;
  color: #fff7ed;
  background: rgba(249, 115, 22, 0.18);
  border: 1px solid rgba(251, 146, 60, 0.35);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.detail-copy h1 {
  margin: 0;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero h2 {
  margin: 18px 0 12px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
}

.hero p,
.page-hero p,
.detail-copy .lead {
  max-width: 760px;
  color: #dbeafe;
  font-size: 18px;
}

.hero-tags,
.card-tags,
.tag-cloud,
.meta-row,
.detail-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags span,
.card-tags span,
.tag-cloud span,
.meta-row span,
.detail-meta span {
  display: inline-flex;
  border-radius: 999px;
  padding: 5px 10px;
  color: #dbeafe;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 12px;
  font-weight: 700;
}

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

.primary-button,
.ghost-button,
.light-button,
.small-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 12px;
  padding: 0 20px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
  color: var(--white);
  background: var(--orange-500);
  box-shadow: 0 16px 34px rgba(249, 115, 22, 0.35);
}

.primary-button:hover,
.light-button:hover,
.small-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.18);
}

.ghost-button {
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.ghost-button.light {
  color: var(--blue-900);
  background: var(--white);
}

.light-button {
  color: var(--blue-700);
  background: var(--white);
}

.small-button {
  min-height: 38px;
  border-radius: 10px;
  color: var(--white);
  background: var(--blue-600);
}

.hero-image-panel {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  max-height: 510px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.26), rgba(249, 115, 22, 0.24));
  box-shadow: var(--shadow-lg);
}

.hero-image-panel::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  z-index: 2;
}

.hero-image-panel img {
  height: 100%;
  object-fit: cover;
}

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

.hero-dots button {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.hero-dots button.is-active {
  width: 36px;
  background: var(--orange-500);
}

.section {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  padding: 56px 0;
}

.section.wide {
  margin-top: -32px;
  position: relative;
  z-index: 8;
}

.intro-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  border-radius: var(--radius-xl);
  padding: 28px 32px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.intro-strip h2,
.section-head h2,
.article-card h2,
.player-card h2,
.related-panel h2 {
  margin: 0;
  color: var(--slate-900);
  font-size: clamp(25px, 4vw, 36px);
  line-height: 1.16;
}

.intro-strip p,
.article-card p {
  color: var(--slate-600);
}

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

.section-head a {
  color: var(--blue-600);
  font-weight: 900;
}

.movie-grid {
  display: grid;
  gap: 20px;
}

.cards-six {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

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

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

.movie-card {
  overflow: hidden;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

.poster-link,
.poster-frame {
  display: block;
}

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

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

.poster-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(2, 6, 23, 0.72));
}

.poster-year,
.rank-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.poster-year {
  right: 10px;
  bottom: 10px;
  padding: 4px 9px;
  background: rgba(15, 23, 42, 0.72);
}

.rank-badge {
  top: 10px;
  left: 10px;
  min-width: 34px;
  height: 28px;
  background: linear-gradient(135deg, var(--orange-500), var(--red-600));
}

.card-body {
  padding: 15px;
}

.card-title {
  display: -webkit-box;
  overflow: hidden;
  min-height: 48px;
  color: var(--slate-900);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.card-title:hover {
  color: var(--orange-600);
}

.card-body p {
  display: -webkit-box;
  overflow: hidden;
  min-height: 44px;
  margin: 8px 0 12px;
  color: var(--slate-600);
  font-size: 13px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.card-tags span,
.tag-cloud span,
.meta-row span,
.detail-meta span {
  color: var(--slate-600);
  background: var(--slate-100);
  border-color: var(--slate-200);
}

.category-section {
  border-radius: var(--radius-xl);
  padding: 46px 34px;
  background: linear-gradient(135deg, rgba(219, 234, 254, 0.72), rgba(255, 237, 213, 0.68));
}

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

.category-grid.small {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.category-tile {
  position: relative;
  overflow: hidden;
  min-height: 145px;
  border-radius: 20px;
  padding: 22px;
  color: var(--slate-900);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.category-tile::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.12;
}

.category-tile:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.category-tile span {
  display: inline-flex;
  margin-bottom: 18px;
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--white);
  background: var(--blue-600);
  font-size: 12px;
  font-weight: 900;
}

.category-tile strong {
  display: block;
  font-size: 22px;
}

.category-tile em {
  display: block;
  margin-top: 8px;
  color: var(--slate-500);
  font-style: normal;
}

.accent-blue { color: var(--blue-600); }
.accent-orange { color: var(--orange-500); }
.accent-green { color: var(--green-500); }
.accent-red { color: var(--red-600); }
.accent-purple { color: var(--purple-500); }
.accent-cyan { color: var(--cyan-500); }
.accent-pink { color: var(--pink-500); }
.accent-indigo { color: var(--indigo-500); }

.rank-preview,
.rank-list.full {
  border-radius: var(--radius-xl);
}

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

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

.rank-item {
  display: grid;
  grid-template-columns: 78px 54px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  border-radius: 18px;
  padding: 12px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.rank-cover {
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, #dbeafe, #ffedd5);
}

.rank-number {
  color: var(--orange-500);
  font-size: 30px;
  font-weight: 950;
  text-align: center;
}

.rank-content a {
  color: var(--slate-900);
  font-weight: 900;
}

.rank-content a:hover {
  color: var(--orange-600);
}

.rank-content p {
  margin: 6px 0 8px;
  color: var(--slate-600);
  font-size: 14px;
}

.cta-panel {
  border-radius: var(--radius-xl);
  padding: 52px 32px;
  color: var(--white);
  text-align: center;
  background: linear-gradient(135deg, var(--orange-500), var(--red-600));
  box-shadow: var(--shadow-md);
}

.cta-panel h2 {
  margin: 0;
  font-size: clamp(28px, 5vw, 46px);
}

.cta-panel p {
  color: var(--orange-100);
  font-size: 18px;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
}

.page-hero {
  width: min(100% - 32px, var(--container));
  margin: 34px auto 0;
  border-radius: var(--radius-xl);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow-md);
}

.compact-hero.accent-orange { background: linear-gradient(135deg, #c2410c, #7c2d12); }
.compact-hero.accent-green { background: linear-gradient(135deg, #15803d, #14532d); }
.compact-hero.accent-red { background: linear-gradient(135deg, #dc2626, #7f1d1d); }
.compact-hero.accent-purple { background: linear-gradient(135deg, #7c3aed, #3b0764); }
.compact-hero.accent-cyan { background: linear-gradient(135deg, #0891b2, #164e63); }
.compact-hero.accent-pink { background: linear-gradient(135deg, #db2777, #831843); }
.compact-hero.accent-indigo { background: linear-gradient(135deg, #4f46e5, #312e81); }

.page-hero p {
  margin-bottom: 0;
}

.rank-search,
.search-panel {
  display: flex;
  gap: 10px;
  width: min(100%, 420px);
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter-chip {
  border: 1px solid var(--slate-200);
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--slate-700);
  background: var(--white);
  cursor: pointer;
  font-weight: 800;
}

.filter-chip.active,
.filter-chip:hover {
  color: var(--white);
  background: var(--blue-600);
  border-color: var(--blue-600);
}

.detail-hero {
  min-height: 560px;
  padding: 34px 0 58px;
}

.detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.95), rgba(15, 23, 42, 0.76), rgba(29, 78, 216, 0.38)),
    var(--detail-image) center / cover no-repeat;
  filter: saturate(1.1);
}

.detail-hero > * {
  position: relative;
  z-index: 2;
}

.detail-crumbs,
.detail-layout {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.detail-crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #bfdbfe;
  font-weight: 800;
}

.detail-crumbs a:hover {
  color: #fed7aa;
}

.detail-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  align-items: center;
  gap: 42px;
  margin-top: 32px;
}

.detail-poster {
  overflow: hidden;
  border-radius: 26px;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, #dbeafe, #ffedd5);
  box-shadow: var(--shadow-lg);
}

.detail-copy .lead {
  margin: 18px 0;
}

.detail-meta {
  margin: 18px 0;
}

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

.detail-content {
  display: grid;
  gap: 24px;
}

.article-card,
.player-card,
.related-panel {
  border-radius: var(--radius-xl);
  padding: 28px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.article-card h2 + p {
  margin-top: 12px;
}

.video-box {
  position: relative;
  overflow: hidden;
  margin-top: 18px;
  border-radius: 22px;
  aspect-ratio: 16 / 9;
  background: var(--slate-950);
}

.video-box video {
  width: 100%;
  height: 100%;
  display: block;
  background: var(--slate-950);
}

.play-cover {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  color: var(--white);
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.28), rgba(2, 6, 23, 0.78));
  cursor: pointer;
}

.play-cover.is-hidden {
  display: none;
}

.play-icon {
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding-left: 5px;
  color: var(--white);
  background: var(--orange-500);
  box-shadow: 0 20px 45px rgba(249, 115, 22, 0.38);
  font-size: 26px;
}

.related-panel {
  position: sticky;
  top: 92px;
}

.related-list {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.related-list .movie-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
}

.related-list .poster-frame {
  height: 126px;
}

.related-list .card-body {
  padding: 12px;
}

.related-list .card-title {
  min-height: auto;
  font-size: 14px;
}

.related-list .card-body p,
.related-list .card-tags {
  display: none;
}

.article-section {
  max-width: 980px;
}

.site-footer {
  margin-top: 42px;
  color: #cbd5e1;
  background: var(--slate-950);
}

.footer-inner {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 36px;
  padding: 48px 0;
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 14px;
  color: var(--white);
}

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

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

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

.is-filtered-out {
  display: none;
}

.empty-results {
  grid-column: 1 / -1;
  border-radius: var(--radius-xl);
  padding: 40px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  text-align: center;
  color: var(--slate-600);
}

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

  .cards-six,
  .cards-five {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .related-panel {
    position: static;
  }
}

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

  .menu-toggle {
    display: block;
  }

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

  .hero-slide {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 44px;
  }

  .hero-slide::before,
  .hero-slide::after {
    height: 760px;
  }

  .hero-image-panel {
    max-width: 320px;
    margin: 0 auto;
  }

  .intro-strip,
  .page-hero {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

  .cards-four,
  .cards-five,
  .cards-six {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

@media (max-width: 640px) {
  .nav-wrap {
    height: 62px;
  }

  .brand-copy em {
    display: none;
  }

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

  .hero-slide {
    width: min(100% - 24px, var(--container));
  }

  .hero-slide::before,
  .hero-slide::after {
    inset: 62px 0 auto 0;
    height: 720px;
  }

  .hero h1,
  .page-hero h1,
  .detail-copy h1 {
    font-size: 34px;
  }

  .hero h2 {
    font-size: 28px;
  }

  .section,
  .detail-crumbs,
  .detail-layout {
    width: min(100% - 24px, var(--container));
  }

  .cards-four,
  .cards-five,
  .cards-six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .card-body {
    padding: 12px;
  }

  .category-grid,
  .category-grid.small,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .page-hero {
    width: min(100% - 24px, var(--container));
    padding: 32px 22px;
  }

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

  .rank-number,
  .rank-item .small-button {
    display: none;
  }

  .rank-cover {
    grid-row: span 1;
  }

  .detail-hero {
    padding-top: 24px;
  }

  .article-card,
  .player-card,
  .related-panel {
    padding: 20px;
  }

  .related-list .movie-card {
    grid-template-columns: 78px minmax(0, 1fr);
  }

  .related-list .poster-frame {
    height: 106px;
  }
}
