:root {
  --bg: #020617;
  --bg-soft: #0f172a;
  --bg-card: rgba(15, 23, 42, 0.82);
  --bg-card-strong: rgba(15, 23, 42, 0.96);
  --line: rgba(148, 163, 184, 0.22);
  --text: #f8fafc;
  --muted: #94a3b8;
  --muted-strong: #cbd5e1;
  --accent: #06b6d4;
  --accent-strong: #0891b2;
  --gold: #facc15;
  --danger: #f43f5e;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
  --radius: 18px;
  --radius-lg: 28px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(8, 145, 178, 0.18), transparent 34rem),
    radial-gradient(circle at 82% 0%, rgba(244, 63, 94, 0.12), transparent 32rem),
    var(--bg);
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

main {
  min-height: 70vh;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(100% - 32px, var(--max));
  height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: white;
  background: linear-gradient(135deg, var(--accent), #3b82f6 55%, #a855f7);
  box-shadow: 0 12px 28px rgba(6, 182, 212, 0.28);
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--muted-strong);
  transition: color 0.2s ease, background 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: white;
  background: rgba(6, 182, 212, 0.16);
}

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

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

.hero {
  position: relative;
  min-height: 70vh;
  overflow: hidden;
  background: #020617;
}

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

.hero-slide {
  opacity: 0;
  pointer-events: none;
  background-size: cover;
  background-position: center;
  transition: opacity 0.75s ease, transform 1.2s ease;
  transform: scale(1.03);
}

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.94) 0%, rgba(2, 6, 23, 0.76) 38%, rgba(2, 6, 23, 0.18) 70%),
    linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.18) 42%, rgba(2, 6, 23, 0.34) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 32px, var(--max));
  min-height: 70vh;
  margin: 0 auto;
  padding: 140px 0 150px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}

.hero-kicker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.hero-kicker span,
.tag-row span,
.corner-badge,
.score-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 13px;
  line-height: 1;
}

.hero-kicker span,
.tag-row span {
  padding: 8px 12px;
  color: #e0f2fe;
  background: rgba(14, 165, 233, 0.16);
  border: 1px solid rgba(125, 211, 252, 0.2);
}

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

.hero-one-line,
.detail-one-line {
  max-width: 760px;
  margin: 0 0 14px;
  color: #e2e8f0;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.55;
}

.hero-summary {
  max-width: 700px;
  margin: 0 0 28px;
  color: var(--muted-strong);
  font-size: 16px;
  line-height: 1.8;
}

