:root {
  --archive-50: #f5f7fa;
  --archive-100: #eaeff5;
  --archive-200: #d5e0eb;
  --archive-300: #a8bdd4;
  --archive-400: #7a9cbc;
  --archive-500: #5a7fa5;
  --archive-600: #46678a;
  --archive-700: #395370;
  --archive-800: #2f445d;
  --archive-900: #2a3b4e;
  --white: #ffffff;
  --ink: #17202b;
  --muted: #64748b;
  --line: #e2e8f0;
  --shadow: 0 18px 50px rgba(42, 59, 78, 0.12);
  --soft-shadow: 0 10px 30px rgba(42, 59, 78, 0.08);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  background: var(--archive-50);
  color: var(--ink);
  line-height: 1.6;
}

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: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(234, 239, 245, 0.85);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: var(--soft-shadow);
  background: rgba(255, 255, 255, 0.98);
}

.nav-wrap {
  width: min(1240px, calc(100% - 32px));
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--archive-600);
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(70, 103, 138, 0.32);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.18;
}

.brand-text strong {
  color: var(--archive-900);
  font-size: 20px;
  letter-spacing: -0.02em;
}

.brand-text small {
  color: var(--archive-600);
  font-size: 12px;
}

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

.desktop-nav > a,
.nav-dropdown > button {
  border: 0;
  background: transparent;
  color: var(--archive-700);
  cursor: pointer;
  font-weight: 650;
  padding: 24px 0;
  transition: color 0.2s ease;
}

.desktop-nav > a:hover,
.nav-dropdown > button:hover {
  color: var(--archive-900);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-panel {
  position: absolute;
  top: 64px;
  left: -20px;
  width: 220px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--archive-100);
  border-radius: var(--radius-sm);
  box-shadow: var(--soft-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-panel a {
  display: block;
  padding: 9px 10px;
  border-radius: 8px;
  color: var(--archive-700);
}

.nav-dropdown-panel a:hover {
  background: var(--archive-50);
  color: var(--archive-900);
}

.nav-search {
  position: relative;
  width: min(260px, 22vw);
}

.nav-search input,
.filter-bar input,
.filter-bar select {
  width: 100%;
  border: 1px solid var(--archive-100);
  border-radius: 999px;
  padding: 11px 16px;
  background: var(--archive-50);
  color: var(--archive-900);
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.nav-search input:focus,
.filter-bar input:focus,
.filter-bar select:focus {
  border-color: var(--archive-500);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(70, 103, 138, 0.12);
}

.search-results {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 360px;
  max-height: 430px;
  overflow: auto;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--archive-100);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.search-results.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.search-result-item {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
}

.search-result-item:hover {
  background: var(--archive-50);
}

.search-result-item strong {
  display: block;
  color: var(--archive-900);
}

.search-result-item span {
  color: var(--archive-500);
  font-size: 13px;
}

.menu-button {
  display: none;
  margin-left: auto;
  border: 0;
  background: var(--archive-100);
  color: var(--archive-900);
  width: 42px;
  height: 42px;
  border-radius: 12px;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 18px;
}

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

.mobile-nav a {
  display: block;
  padding: 10px 4px;
  color: var(--archive-700);
  font-weight: 650;
}

.mobile-category-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px 16px;
  padding-top: 6px;
  border-top: 1px solid var(--archive-100);
}

.wrap {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  position: relative;
  height: 620px;
  overflow: hidden;
  background: var(--archive-900);
}

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

.hero-slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 29, 39, 0.88), rgba(20, 29, 39, 0.58), rgba(20, 29, 39, 0.15));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1240px, calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 760px;
  margin-left: max(16px, calc((100vw - 1240px) / 2));
  padding-top: 40px;
}

.eyebrow,
.section-heading span,
.page-hero span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  padding: 7px 13px;
  background: rgba(70, 103, 138, 0.15);
  color: var(--archive-600);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--white);
  background: rgba(70, 103, 138, 0.82);
}

