:root {
  --fog-50: #f0f4f8;
  --fog-100: #d9e2ec;
  --fog-200: #bcccdc;
  --fog-300: #9fb3c8;
  --fog-400: #829ab1;
  --fog-600: #486581;
  --fog-700: #334e68;
  --fog-800: #243b53;
  --fog-900: #102a43;
  --mist-50: #f8f9fa;
  --mist-500: #6c757d;
  --mist-600: #495057;
  --mist-700: #343a40;
  --cyan-100: #bef8fd;
  --cyan-500: #2cb1bc;
  --cyan-600: #14919b;
  --amber-100: #fcefc7;
  --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.06), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
  --shadow-strong: 0 20px 25px -5px rgba(0, 0, 0, 0.10), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--mist-50);
  color: var(--mist-700);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans SC", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(188, 204, 220, 0.75);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--fog-900);
  font-size: 20px;
  font-weight: 800;
  white-space: nowrap;
}

.logo-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--fog-900), var(--cyan-500));
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: var(--fog-700);
  font-weight: 600;
}

.site-nav a {
  position: relative;
  padding: 6px 0;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  content: "";
  background: var(--cyan-500);
  transition: width 0.25s ease;
}

.site-nav a:hover::after {
  width: 100%;
}

.nav-search {
  display: flex;
  overflow: hidden;
  border: 1px solid var(--fog-200);
  border-radius: 999px;
  background: #fff;
}

.nav-search input {
  width: 220px;
  border: 0;
  outline: 0;
  padding: 10px 14px;
  color: var(--fog-800);
}

.nav-search button {
  border: 0;
  padding: 10px 16px;
  background: var(--fog-800);
  color: #fff;
  font-weight: 700;
}

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--fog-200);
  border-radius: 12px;
  background: #fff;
}

.mobile-menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--fog-800);
}

.hero-slider {
  position: relative;
  height: 70vh;
  min-height: 560px;
  overflow: hidden;
  background: var(--fog-900);
}

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

.hero-slide {
  opacity: 0;
  pointer-events: none;
  background-image: linear-gradient(90deg, rgba(16, 42, 67, 0.98), rgba(16, 42, 67, 0.62), rgba(16, 42, 67, 0.30)), var(--hero-image);
  background-position: center;
  background-size: cover;
  transition: opacity 0.9s ease;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 24%, rgba(44, 177, 188, 0.24), transparent 30%), linear-gradient(0deg, var(--fog-900), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding-bottom: clamp(72px, 12vh, 128px);
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan-500);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-content h1 {
  max-width: 760px;
  margin: 14px 0 18px;
  font-size: clamp(42px, 7vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero-content p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 2.1vw, 22px);
}

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

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

.hero-tags span,
.detail-tags span,
.tag-row span {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.tag-row span {
  background: var(--fog-50);
  color: var(--fog-700);
}

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

.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.primary-button {
  background: var(--cyan-500);
  color: #fff;
  box-shadow: 0 14px 32px rgba(44, 177, 188, 0.28);
}

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

.ghost-button {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 36px;
  line-height: 1;
  backdrop-filter: blur(12px);
  transform: translateY(-50%);
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

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

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

.hero-dot.is-active {
  width: 34px;
  background: #fff;
}

.stats-strip {
  width: min(1180px, calc(100% - 32px));
  margin: -42px auto 0;
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-medium);
}

.stats-strip div {
  padding: 26px 20px;
  text-align: center;
  border-right: 1px solid var(--fog-100);
}

.stats-strip div:last-child {
  border-right: 0;
}

.stats-strip strong {
  display: block;
  color: var(--fog-900);
  font-size: 34px;
  line-height: 1;
}

.stats-strip span {
  color: var(--mist-500);
  font-weight: 700;
}

.page-main,
.content-section,
.category-showcase,
.split-section,
.ranking-table-section,
.detail-body-grid,
.player-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.content-section,
.category-showcase,
.split-section,
.ranking-table-section,
.detail-body-grid,
.player-section {
  padding: 64px 0 0;
}

.inner-section {
  width: 100%;
  padding: 0;
}

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

.compact-title {
  display: block;
}

.section-title h2,
.page-hero h1,
.detail-info h1 {
  margin: 8px 0 0;
  color: var(--fog-900);
  line-height: 1.08;
}

.section-title h2 {
  font-size: clamp(26px, 3.3vw, 38px);
}

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

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

.movie-card-link {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.movie-card-link:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

.cover-frame {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, var(--fog-800), var(--fog-600));
}

.cover-frame::before {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.18), transparent 28%);
}

