:root {
  --orange: #f97316;
  --red: #ef4444;
  --pink: #ec4899;
  --yellow: #fde047;
  --blue: #0ea5e9;
  --green: #22c55e;
  --purple: #a855f7;
  --ink: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --soft: #fff7ed;
  --paper: #ffffff;
  --shadow: 0 18px 45px rgba(17, 24, 39, 0.14);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f8fafc;
  font-family: 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;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: #ffffff;
  background: linear-gradient(90deg, var(--orange), var(--red), var(--pink));
  box-shadow: 0 14px 35px rgba(239, 68, 68, 0.28);
}

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

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

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

.brand-mark {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f97316;
  background: #ffffff;
  border-radius: 999px;
  box-shadow: inset 0 -4px 10px rgba(249, 115, 22, 0.22);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.brand:hover .brand-mark,
.footer-brand:hover .brand-mark {
  transform: rotate(12deg) scale(1.05);
}

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

.nav-link {
  padding: 9px 13px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #fff7c2;
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

.header-search,
.mobile-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-search input,
.mobile-search input,
.filter-panel input {
  width: 230px;
  min-height: 40px;
  border: 0;
  outline: 0;
  border-radius: 999px;
  padding: 0 16px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.header-search input::placeholder,
.mobile-search input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.header-search button,
.mobile-search button {
  min-height: 40px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  color: #b91c1c;
  background: #fef3c7;
  cursor: pointer;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  cursor: pointer;
}

.mobile-nav {
  display: none;
  padding: 0 22px 18px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

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

.hero-carousel {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: #0f172a;
}

.hero-slides {
  position: relative;
  min-height: 680px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  background-image: radial-gradient(circle at 18% 20%, rgba(253, 224, 71, 0.30), transparent 28%), linear-gradient(120deg, rgba(249, 115, 22, 0.88), rgba(225, 29, 72, 0.86), rgba(157, 23, 77, 0.88)), var(--hero-image);
  background-size: cover;
  background-position: center;
  transition: opacity 0.65s ease;
}

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

.hero-shade,
.detail-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.70), rgba(15, 23, 42, 0.20)), linear-gradient(0deg, rgba(15, 23, 42, 0.72), transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100% - 44px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 46px;
  align-items: center;
  padding: 78px 0 140px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 7px 13px;
  border-radius: 999px;
  color: #fff7ed;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
  font-weight: 800;
}

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

.hero-copy p,
.page-hero p,
.detail-one-line {
  max-width: 740px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
}

.hero-tags,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.hero-tags {
  margin-top: 24px;
}

.hero-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  font-size: 13px;
  color: #fff7ed;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 19px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: #9f1239;
  background: linear-gradient(135deg, #fef08a, #ffffff);
  box-shadow: 0 15px 35px rgba(254, 240, 138, 0.28);
}

.btn-ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.hero-poster,
.detail-poster,
.poster-shell {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fb923c, #ef4444 45%, #db2777);
}

.hero-poster {
  height: 500px;
  border-radius: 32px;
  box-shadow: 0 36px 90px rgba(15, 23, 42, 0.42);
  transform: rotate(2deg);
}

.hero-poster::before,
.poster-shell::before,
.detail-poster::before {
  content: attr(data-title);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  color: rgba(255, 255, 255, 0.36);
  font-weight: 900;
  text-align: center;
  letter-spacing: 0.05em;
}

.hero-poster img,
.poster-shell img,
.detail-poster img {
  position: relative;
  z-index: 1;
}

.hero-poster span {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.58);
  backdrop-filter: blur(12px);
  font-weight: 800;
}

.hero-controls {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 116px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-arrow,
.hero-dot {
  border: 0;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.hero-arrow {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  font-size: 30px;
  line-height: 1;
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
  width: 32px;
  background: #fef08a;
}

.hero-strip {
  position: relative;
  z-index: 4;
  width: min(1240px, calc(100% - 44px));
  margin: -92px auto 0;
  padding-bottom: 34px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.stats-band,
.content-section,
.footer-grid {
  width: min(1240px, calc(100% - 44px));
  margin-left: auto;
  margin-right: auto;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 34px 0 8px;
}

.stat-card {
  min-height: 118px;
  padding: 22px;
  border-radius: 24px;
  color: #ffffff;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}

.stat-card:hover {
  transform: translateY(-5px) scale(1.02);
}

.stat-card strong {
  display: block;
  font-size: 30px;
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.84);
}

.stat-orange {
  background: linear-gradient(135deg, #fb923c, #ef4444);
}

.stat-blue {
  background: linear-gradient(135deg, #38bdf8, #2563eb);
}

.stat-green {
  background: linear-gradient(135deg, #34d399, #059669);
}

.stat-purple {
  background: linear-gradient(135deg, #a78bfa, #ec4899);
}

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

.section-soft {
  width: 100%;
  max-width: none;
  padding-left: max(22px, calc((100vw - 1240px) / 2));
  padding-right: max(22px, calc((100vw - 1240px) / 2));
  background: linear-gradient(180deg, #fff7ed, #ffffff);
}

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

.section-heading h2,
.ranking-panel h2,
.article-card h2,
.detail-side h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

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

.section-more,
.wide-link {
  color: #f97316;
  font-weight: 900;
}

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

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

.movie-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.10);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 52px rgba(15, 23, 42, 0.16);
}

.poster-shell {
  display: block;
  height: 315px;
  border-radius: 0;
}

.movie-card-compact .poster-shell {
  height: 180px;
}

.poster-badge,
.poster-year {
  position: absolute;
  z-index: 2;
  top: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.62);
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.poster-badge {
  left: 12px;
}

.poster-year {
  right: 12px;
}

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

.movie-title {
  display: block;
  min-height: 30px;
  color: #111827;
  font-weight: 900;
  font-size: 18px;
  line-height: 1.35;
}

.movie-title:hover {
  color: #ef4444;
}

.movie-desc {
  min-height: 48px;
  margin: 9px 0 0;
  color: #4b5563;
  font-size: 14px;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  color: #6b7280;
  font-size: 13px;
}

.movie-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  background: #f3f4f6;
}

.tag-row {
  margin-top: 12px;
}

.tag-row span {
  color: #c2410c;
  background: #ffedd5;
  box-shadow: none;
}

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

.category-tile {
  position: relative;
  overflow: hidden;
  min-height: 175px;
  padding: 22px;
  border-radius: 24px;
  color: #ffffff;
  background: linear-gradient(135deg, #fb923c, #ef4444 55%, #ec4899);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 58px rgba(239, 68, 68, 0.28);
}

.tile-glow {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 130px;
  height: 130px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  transition: transform 0.45s ease;
}

.category-tile:hover .tile-glow {
  transform: scale(1.7);
}

.category-tile strong,
.category-tile em,
.category-tile small {
  position: relative;
  z-index: 1;
  display: block;
}

.category-tile strong {
  font-size: 22px;
  line-height: 1.15;
}

.category-tile em {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.86);
  font-style: normal;
}

.category-tile small {
  margin-top: 18px;
  color: #fff7ed;
}

.two-column-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 30px;
  align-items: start;
}

.ranking-panel,
.article-card,
.detail-side,
.filter-panel,
.category-overview-card {
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.10);
}

.ranking-panel {
  padding: 24px;
}

.rank-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.rank-row,
.ranking-line {
  display: grid;
  align-items: center;
  gap: 10px;
  border-radius: 16px;
  color: #111827;
  background: #f8fafc;
  transition: background 0.2s ease, transform 0.2s ease;
}

.rank-row {
  grid-template-columns: 46px minmax(0, 1fr);
  padding: 12px;
}

.rank-row:hover,
.ranking-line:hover {
  background: #fff7ed;
  transform: translateX(3px);
}

.rank-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, #f97316, #ef4444);
  font-weight: 900;
}

.rank-title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 900;
}

.rank-meta {
  grid-column: 2;
  color: #6b7280;
  font-size: 13px;
}

.wide-link {
  display: block;
  margin-top: 18px;
  padding: 14px;
  border-radius: 16px;
  text-align: center;
  background: #fff7ed;
}

.site-footer {
  color: #d1d5db;
  background: linear-gradient(135deg, #111827, #1f2937 55%, #111827);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 30px;
  padding: 54px 0;
}

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

.site-footer p {
  color: #9ca3af;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 18px;
}

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

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

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

.page-hero {
  color: #ffffff;
  background: radial-gradient(circle at 18% 20%, rgba(253, 224, 71, 0.28), transparent 26%), linear-gradient(120deg, #f97316, #ef4444, #ec4899);
}

.page-hero > div {
  width: min(1240px, calc(100% - 44px));
  margin: 0 auto;
  padding: 88px 0;
}

.slim-hero > div {
  padding: 72px 0;
}

.filter-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 24px;
  padding: 18px;
}

.filter-panel input {
  width: min(520px, 100%);
  color: #111827;
  background: #f3f4f6;
  box-shadow: inset 0 0 0 1px #e5e7eb;
}

.filter-panel input::placeholder {
  color: #9ca3af;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-chip {
  min-height: 38px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  color: #c2410c;
  background: #ffedd5;
  cursor: pointer;
  font-weight: 800;
}

.filter-chip.is-active,
.filter-chip:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #f97316, #ef4444);
}

.overview-list {
  display: grid;
  gap: 24px;
}

.category-overview-card {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  padding: 24px;
}

.overview-copy h2 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.1;
}

.overview-copy p {
  margin: 0 0 20px;
  color: var(--muted);
}

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

.ranking-line {
  grid-template-columns: 48px minmax(0, 1fr);
  padding: 12px;
}

.ranking-line span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, #f97316, #ef4444);
  font-weight: 900;
}

