:root {
  color-scheme: dark;
  --bg: #07111f;
  --bg-soft: #0c1728;
  --panel: rgba(12, 23, 40, 0.84);
  --panel-solid: #111d2f;
  --text: #f7fbff;
  --muted: #9fb5c9;
  --line: rgba(255, 255, 255, 0.12);
  --cyan: #22d3ee;
  --blue: #2563eb;
  --teal: #14b8a6;
  --orange: #f59e0b;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 0%, rgba(34, 211, 238, 0.18), transparent 32rem),
    radial-gradient(circle at 85% 5%, rgba(37, 99, 235, 0.22), transparent 34rem),
    linear-gradient(180deg, #07111f 0%, #0b1323 44%, #07111f 100%);
  color: var(--text);
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(8, 145, 178, 0.96), rgba(37, 99, 235, 0.96), rgba(20, 184, 166, 0.96));
  color: #ffffff;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.brand-name {
  font-size: 1.28rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1 1 auto;
  min-width: 0;
}

.desktop-nav a {
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  transition: color 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.desktop-nav a:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.header-search {
  display: flex;
  width: min(320px, 30vw);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.header-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 10px 14px;
  color: #ffffff;
  background: transparent;
}

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

.header-search button {
  border: 0;
  padding: 0 16px;
  color: #075985;
  background: #ffffff;
  font-weight: 800;
  cursor: pointer;
}

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

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: #ffffff;
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 18px;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.mobile-nav a {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.13);
}

.hero-wrap {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  isolation: isolate;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.7s ease, transform 0.7s ease;
  pointer-events: none;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.06);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.94) 0%, rgba(7, 17, 31, 0.76) 45%, rgba(7, 17, 31, 0.36) 100%),
    radial-gradient(circle at 62% 40%, rgba(34, 211, 238, 0.3), transparent 26rem),
    linear-gradient(180deg, rgba(7, 17, 31, 0.25) 0%, rgba(7, 17, 31, 1) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  min-height: 590px;
  margin: 0 auto;
  padding: 82px 0 150px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 360px;
  align-items: center;
  gap: 48px;
}

.hero-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #a5f3fc;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 18px 0 18px;
  font-size: clamp(2.8rem, 8vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.hero-copy p {
  width: min(680px, 100%);
  margin: 0 0 24px;
  color: #d9edf8;
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.8;
}

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

.hero-tags span,
.tag-row span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 6px 10px;
  color: #e0faff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
}

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

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

.primary-button {
  color: #075985;
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(34, 211, 238, 0.28);
}

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

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

.hero-poster {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
  transition: transform 0.25s ease;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.35), rgba(37, 99, 235, 0.35));
}

.hero-poster:hover {
  transform: rotate(0deg) translateY(-6px);
}

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

.hero-poster span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px);
  font-weight: 800;
}