.cover-frame img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.movie-card-link:hover .cover-frame img {
  transform: scale(1.08);
}

.quality-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 800;
}

.play-hover {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0);
  color: #fff;
  font-size: 44px;
  opacity: 0;
  transition: opacity 0.25s ease, background 0.25s ease;
}

.movie-card-link:hover .play-hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.34);
}

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

.movie-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--mist-500);
  font-size: 12px;
  font-weight: 700;
}

.movie-card-body h3 {
  display: -webkit-box;
  min-height: 54px;
  margin: 10px 0 8px;
  overflow: hidden;
  color: var(--fog-900);
  font-size: 18px;
  line-height: 1.48;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

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

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

.ranking-panel,
.filter-panel,
.search-panel,
.story-card,
.ranking-table {
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.ranking-panel {
  position: sticky;
  top: 96px;
  padding: 24px;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 2px 12px;
  align-items: center;
  border-radius: 14px;
  padding: 10px;
  transition: background 0.2s ease;
}

.rank-item:hover {
  background: var(--fog-50);
}

.rank-number {
  grid-row: span 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--fog-900);
  color: #fff;
  font-weight: 900;
}

.rank-title {
  color: var(--fog-900);
  font-weight: 800;
}

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

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--cyan-600);
  font-weight: 800;
}

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

.category-tile,
.category-overview-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(135deg, #fff, var(--fog-50));
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile {
  min-height: 130px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 22px;
}

.category-tile:hover,
.category-overview-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}

.category-tile span {
  color: var(--fog-900);
  font-size: 24px;
  font-weight: 900;
}

.category-tile strong {
  color: var(--cyan-600);
  font-size: 34px;
}

.page-main {
  padding: 46px 0 72px;
}

.page-hero {
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--fog-900), var(--fog-700));
  color: #fff;
  padding: clamp(34px, 7vw, 72px);
  box-shadow: var(--shadow-medium);
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(36px, 6vw, 66px);
}

.page-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.page-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.page-hero-meta span {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  padding: 8px 12px;
  color: #fff;
  font-weight: 700;
}

.category-overview-card {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.category-overview-card h2 {
  margin: 8px 0 10px;
  color: var(--fog-900);
  font-size: 28px;
}

.category-overview-card p {
  color: var(--mist-600);
}

.category-overview-card strong {
  margin-top: auto;
  color: var(--cyan-600);
  font-size: 30px;
}

.category-samples {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.category-samples span {
  border-radius: 999px;
  background: var(--fog-50);
  color: var(--fog-700);
  padding: 5px 8px;
  font-size: 12px;
  font-weight: 700;
}

.filter-panel,
.search-panel {
  margin-top: 28px;
  padding: 24px;
}

.filter-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 16px;
}

.filter-grid label {
  display: grid;
  gap: 8px;
  color: var(--fog-700);
  font-weight: 800;
}

.filter-grid input,
.filter-grid select,
.big-search input {
  width: 100%;
  border: 1px solid var(--fog-200);
  border-radius: 14px;
  outline: 0;
  background: #fff;
  color: var(--fog-900);
  padding: 12px 14px;
}

.filter-grid input:focus,
.filter-grid select:focus,
.big-search input:focus {
  border-color: var(--cyan-500);
  box-shadow: 0 0 0 4px rgba(44, 177, 188, 0.12);
}

.filter-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  color: var(--mist-600);
  font-weight: 700;
}

.filter-status button,
.big-search button {
  border: 0;
  border-radius: 999px;
  background: var(--fog-800);
  color: #fff;
  padding: 11px 18px;
  font-weight: 800;
}

.big-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.search-hint {
  margin: 12px 0 0;
  color: var(--mist-500);
}

.ranking-table {
  overflow: hidden;
}

.ranking-row {
  display: grid;
  grid-template-columns: 72px minmax(180px, 1.4fr) 120px 90px minmax(180px, 1fr);
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border-bottom: 1px solid var(--fog-100);
}

.ranking-row:hover {
  background: var(--fog-50);
}

.ranking-row:last-child {
  border-bottom: 0;
}

.ranking-index {
  color: var(--cyan-600);
  font-weight: 900;
}

