:root {
  --cyan-900: #164e63;
  --cyan-800: #155e75;
  --cyan-700: #0e7490;
  --cyan-600: #0891b2;
  --cyan-500: #06b6d4;
  --teal-600: #0d9488;
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;
  --shadow-soft: 0 20px 45px rgba(15, 23, 42, 0.14);
  --shadow-card: 0 12px 32px rgba(15, 23, 42, 0.12);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  background: linear-gradient(180deg, var(--slate-50) 0%, var(--slate-100) 100%);
  color: var(--slate-900);
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(90deg, var(--cyan-700), var(--cyan-600), var(--teal-600));
  box-shadow: 0 12px 28px rgba(8, 145, 178, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 76px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-weight: 900;
  color: var(--white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.brand-text {
  display: grid;
  line-height: 1.15;
}

.brand-text strong,
.footer-brand strong {
  font-size: 22px;
  letter-spacing: -0.02em;
}

.brand-text em {
  margin-top: 4px;
  color: #cffafe;
  font-size: 12px;
  font-style: normal;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--white);
}

.nav-link {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.25s ease, transform 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #ecfeff;
  transform: translateY(-1px);
}

.header-search {
  position: relative;
  display: flex;
  align-items: center;
  width: min(340px, 28vw);
  min-width: 230px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.17);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.header-search input,
.mobile-search input,
.search-page-form input,
.filter-bar input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--white);
  background: transparent;
}

.header-search input {
  padding: 11px 12px 11px 18px;
}

.header-search input::placeholder,
.mobile-search input::placeholder {
  color: #cffafe;
}

.header-search button,
.mobile-search button,
.search-page-form button {
  border: 0;
  color: var(--cyan-800);
  background: var(--white);
  padding: 10px 17px;
  border-radius: 999px;
  font-weight: 800;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 10px;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  padding: 0 16px 18px;
  background: var(--cyan-800);
}

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

.mobile-nav-link {
  color: var(--white);
  font-weight: 800;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-search {
  display: flex;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.12);
}

.mobile-search input {
  padding: 9px 12px;
}

.hero-section {
  position: relative;
  min-height: 72vh;
  overflow: hidden;
  background: var(--slate-950);
}

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

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

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-dim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 28%, rgba(6, 182, 212, 0.24), transparent 34%),
    linear-gradient(90deg, rgba(2, 6, 23, 0.88) 0%, rgba(2, 6, 23, 0.52) 48%, rgba(2, 6, 23, 0.22) 100%),
    linear-gradient(0deg, rgba(2, 6, 23, 0.88) 0%, transparent 42%);
}

.hero-content {
  position: relative;
  height: 72vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(66px, 9vw, 118px);
}

.hero-copy {
  max-width: 760px;
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 7px 13px;
  border-radius: 999px;
  background: var(--cyan-600);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(8, 145, 178, 0.28);
}

.hero-copy h1,
.hero-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.hero-copy p {
  max-width: 680px;
  margin: 0 0 28px;
  color: #e2e8f0;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.7;
}

.hero-actions,
.intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.primary-button,
.ghost-button,
.intro-actions a,
.filter-bar a,
.section-more,
.pager a,
.pager strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.primary-button,
.intro-actions a:first-child,
.search-page-form button {
  color: var(--white);
  background: var(--cyan-600);
  box-shadow: 0 16px 34px rgba(8, 145, 178, 0.28);
}

.primary-button,
.ghost-button,
.intro-actions a {
  min-height: 46px;
  padding: 0 24px;
}

.ghost-button,
.intro-actions a,
.filter-bar a,
.section-more,
.pager a,
.pager strong {
  border: 1px solid rgba(8, 145, 178, 0.18);
  background: rgba(255, 255, 255, 0.92);
  color: var(--cyan-700);
}

.primary-button:hover,
.ghost-button:hover,
.intro-actions a:hover,
.filter-bar a:hover,
.section-more:hover,
.pager a:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

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

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

.content-section,
.page-main {
  padding: 46px 0;
}

.page-main {
  min-height: 60vh;
}

.intro-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.7fr);
  gap: 24px;
  margin-top: -48px;
  position: relative;
  z-index: 3;
}