.hero-controls {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 34px;
  width: min(1180px, calc(100% - 32px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-controls button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

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

.hero-dots button {
  width: 34px;
  height: 8px;
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 255, 255, 0.32);
}

.hero-dots button.active {
  background: #67e8f9;
}

.hero-search-panel {
  position: absolute;
  z-index: 6;
  left: 50%;
  bottom: 96px;
  width: min(1180px, calc(100% - 32px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: rgba(9, 18, 32, 0.68);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
}

.hero-search-panel form {
  display: flex;
  flex: 1 1 430px;
  min-width: 260px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.hero-search-panel input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 15px 18px;
  color: #ffffff;
  background: transparent;
}

.hero-search-panel button {
  border: 0;
  padding: 0 24px;
  color: #075985;
  background: #ffffff;
  font-weight: 900;
  cursor: pointer;
}

.hero-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-categories a {
  border-radius: 999px;
  padding: 10px 13px;
  color: #dffbff;
  background: rgba(255, 255, 255, 0.1);
}

.quick-stats,
.content-section,
.page-main,
.movie-detail-main {
  width: min(1180px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.quick-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: -8px;
  margin-bottom: 48px;
  position: relative;
  z-index: 7;
}

.quick-stats a,
.category-tile,
.category-overview-card,
.story-panel,
.info-panel,
.rank-panel,
.filter-panel {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(12, 23, 40, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.quick-stats a {
  padding: 22px;
}

.quick-stats strong,
.quick-stats span {
  display: block;
}

.quick-stats strong {
  margin-bottom: 7px;
  font-size: 1.18rem;
}

.quick-stats span {
  color: var(--muted);
}

.content-section {
  margin-top: 54px;
  margin-bottom: 54px;
}

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

.section-heading h2,
.rank-heading h2,
.story-panel h2,
.info-panel h2 {
  margin: 8px 0 0;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  letter-spacing: -0.03em;
}

.section-more {
  min-height: 42px;
  border: 1px solid var(--line);
  color: #dffbff;
  background: rgba(255, 255, 255, 0.08);
}

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

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

.movie-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(17, 29, 47, 0.78);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.25);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 211, 238, 0.45);
  box-shadow: 0 18px 44px rgba(34, 211, 238, 0.12);
}

.movie-poster {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.24), rgba(37, 99, 235, 0.22));
}

.movie-poster img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  transition: transform 0.32s ease, opacity 0.2s ease;
}

.movie-card:hover .movie-poster img {
  transform: scale(1.06);
}

.poster-badge,
.poster-play {
  position: absolute;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(12px);
  font-weight: 800;
}

.poster-badge {
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  font-size: 0.78rem;
}

.poster-play {
  right: 12px;
  bottom: 12px;
  padding: 8px 12px;
  font-size: 0.85rem;
}

.movie-info {
  padding: 16px;
}

.movie-info h3 {
  margin: 0 0 8px;
  font-size: 1.04rem;
  line-height: 1.35;
}

.movie-info p {
  min-height: 3.1em;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 11px;
  color: #b7d0e7;
  font-size: 0.82rem;
}

.movie-meta span::after {
  content: "·";
  margin-left: 6px;
  color: rgba(255, 255, 255, 0.28);
}

.movie-meta span:last-child::after {
  content: "";
  margin: 0;
}

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

.category-grid,
.category-overview-grid {
  display: grid;
  gap: 16px;
}

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

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

.category-tile,
.category-overview-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 132px;
  padding: 22px;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.category-tile:hover,
.category-overview-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 211, 238, 0.45);
}

.category-tile strong,
.category-overview-card span {
  font-size: 1.2rem;
  font-weight: 900;
}

.category-tile span,
.category-overview-card strong,
.category-overview-card em {
  color: var(--muted);
  font-style: normal;
  line-height: 1.6;
}

.rank-panel {
  padding: 24px;
}

.rank-panel ol {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.rank-item a {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 4px 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.rank-item:last-child a {
  border-bottom: 0;
}

.rank-num {
  grid-row: span 2;
  width: 38px;
  height: 38px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  color: #083344;
  background: linear-gradient(135deg, #67e8f9, #ffffff);
  font-weight: 950;
}

.rank-title {
  font-weight: 850;
}

.rank-meta {
  color: var(--muted);
  font-size: 0.86rem;
}

.page-main,
.movie-detail-main {
  padding-top: 34px;
  padding-bottom: 70px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: clamp(36px, 7vw, 76px);
  background:
    radial-gradient(circle at 75% 20%, rgba(34, 211, 238, 0.22), transparent 24rem),
    linear-gradient(135deg, rgba(8, 145, 178, 0.48), rgba(37, 99, 235, 0.3), rgba(12, 23, 40, 0.86));
  box-shadow: var(--shadow);
}

.page-hero h1 {
  margin: 14px 0 14px;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: #d7edf7;
  font-size: 1.08rem;
  line-height: 1.8;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: #c8e7f0;
  font-size: 0.92rem;
}

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

.filter-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px 190px;
  gap: 12px;
  margin: 28px 0 18px;
  padding: 16px;
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  outline: 0;
  padding: 13px 14px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.filter-panel input::placeholder {
  color: #92a9bb;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--shadow);
  background: #0d1a2c;
}

.detail-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0.28;
}

.detail-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(24px) saturate(1.15);
  transform: scale(1.08);
}

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 17, 31, 0.96), rgba(7, 17, 31, 0.74));
}