.hero h1 {
  margin: 18px 0 16px;
  color: var(--white);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.hero p {
  width: min(620px, 100%);
  margin: 0 0 26px;
  color: #eef3f8;
  font-size: clamp(17px, 2vw, 22px);
}

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

.hero-tags span,
.tag-row span,
.tag-cloud span {
  display: inline-flex;
  border-radius: 999px;
  padding: 5px 10px;
  background: var(--archive-100);
  color: var(--archive-700);
  font-size: 12px;
  font-weight: 700;
}

.hero-tags span {
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

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

.primary-button,
.secondary-button,
.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 12px;
  padding: 0 20px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.primary-button {
  background: var(--white);
  color: var(--archive-900);
}

.secondary-button {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.outline-button {
  border: 1px solid var(--archive-200);
  color: var(--archive-700);
  background: var(--white);
}

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

.primary-button:hover {
  background: var(--archive-50);
}

.secondary-button:hover {
  background: rgba(255, 255, 255, 0.16);
}

.outline-button:hover {
  border-color: var(--archive-600);
  color: var(--archive-900);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.32);
  transform: translateY(-50%) scale(1.05);
}

.hero-prev {
  left: 24px;
  transform: translateY(-50%);
}

.hero-next {
  right: 24px;
  transform: translateY(-50%);
}

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

.hero-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

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

.section {
  padding: 58px 0;
}

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

.section-heading h2,
.page-hero h1 {
  margin: 10px 0 0;
  color: var(--archive-900);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.section-heading a {
  color: var(--archive-600);
  font-weight: 800;
}

.section-heading.slim {
  align-items: center;
  margin-bottom: 20px;
}

.section-heading.slim h2 {
  font-size: 26px;
  margin: 0;
}

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

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

.movie-card {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--soft-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.movie-poster {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--archive-100);
}

.movie-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.58));
  opacity: 0.75;
}

.poster-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--archive-800);
  transform: translate(-50%, -50%) scale(0.88);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.movie-card:hover .poster-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.poster-year,
.rank-badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  border-radius: 999px;
  padding: 4px 9px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--archive-900);
  font-size: 12px;
  font-weight: 800;
}

.rank-badge {
  left: auto;
  right: 12px;
  background: var(--archive-600);
  color: var(--white);
}

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

.movie-card h3 {
  margin: 0 0 8px;
  color: var(--archive-900);
  font-size: 18px;
  line-height: 1.3;
}

.movie-card h3 a:hover {
  color: var(--archive-600);
}

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

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-bottom: 12px;
  color: var(--archive-500);
  font-size: 13px;
}

.movie-card-wide {
  display: grid;
  grid-template-columns: 43% 1fr;
}

.movie-card-wide .movie-poster {
  height: 100%;
  aspect-ratio: auto;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(320px, 0.9fr);
  gap: 30px;
  align-items: start;
}

.ranking-card,
.text-card,
.watch-card,
.side-card,
.ranking-table,
.category-card,
.page-hero {
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.ranking-card {
  padding: 24px;
  position: sticky;
  top: 92px;
}

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

.rank-line {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 11px;
  border-radius: 14px;
  transition: background 0.2s ease;
}

.rank-line:hover {
  background: var(--archive-50);
}

.rank-line span {
  color: var(--archive-300);
  font-size: 22px;
  font-weight: 900;
}

.rank-line strong {
  display: block;
  overflow: hidden;
  color: var(--archive-900);
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rank-line em {
  display: block;
  color: var(--archive-500);
  font-size: 12px;
  font-style: normal;
}

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

.category-tile,
.category-card-main {
  display: block;
  border-radius: var(--radius-md);
  padding: 22px;
  background: linear-gradient(145deg, var(--white), var(--archive-100));
  border: 1px solid var(--archive-100);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.category-tile:hover,
.category-card-main:hover {
  transform: translateY(-4px);
  border-color: var(--archive-300);
  box-shadow: var(--soft-shadow);
}

.category-tile span,
.category-card-main span {
  display: block;
  color: var(--archive-900);
  font-size: 20px;
  font-weight: 900;
}

.category-tile p,
.category-card-main p {
  margin: 8px 0 0;
  color: var(--archive-600);
  font-size: 14px;
}

.sub-page {
  padding-top: 38px;
}

.page-hero {
  padding: 46px;
}

.page-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--archive-600);
  font-size: 17px;
}

.compact-actions .primary-button {
  background: var(--archive-900);
  color: var(--white);
}

.compact-actions .secondary-button {
  border-color: var(--archive-200);
  color: var(--archive-700);
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 170px 170px;
  gap: 14px;
  margin-bottom: 24px;
  padding: 18px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.category-card {
  overflow: hidden;
}

.category-card-main {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.category-card-main h2 {
  margin: 6px 0 0;
  color: var(--archive-900);
}

.category-samples {
  display: grid;
  gap: 8px;
  padding: 18px 22px 22px;
}

.category-samples a {
  overflow: hidden;
  color: var(--archive-600);
  white-space: nowrap;
  text-overflow: ellipsis;
}

.category-samples a:hover {
  color: var(--archive-900);
}

.ranking-table {
  overflow: hidden;
}

.ranking-row {
  display: grid;
  grid-template-columns: 120px 68px minmax(0, 1fr) 96px;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-bottom: 1px solid var(--archive-100);
}

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

.ranking-thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 14px;
  background: var(--archive-100);
}

.ranking-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ranking-number {
  color: var(--archive-300);
  font-size: 34px;
  font-weight: 950;
}

.ranking-info h2 {
  margin: 0 0 8px;
  color: var(--archive-900);
  font-size: 20px;
}

.ranking-info p {
  display: -webkit-box;
  margin: 0 0 10px;
  overflow: hidden;
  color: var(--archive-600);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 30px;
  align-items: start;
}

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

.breadcrumb a:hover {
  color: var(--archive-900);
}

.watch-card {
  overflow: hidden;
}

.player-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000000;
}

.movie-player {
  width: 100%;
  height: 100%;
  display: block;
  background: #000000;
  cursor: pointer;
}

.player-cover {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.62));
  color: var(--white);
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-cover.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.player-cover-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--archive-900);
  font-size: 30px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.watch-info {
  padding: 30px;
}