.ranking-name {
  color: var(--fog-900);
  font-weight: 800;
}

.detail-main {
  padding-bottom: 72px;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background-image: linear-gradient(90deg, rgba(16, 42, 67, 0.98), rgba(16, 42, 67, 0.70), rgba(16, 42, 67, 0.42)), var(--detail-bg);
  background-position: center;
  background-size: cover;
}

.detail-backdrop {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, var(--fog-900), transparent 60%);
}

.detail-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 52px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.breadcrumbs a:hover {
  color: #fff;
}

.detail-grid {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: clamp(28px, 5vw, 52px);
  align-items: end;
}

.detail-poster {
  border-radius: 24px;
  box-shadow: var(--shadow-strong);
}

.detail-info h1 {
  color: #fff;
  font-size: clamp(40px, 7vw, 76px);
}

.detail-one-line {
  max-width: 820px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
}

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

.detail-meta span {
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.32);
  padding: 8px 12px;
  color: #fff;
  font-weight: 800;
}

.detail-tags {
  margin: 18px 0 26px;
}

.player-section {
  padding-top: 42px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: #000;
  box-shadow: var(--shadow-strong);
}

.movie-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.player-start {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  gap: 12px;
  border: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.30));
  color: #fff;
  font-size: 18px;
}

.player-start span {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--cyan-500);
  color: #fff;
  font-size: 32px;
  box-shadow: 0 18px 42px rgba(44, 177, 188, 0.38);
}

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

.player-status {
  position: absolute;
  left: 18px;
  bottom: 14px;
  z-index: 3;
  margin: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.56);
  color: #fff;
  padding: 6px 12px;
  font-size: 12px;
}

.detail-body-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 24px;
}

.story-card {
  padding: 28px;
}

.story-card p {
  margin: 0;
  color: var(--mist-700);
  font-size: 17px;
  line-height: 1.9;
}

.accent-card {
  background: linear-gradient(135deg, #fff, #e0fcff);
}

.site-footer {
  margin-top: 72px;
  background: var(--fog-900);
  color: rgba(255, 255, 255, 0.72);
}

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

.footer-logo {
  color: #fff;
}

.site-footer h3 {
  margin: 0 0 12px;
  color: #fff;
}

.site-footer a:not(.site-logo) {
  display: block;
  margin: 8px 0;
}

.site-footer a:hover {
  color: #fff;
}

.copyright {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: var(--fog-900);
  color: #fff;
  box-shadow: var(--shadow-medium);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  transform: translateY(-3px);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.movie-card,
.category-overview-card,
.ranking-panel,
.story-card {
  animation: fadeIn 0.45s ease both;
}

@media (max-width: 1024px) {
  .nav-shell {
    grid-template-columns: auto auto;
  }

  .mobile-menu-button {
    display: block;
    justify-self: end;
  }

  .site-nav,
  .nav-search {
    grid-column: 1 / -1;
    display: none;
  }

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

  .site-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .nav-search input {
    width: 100%;
  }

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

  .split-section,
  .detail-body-grid {
    grid-template-columns: 1fr;
  }

  .ranking-panel {
    position: static;
  }

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

  .ranking-row {
    grid-template-columns: 60px minmax(0, 1fr) 90px;
  }

  .ranking-row span:nth-child(4),
  .ranking-row span:nth-child(5) {
    display: none;
  }
}

@media (max-width: 760px) {
  .hero-slider {
    height: 76vh;
    min-height: 520px;
  }

  .hero-arrow {
    display: none;
  }

  .hero-content {
    padding-bottom: 86px;
  }

  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-strip div:nth-child(2) {
    border-right: 0;
  }

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

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

  .detail-poster {
    width: min(260px, 72vw);
  }

  .filter-grid,
  .big-search {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .nav-shell,
  .hero-content,
  .page-main,
  .content-section,
  .category-showcase,
  .split-section,
  .ranking-table-section,
  .detail-body-grid,
  .player-section,
  .detail-content,
  .footer-grid,
  .copyright {
    width: min(100% - 22px, 1180px);
  }

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

  .stats-strip {
    width: min(100% - 22px, 1180px);
  }

  .section-title {
    display: block;
  }

  .page-hero,
  .filter-panel,
  .search-panel,
  .story-card {
    border-radius: 18px;
    padding: 22px;
  }

  .player-status {
    display: none;
  }
}