.hero-actions,
.hero-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-button,
.ghost-button,
.section-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.primary-button {
  color: white;
  background: linear-gradient(135deg, var(--accent), #3b82f6);
  box-shadow: 0 16px 34px rgba(6, 182, 212, 0.3);
}

.ghost-button,
.section-more {
  border: 1px solid var(--line);
  color: var(--muted-strong);
  background: rgba(15, 23, 42, 0.74);
}

.primary-button:hover,
.ghost-button:hover,
.section-more:hover {
  transform: translateY(-2px);
}

.ghost-button:hover,
.section-more:hover {
  color: white;
  border-color: rgba(6, 182, 212, 0.45);
  background: rgba(6, 182, 212, 0.14);
}

.hero-control {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(226, 232, 240, 0.18);
  border-radius: 999px;
  color: white;
  font-size: 34px;
  line-height: 1;
  background: rgba(15, 23, 42, 0.58);
  backdrop-filter: blur(10px);
  transform: translateY(-50%);
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

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

.hero-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(226, 232, 240, 0.48);
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
  width: 30px;
  background: var(--accent);
}

.hero-strip {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 24px;
  width: min(100% - 32px, var(--max));
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  transform: translateX(-50%);
}

.hero-thumb {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(14px);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.hero-thumb:hover {
  border-color: rgba(6, 182, 212, 0.42);
  transform: translateY(-2px);
}

.hero-thumb img {
  width: 58px;
  height: 72px;
  border-radius: 10px;
  object-fit: cover;
  background: #0f172a;
}

.hero-thumb span,
.rank-card span,
.movie-card-body,
.category-card-body {
  min-width: 0;
}

.hero-thumb strong,
.rank-card strong,
.movie-card strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-thumb em,
.rank-card em,
.movie-card em {
  display: block;
  overflow: hidden;
  margin-top: 4px;
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.quick-categories,
.content-section,
.watch-section {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.quick-categories {
  padding: 30px 0 8px;
}

.quick-inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.56);
  box-shadow: var(--shadow);
}

.quick-title span,
.eyebrow {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.quick-title h2,
.section-heading h2,
.page-hero h1,
.detail-info h1,
.article-card h2 {
  margin: 0;
  letter-spacing: -0.04em;
}

.quick-title h2 {
  font-size: 24px;
}

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

.category-pill {
  position: relative;
  min-height: 88px;
  overflow: hidden;
  border-radius: 18px;
  background: #0f172a;
}

.category-pill img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.category-pill span {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  font-weight: 900;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

.category-pill:hover img {
  opacity: 0.76;
  transform: scale(1.06);
}

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

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

.section-heading h2 {
  font-size: clamp(28px, 4vw, 42px);
}

.section-heading p,
.page-hero p,
.article-card p,
.site-footer p,
.detail-one-line {
  color: var(--muted-strong);
}

.section-heading p,
.page-hero p {
  max-width: 720px;
  margin: 10px 0 0;
  line-height: 1.8;
}

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

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

.movie-card {
  min-width: 0;
}

.poster-frame {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 18px;
  background: #0f172a;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.24);
}

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

.card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.82), transparent 46%);
  opacity: 0.85;
}

.corner-badge,
.score-badge {
  position: absolute;
  z-index: 3;
  padding: 7px 9px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.corner-badge {
  left: 10px;
  top: 10px;
  color: #e0f2fe;
  background: rgba(6, 182, 212, 0.76);
}

.score-badge {
  right: 10px;
  bottom: 10px;
  color: #fef9c3;
  background: rgba(15, 23, 42, 0.78);
}

.movie-card:hover .poster-frame img {
  filter: saturate(1.1) brightness(1.06);
  transform: scale(1.06);
}

.movie-card-body {
  display: block;
  padding: 12px 2px 0;
}

.movie-card strong {
  font-size: 16px;
  transition: color 0.2s ease;
}

.movie-card:hover strong {
  color: #67e8f9;
}

.movie-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 9px;
  color: var(--muted);
  font-size: 12px;
}

.movie-meta span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

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

.rank-card {
  position: relative;
  display: grid;
  grid-template-columns: 64px 82px 1fr;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--bg-card);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.rank-card:hover {
  border-color: rgba(6, 182, 212, 0.42);
  background: rgba(15, 23, 42, 0.98);
  transform: translateY(-2px);
}

.rank-card img {
  width: 82px;
  height: 104px;
  border-radius: 12px;
  object-fit: cover;
  background: #0f172a;
}

.rank-num {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: #cffafe;
  font-size: 18px;
  font-weight: 900;
  background: rgba(6, 182, 212, 0.14);
}

.rank-card small {
  display: block;
  margin-top: 8px;
  color: #fef08a;
}

.page-hero {
  position: relative;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 136px 0 54px;
}

.compact-hero,
.category-hero {
  min-height: 380px;
  display: flex;
  align-items: flex-end;
}

.page-hero h1 {
  max-width: 850px;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.05;
}

.hero-link-row {
  margin-top: 20px;
}

.hero-link-row a {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted-strong);
  background: rgba(15, 23, 42, 0.72);
}

.hero-link-row a:hover {
  color: white;
  border-color: rgba(6, 182, 212, 0.45);
}

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

.category-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 18px;
  min-height: 178px;
  overflow: hidden;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-card:hover {
  border-color: rgba(6, 182, 212, 0.42);
  transform: translateY(-2px);
}

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

.category-card-posters img {
  width: 100%;
  height: 70px;
  border-radius: 12px;
  object-fit: cover;
  background: #0f172a;
}

.category-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.category-card-body em {
  color: var(--accent);
  font-style: normal;
  font-weight: 900;
  font-size: 13px;
}