.detail-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding: clamp(26px, 5vw, 54px);
}

.detail-cover {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.25), rgba(37, 99, 235, 0.2));
}

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

.detail-cover span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(10px);
  font-weight: 850;
}

.detail-copy h1 {
  margin: 18px 0 14px;
  font-size: clamp(2.1rem, 5vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.one-line {
  max-width: 820px;
  margin: 0 0 18px;
  color: #d9edf8;
  font-size: 1.15rem;
  line-height: 1.8;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}

.detail-meta span {
  border-radius: 999px;
  padding: 8px 12px;
  color: #e5fbff;
  background: rgba(255, 255, 255, 0.1);
}

.player-section {
  margin: 32px 0;
}

.player-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #020617;
  box-shadow: var(--shadow);
}

.player-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
  cursor: pointer;
}

.play-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  border: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  color: #ffffff;
  background:
    radial-gradient(circle at center, rgba(34, 211, 238, 0.22), transparent 20rem),
    rgba(0, 0, 0, 0.42);
  cursor: pointer;
}

.play-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.play-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding-left: 5px;
  color: #075985;
  background: #ffffff;
  font-size: 2rem;
  box-shadow: 0 18px 42px rgba(34, 211, 238, 0.35);
}

.play-overlay strong {
  font-size: 1.2rem;
}

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

.story-panel,
.info-panel {
  padding: 24px;
}

.story-panel + .story-panel {
  margin-top: 20px;
}

.story-panel p {
  margin: 16px 0 0;
  color: #d5e6f0;
  line-height: 1.95;
}

.info-panel dl {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px 14px;
  margin: 18px 0;
}

.info-panel dt {
  color: var(--muted);
}

.info-panel dd {
  margin: 0;
}

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

.page-links a {
  flex: 1;
  border-radius: 14px;
  padding: 12px;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
}

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

.sticky-rank {
  position: sticky;
  top: 100px;
}

.site-footer {
  margin-top: 70px;
  border-top: 1px solid var(--line);
  background: rgba(3, 7, 18, 0.62);
}

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

.footer-logo {
  margin-bottom: 12px;
  font-size: 1.4rem;
  font-weight: 950;
}

.site-footer p,
.site-footer h2 {
  margin: 0;
}

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

.site-footer h2 {
  margin-bottom: 12px;
  font-size: 1.05rem;
}

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

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

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

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

  .header-search {
    margin-left: auto;
    width: min(420px, 48vw);
  }

  .menu-toggle {
    display: block;
  }

  .mobile-nav.open {
    display: grid;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-top: 62px;
  }

  .hero-poster {
    display: none;
  }

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

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

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

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

  .detail-content {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .sticky-rank {
    position: static;
  }
}

@media (max-width: 760px) {
  .header-inner {
    width: min(100% - 24px, 1180px);
    height: 68px;
    gap: 12px;
  }

  .brand-name {
    font-size: 1.05rem;
  }

  .header-search {
    display: none;
  }

  .hero-wrap {
    min-height: 720px;
  }

  .hero-content {
    min-height: 520px;
    padding-bottom: 210px;
  }

  .hero-copy h1 {
    font-size: clamp(2.45rem, 14vw, 4.3rem);
  }

  .hero-search-panel {
    bottom: 94px;
  }

  .hero-search-panel form {
    min-width: 0;
    flex-direction: column;
    border-radius: 22px;
  }

  .hero-search-panel button {
    min-height: 45px;
  }

  .hero-controls {
    bottom: 28px;
  }

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

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

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

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

  .detail-cover {
    width: min(240px, 80vw);
  }

  .detail-copy h1 {
    font-size: clamp(2rem, 12vw, 3.6rem);
  }

  .play-icon {
    width: 68px;
    height: 68px;
  }

  .page-main,
  .movie-detail-main,
  .quick-stats,
  .content-section {
    width: min(100% - 24px, 1180px);
  }
}