.intro-card,
.page-hero,
.text-panel,
.side-panel,
.search-panel,
.category-overview-card {
  border: 1px solid rgba(8, 145, 178, 0.12);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.intro-card {
  padding: 28px;
}

.intro-card h2,
.section-heading h2,
.text-panel h2,
.side-panel h2 {
  margin: 0;
  color: var(--slate-900);
  letter-spacing: -0.03em;
}

.intro-card p {
  margin: 12px 0 24px;
  color: var(--slate-600);
  line-height: 1.8;
}

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

.mini-link-grid a {
  padding: 14px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ecfeff, #ffffff);
  color: var(--cyan-800);
  font-weight: 800;
}

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

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

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

.section-more,
.filter-bar a,
.pager a,
.pager strong {
  min-height: 40px;
  padding: 0 18px;
}

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

.featured-grid {
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
}

.catalog-grid,
.rank-grid {
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
}

.movie-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.09);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

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

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, var(--slate-900), var(--cyan-900));
}

.poster-ratio {
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
}

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

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

.poster-shade {
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.72), transparent);
}

.poster-play {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(8, 145, 178, 0.88);
  font-size: 13px;
  font-weight: 800;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.movie-card:hover .poster-play {
  opacity: 1;
  transform: translateY(0);
}

.movie-card-body {
  display: grid;
  gap: 10px;
  padding: 15px;
}

.movie-meta-line,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--cyan-700);
  font-size: 13px;
  font-weight: 800;
}

.movie-card h3 {
  margin: 0;
  color: var(--slate-900);
  font-size: 17px;
  line-height: 1.35;
}

.movie-card h3 a:hover {
  color: var(--cyan-700);
}

.movie-card p {
  margin: 0;
  color: var(--slate-600);
  font-size: 14px;
  line-height: 1.65;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag-row span {
  padding: 4px 8px;
  border-radius: 999px;
  background: #ecfeff;
  color: var(--cyan-800);
  font-size: 12px;
  font-weight: 800;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: 28px;
}

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

.horizontal-card {
  display: grid;
  grid-template-columns: 76px 1fr;
  align-items: center;
  gap: 14px;
  padding: 10px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.horizontal-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-card);
}

.horizontal-card img {
  width: 76px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 12px;
  background: var(--slate-900);
}

.horizontal-card span {
  display: grid;
  gap: 7px;
}

.horizontal-card strong {
  color: var(--slate-900);
  line-height: 1.3;
}

.horizontal-card em {
  color: var(--slate-600);
  font-size: 13px;
  font-style: normal;
}

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

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

.category-tile {
  display: grid;
  gap: 7px;
  min-height: 118px;
  padding: 18px;
  border-radius: 20px;
  color: var(--white);
  background: linear-gradient(135deg, var(--cyan-700), var(--teal-600));
  box-shadow: 0 16px 30px rgba(8, 145, 178, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.category-tile strong {
  font-size: 20px;
}

.category-tile span {
  color: #dffcff;
  font-size: 14px;
  line-height: 1.55;
}

.page-hero {
  margin-bottom: 28px;
  padding: clamp(28px, 4vw, 46px);
  background:
    radial-gradient(circle at right top, rgba(6, 182, 212, 0.18), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(240, 253, 250, 0.94));
}

.page-hero span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--cyan-600);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.page-hero p {
  max-width: 820px;
  margin: 14px 0 0;
  color: var(--slate-600);
  font-size: 17px;
  line-height: 1.8;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--slate-600);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--cyan-700);
  font-weight: 800;
}

.breadcrumb.dark,
.breadcrumb.dark a {
  color: #cffafe;
}

.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  padding: 10px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.filter-bar input {
  min-height: 46px;
  padding: 0 18px;
  color: var(--slate-900);
}

.filter-bar input::placeholder,
.search-page-form input::placeholder {
  color: #94a3b8;
}

.category-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.category-overview-card {
  padding: 24px;
}

.category-overview-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--slate-900);
}

.category-overview-title strong {
  font-size: 22px;
}

.category-overview-title span {
  color: var(--cyan-700);
  font-weight: 800;
}

.category-overview-card p {
  margin: 12px 0 18px;
  color: var(--slate-600);
  line-height: 1.7;
}

.overview-sample {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.overview-sample a,
.filter-chips a {
  padding: 7px 11px;
  border-radius: 999px;
  background: #ecfeff;
  color: var(--cyan-800);
  font-size: 13px;
  font-weight: 800;
}

.pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 32px;
}

.pager strong {
  background: var(--cyan-600);
  color: var(--white);
}