.ranking-line strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ranking-line em {
  grid-column: 2;
  color: #6b7280;
  font-size: 13px;
  font-style: normal;
}

.sticky-panel {
  position: sticky;
  top: 92px;
  max-height: calc(100vh - 112px);
  overflow: auto;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background-image: radial-gradient(circle at 18% 18%, rgba(253, 224, 71, 0.22), transparent 27%), linear-gradient(120deg, rgba(249, 115, 22, 0.88), rgba(225, 29, 72, 0.86), rgba(157, 23, 77, 0.90)), var(--detail-image);
  background-size: cover;
  background-position: center;
}

.detail-wrap {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100% - 44px));
  margin: 0 auto;
  padding: 68px 0;
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.detail-poster {
  height: 485px;
  border-radius: 30px;
  box-shadow: 0 32px 84px rgba(15, 23, 42, 0.42);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.82);
}

.breadcrumb a:hover {
  color: #fef08a;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.detail-meta span {
  padding: 7px 11px;
  border-radius: 999px;
  color: #fff7ed;
  background: rgba(255, 255, 255, 0.16);
}

.player-section {
  background: #111827;
  padding: 44px 22px;
}

.video-box {
  position: relative;
  overflow: hidden;
  width: min(1120px, 100%);
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  border-radius: 30px;
  background: #020617;
  box-shadow: 0 32px 80px rgba(2, 6, 23, 0.45);
}