.category-card-body strong {
  margin: 8px 0;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.category-card-body span {
  color: var(--muted-strong);
  line-height: 1.7;
}

.filter-panel {
  position: sticky;
  top: 82px;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 14px;
  align-items: end;
  margin-bottom: 28px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(2, 6, 23, 0.76);
  backdrop-filter: blur(18px);
}

.search-box {
  display: grid;
  gap: 8px;
  color: var(--muted-strong);
  font-size: 14px;
  font-weight: 800;
}

.search-box input,
.filter-selects select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 14px;
  color: white;
  outline: none;
  background: rgba(15, 23, 42, 0.86);
}

.search-box input {
  padding: 0 16px;
}

.filter-selects {
  display: grid;
  grid-template-columns: repeat(3, 150px);
  gap: 10px;
}

.filter-selects select {
  padding: 0 12px;
}

.search-box input:focus,
.filter-selects select:focus {
  border-color: rgba(6, 182, 212, 0.66);
  box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.12);
}

.empty-state {
  display: none;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted-strong);
  text-align: center;
  background: var(--bg-card);
}

.empty-state.is-visible {
  display: block;
}

.detail-hero {
  position: relative;
  min-height: 720px;
  background-size: cover;
  background-position: center;
}

.detail-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.96) 0%, rgba(2, 6, 23, 0.72) 48%, rgba(2, 6, 23, 0.4) 100%),
    linear-gradient(0deg, var(--bg), rgba(2, 6, 23, 0.12));
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 106px 0 66px;
}

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

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

.detail-main {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 42px;
  align-items: end;
}

.detail-poster {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 26px;
  background: #0f172a;
  box-shadow: var(--shadow);
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.detail-info h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.05;
}

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

.detail-meta-grid span {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--muted-strong);
  background: rgba(15, 23, 42, 0.58);
}

.detail-meta-grid strong {
  color: var(--muted);
  font-size: 12px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.watch-section {
  padding: 40px 0 0;
}

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

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

.play-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  gap: 12px;
  border: 0;
  color: white;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.76), rgba(2, 6, 23, 0.22));
}

.player-shell.is-playing .play-overlay {
  display: none;
}

.play-icon {
  position: relative;
  width: 84px;
  height: 84px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #3b82f6);
  box-shadow: 0 18px 40px rgba(6, 182, 212, 0.32);
}

.play-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 53%;
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 24px solid white;
  transform: translate(-50%, -50%);
}

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

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

.article-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
}

.article-card h2 {
  margin-bottom: 16px;
  font-size: 26px;
}

.article-card p {
  margin: 0;
  font-size: 16px;
  line-height: 2;
}

.site-footer {
  margin-top: 36px;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(2, 6, 23, 0.72);
}

.footer-inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 34px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  font-size: 20px;
}

.site-footer p {
  max-width: 620px;
  margin: 10px 0 0;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted-strong);
}

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

[hidden] {
  display: none !important;
}

@media (max-width: 1100px) {
  .movie-grid,
  .movie-grid.wide-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

  .hero-thumb:nth-child(n + 4) {
    display: none;
  }

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

@media (max-width: 820px) {
  .menu-toggle {
    display: block;
  }

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

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

  .site-nav a {
    border-radius: 12px;
  }

  .hero-content {
    padding: 116px 0 154px;
  }

  .hero-control {
    display: none;
  }

  .hero-dots {
    bottom: 96px;
  }

  .hero-strip {
    grid-template-columns: 1fr;
    bottom: 18px;
  }

  .hero-thumb:nth-child(n + 2) {
    display: none;
  }

  .quick-inner,
  .filter-panel,
  .detail-main,
  .detail-content,
  .category-card {
    grid-template-columns: 1fr;
  }

  .category-pills,
  .category-grid,
  .rank-grid,
  .large-rank-grid {
    grid-template-columns: 1fr;
  }

  .filter-selects {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 560px) {
  .nav-shell,
  .quick-categories,
  .content-section,
  .watch-section,
  .page-hero,
  .detail-hero-inner,
  .footer-inner {
    width: min(100% - 24px, var(--max));
  }

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

  .hero {
    min-height: 760px;
  }

  .hero-content {
    min-height: 760px;
  }

  .hero h1,
  .detail-info h1,
  .page-hero h1 {
    letter-spacing: -0.05em;
  }

  .hero-summary {
    display: none;
  }

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

  .rank-card img {
    width: 72px;
    height: 92px;
  }

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

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