.detail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.detail-badges a,
.detail-badges span {
  display: inline-flex;
  border-radius: 999px;
  padding: 6px 11px;
  background: var(--archive-100);
  color: var(--archive-700);
  font-size: 13px;
  font-weight: 800;
}

.watch-info h1 {
  margin: 0 0 12px;
  color: var(--archive-900);
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.watch-info p {
  margin: 0;
  color: var(--archive-600);
  font-size: 17px;
}

.text-card {
  margin-top: 24px;
  padding: 30px;
}

.text-card h2 {
  margin: 0 0 14px;
  color: var(--archive-900);
  font-size: 24px;
}

.text-card p {
  margin: 0 0 24px;
  color: var(--archive-700);
  font-size: 16px;
}

.text-card p:last-child {
  margin-bottom: 0;
}

.related-section {
  padding-bottom: 0;
}

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

.detail-side {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 20px;
}

.poster-side {
  overflow: hidden;
}

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

.meta-side {
  padding: 24px;
}

.meta-side h2 {
  margin: 0 0 18px;
  color: var(--archive-900);
}

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

.meta-side dt {
  color: var(--archive-500);
}

.meta-side dd {
  margin: 0;
  color: var(--archive-800);
  font-weight: 700;
}

.site-footer {
  margin-top: 72px;
  background: var(--archive-900);
  color: var(--archive-100);
}

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

.footer-logo .brand-mark {
  background: var(--archive-300);
  color: var(--archive-900);
}

.footer-logo .brand-text strong {
  color: var(--white);
}

.footer-logo .brand-text small,
.footer-brand p,
.site-footer a,
.site-footer p,
.footer-bottom {
  color: var(--archive-300);
}

.footer-brand p,
.site-footer p {
  margin: 16px 0 0;
}

.site-footer h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 18px;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li {
  margin: 8px 0;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(234, 239, 245, 0.15);
  padding: 18px 16px;
  text-align: center;
  font-size: 14px;
}

.back-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--archive-600);
  color: var(--white);
  box-shadow: var(--soft-shadow);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.back-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-top:hover {
  background: var(--archive-700);
}

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

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

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

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

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

  .ranking-card,
  .detail-side {
    position: static;
  }

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

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

  .brand-text strong {
    font-size: 17px;
  }

  .brand-text small {
    font-size: 11px;
  }

  .hero {
    height: 560px;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin-left: 16px;
  }

  .hero-arrow {
    display: none;
  }

  .section {
    padding: 38px 0;
  }

  .section-heading {
    display: block;
  }

  .section-heading a {
    display: inline-block;
    margin-top: 12px;
  }

  .movie-grid,
  .wide-grid,
  .movie-grid.two-cols,
  .category-tile-grid,
  .category-overview-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .movie-card-wide {
    display: block;
  }

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

  .page-hero,
  .watch-info,
  .text-card {
    padding: 24px;
  }

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

  .ranking-number {
    display: none;
  }

  .ranking-row .outline-button {
    grid-column: 1 / -1;
  }

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