.video-box video {
  width: 100%;
  height: 100%;
  background: #020617;
}

.player-cover {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  color: #ffffff;
  background: radial-gradient(circle at center, rgba(249, 115, 22, 0.28), rgba(15, 23, 42, 0.72));
  cursor: pointer;
}

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

.play-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  border-radius: 999px;
  color: #ef4444;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(255, 255, 255, 0.24);
  font-size: 35px;
}

.player-cover strong {
  font-size: 22px;
}

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

.article-card,
.detail-side {
  padding: 28px;
}

.article-card p {
  color: #374151;
  font-size: 17px;
}

.detail-side dl {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 10px 14px;
  margin: 20px 0 0;
}

.detail-side dt {
  color: #6b7280;
  font-weight: 800;
}

.detail-side dd {
  margin: 0;
}

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

@media (max-width: 1100px) {
  .hero-content,
  .two-column-section,
  .ranking-layout,
  .detail-content {
    grid-template-columns: 1fr;
  }

  .hero-poster {
    display: none;
  }

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

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

  .sticky-panel {
    position: static;
    max-height: none;
  }
}

@media (max-width: 820px) {
  .desktop-nav,
  .header-search {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-wrap {
    height: 62px;
  }

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

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

  .hero-content {
    padding-top: 56px;
    padding-bottom: 130px;
  }

  .hero-strip,
  .movie-grid,
  .compact-grid,
  .category-grid,
  .overview-samples,
  .stats-band,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-overview-card,
  .detail-wrap {
    grid-template-columns: 1fr;
  }

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

  .filter-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .poster-shell {
    height: 260px;
  }
}

@media (max-width: 560px) {
  .hero-strip,
  .movie-grid,
  .compact-grid,
  .category-grid,
  .overview-samples,
  .stats-band,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-controls {
    bottom: 78px;
  }

  .hero-strip {
    margin-top: -55px;
  }

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

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

  .content-section,
  .page-hero > div,
  .detail-wrap,
  .stats-band,
  .footer-grid {
    width: min(100% - 30px, 1240px);
  }

  .section-soft {
    padding-left: 15px;
    padding-right: 15px;
  }

  .poster-shell {
    height: 340px;
  }
}