.rank-number {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
  min-width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cyan-600);
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(8, 145, 178, 0.35);
}

.search-panel {
  margin-bottom: 34px;
  padding: 22px;
}

.search-page-form {
  display: flex;
  gap: 12px;
  border-radius: 999px;
  background: var(--slate-100);
  padding: 8px;
}

.search-page-form input {
  min-height: 48px;
  padding: 0 18px;
  color: var(--slate-900);
}

.search-page-form button {
  min-width: 100px;
}

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

.detail-top {
  color: var(--white);
  background:
    radial-gradient(circle at 86% 8%, rgba(6, 182, 212, 0.24), transparent 32%),
    linear-gradient(135deg, var(--slate-950), var(--cyan-900));
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
  min-height: 520px;
  padding: 58px 0;
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.32);
  background: var(--slate-900);
}

.detail-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.detail-copy p {
  max-width: 820px;
  margin: 0 0 24px;
  color: #dbeafe;
  font-size: 18px;
  line-height: 1.8;
}

.detail-meta {
  margin-bottom: 16px;
  color: #a5f3fc;
}

.detail-tags span {
  background: rgba(255, 255, 255, 0.13);
  color: #ecfeff;
}

.player-section {
  margin-top: -68px;
  position: relative;
  z-index: 5;
}

.player-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-xl);
  background: #000000;
  box-shadow: 0 28px 70px rgba(2, 6, 23, 0.3);
}

.player-shell video {
  width: 100%;
  height: 100%;
  background: #000000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 12px;
  border: 0;
  color: var(--white);
  background: rgba(2, 6, 23, 0.44);
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-overlay img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.48;
}

.player-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.78), rgba(2, 6, 23, 0.1));
}

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

.play-circle,
.player-overlay strong {
  position: relative;
  z-index: 2;
}

.play-circle {
  width: 86px;
  height: 86px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--cyan-600);
  box-shadow: 0 20px 48px rgba(8, 145, 178, 0.42);
  font-size: 32px;
  padding-left: 5px;
}

.player-overlay strong {
  font-size: 20px;
  letter-spacing: 0.05em;
}

.detail-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 28px;
}

.text-panel,
.side-panel {
  padding: 28px;
}

.text-panel h2,
.side-panel h2 {
  margin-bottom: 14px;
  font-size: 26px;
}

.text-panel h2:not(:first-child) {
  margin-top: 28px;
}

.text-panel p {
  margin: 0;
  color: var(--slate-700);
  font-size: 17px;
  line-height: 1.95;
}

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

.side-panel dt {
  color: var(--slate-600);
  font-weight: 800;
}

.side-panel dd {
  margin: 0;
  color: var(--slate-900);
  line-height: 1.6;
}

.site-footer {
  margin-top: 40px;
  color: #cbd5e1;
  background: var(--slate-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(180px, 0.5fr) minmax(180px, 0.5fr);
  gap: 38px;
  padding: 46px 0;
}

.footer-grid p {
  max-width: 560px;
  color: #94a3b8;
  line-height: 1.8;
}

.footer-grid h3 {
  margin: 0 0 14px;
  color: var(--white);
}

.footer-grid ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

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

.hidden-card {
  display: none;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--white);
  color: var(--slate-600);
  text-align: center;
  box-shadow: var(--shadow-card);
}

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

  .menu-button {
    display: block;
  }

  .intro-panel,
  .split-section,
  .detail-content,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .detail-layout {
    grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 24px, 1280px);
  }

  .header-inner {
    min-height: 66px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

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

  .brand-text em {
    display: none;
  }

  .hero-section,
  .hero-content {
    min-height: 68vh;
    height: 68vh;
  }

  .hero-copy h1,
  .hero-copy h2 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .hero-copy p {
    font-size: 16px;
  }

  .hero-actions,
  .intro-actions,
  .section-heading,
  .filter-bar,
  .search-page-form {
    align-items: stretch;
    flex-direction: column;
  }

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

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

  .movie-card p {
    display: none;
  }

  .category-grid,
  .category-grid.small,
  .category-overview-grid {
    grid-template-columns: 1fr;
  }

  .detail-layout {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 34px 0 88px;
  }

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

  .player-section {
    margin-top: -56px;
  }

  .player-shell {
    border-radius: 18px;
  }

  .play-circle {
    width: 66px;
    height: 66px;
    font-size: 24px;
  }

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