:root {
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-300: #cbd5e1;
  --slate-100: #f1f5f9;
  --gray-50: #f9fafb;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  --soft-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  color: var(--slate-900);
  background: var(--gray-50);
  line-height: 1.65;
}

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: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  max-width: 1280px;
  margin: 0 auto;
  height: 68px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--slate-900);
  font-size: 21px;
  font-weight: 800;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.brand:hover {
  color: var(--blue);
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #60a5fa);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.28);
}

.brand-mark svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--slate-700);
  font-weight: 650;
  white-space: nowrap;
}

.desktop-nav a {
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--blue);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-box {
  position: relative;
  width: min(320px, 46vw);
}

.search-box input {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  outline: 0;
  padding: 10px 16px;
  background: var(--white);
  color: var(--slate-900);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-box input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.search-results {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  max-height: 420px;
  overflow: auto;
  padding: 8px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid #e5e7eb;
  z-index: 100;
}

.search-results.is-open {
  display: block;
}

.search-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  padding: 9px;
  border-radius: 14px;
  transition: background 0.2s ease;
}

.search-item:hover {
  background: var(--slate-100);
}

.search-item img {
  width: 52px;
  height: 70px;
  object-fit: cover;
  border-radius: 10px;
  background: var(--slate-100);
}

.search-item strong {
  display: block;
  color: var(--slate-900);
  line-height: 1.3;
}

.search-item span,
.search-empty {
  color: var(--slate-500);
  font-size: 13px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: var(--slate-100);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--slate-700);
  border-radius: 4px;
}

.mobile-menu {
  display: none;
  padding: 14px 24px 22px;
  border-top: 1px solid #e5e7eb;
  background: var(--white);
}

.mobile-menu a {
  display: block;
  padding: 10px 0;
  color: var(--slate-700);
  font-weight: 650;
}

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

.hero {
  position: relative;
  height: 560px;
  overflow: hidden;
  background: linear-gradient(135deg, #1e3a8a, #0f172a);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
}

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

.hero-slide > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.05);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.88), rgba(15, 23, 42, 0.62) 45%, rgba(15, 23, 42, 0.2)),
    linear-gradient(0deg, rgba(2, 6, 23, 0.65), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  padding: 90px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  color: #bfdbfe;
  background: rgba(37, 99, 235, 0.18);
  border: 1px solid rgba(147, 197, 253, 0.28);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero h1 {
  max-width: 780px;
  margin: 0 0 18px;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero p {
  max-width: 720px;
  margin: 0 0 20px;
  color: #dbeafe;
  font-size: 18px;
}

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

.hero-tags span,
.detail-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #e0f2fe;
  padding: 4px 10px;
  font-size: 13px;
  font-weight: 650;
}

.tag-row span {
  background: #eff6ff;
  color: var(--blue-dark);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.btn-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 14px 32px rgba(37, 99, 235, 0.28);
}

.btn-primary:hover {
  background: var(--blue-dark);
}

.btn-glass {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(10px);
}

.btn-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.36);
}

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: rgba(15, 23, 42, 0.48);
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-control:hover {
  background: rgba(37, 99, 235, 0.82);
  transform: translateY(-50%) scale(1.04);
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

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

.hero-dots button {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.44);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dots button.is-active {
  width: 32px;
  background: var(--white);
}

.hero-search-panel,
.content-section,
.page-shell,
.player-section,
.detail-content-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.hero-search-panel {
  position: relative;
  z-index: 5;
  margin-top: -46px;
  padding-top: 0;
  display: grid;
  grid-template-columns: 1.2fr minmax(280px, 420px);
  align-items: center;
  gap: 24px;
}

.hero-search-panel > div:first-child,
.filter-panel,
.category-block,
.ranking-panel,
.side-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  border: 1px solid #e5e7eb;
}

.hero-search-panel > div:first-child {
  padding: 24px;
}

.hero-search-panel h2,
.section-head h2,
.panel-head h2,
.category-block h2,
.detail-article h2,
.side-card h2 {
  margin: 0;
  color: var(--slate-900);
  line-height: 1.2;
}

.hero-search-panel p,
.section-head p,
.category-block p,
.page-hero p,
.detail-article p {
  color: var(--slate-600);
}

.content-section {
  padding-top: 56px;
  padding-bottom: 16px;
}

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

.section-head h2,
.panel-head h2 {
  font-size: 28px;
}

.section-head p {
  margin: 8px 0 0;
}

.section-link,
.panel-head a {
  color: var(--blue);
  font-weight: 800;
}

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

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

.movie-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
  border: 1px solid #e5e7eb;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.movie-card[hidden] {
  display: none;
}

.movie-poster {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #dbeafe, #e0e7ff);
}

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

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

.poster-play {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: rgba(37, 99, 235, 0.88);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.88);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.rank-badge {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 2;
  display: grid;
  min-width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  background: linear-gradient(135deg, #f97316, #ef4444);
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(239, 68, 68, 0.28);
}

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

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
  color: var(--slate-500);
  font-size: 12px;
}

.card-meta span {
  padding: 2px 7px;
  border-radius: 999px;
  background: var(--slate-100);
}

.movie-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.35;
}

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

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

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

.category-tile {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--white), #eff6ff);
  border: 1px solid #dbeafe;
  box-shadow: var(--soft-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.category-thumb-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.category-thumb-row img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 12px;
  background: var(--slate-100);
}

.category-tile strong {
  margin-top: 12px;
  font-size: 19px;
}

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

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

.ranking-panel {
  padding: 22px;
}

.sticky-panel {
  position: sticky;
  top: 92px;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.ranking-list,
.compact-list {
  display: grid;
  gap: 12px;
}

.compact-card {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 8px;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid #e5e7eb;
  transition: background 0.2s ease, transform 0.2s ease;
}

.compact-card:hover {
  background: #eff6ff;
  transform: translateX(3px);
}

.compact-card img {
  width: 54px;
  height: 74px;
  object-fit: cover;
  border-radius: 10px;
  background: var(--slate-100);
}

.compact-text strong {
  display: block;
  line-height: 1.35;
}

.compact-text em {
  display: block;
  color: var(--slate-500);
  font-size: 12px;
  font-style: normal;
  margin-top: 4px;
}

.compact-rank {
  min-width: 28px;
  color: var(--blue);
  font-weight: 900;
  text-align: center;
}

.page-shell {
  padding-top: 32px;
  padding-bottom: 56px;
}

.page-hero {
  min-height: 280px;
  padding: 44px;
  border-radius: 28px;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 20%, rgba(96, 165, 250, 0.42), transparent 28%),
    linear-gradient(135deg, #1e3a8a, #0f172a 72%);
  box-shadow: var(--shadow);
}

.small-hero,
.category-hero,
.ranking-hero {
  display: grid;
  align-content: center;
  gap: 12px;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.08;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: #dbeafe;
  font-size: 17px;
}

.page-hero .search-box {
  width: min(520px, 100%);
  margin-top: 8px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: #dbeafe;
  font-size: 14px;
}

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

.category-overview {
  display: grid;
  gap: 22px;
  margin-top: 28px;
}

.category-block {
  padding: 24px;
}

.category-block-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.category-block p {
  margin: 6px 0 0;
}

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

.filter-panel label {
  display: grid;
  gap: 7px;
  color: var(--slate-600);
  font-weight: 700;
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 11px 13px;
  outline: 0;
  background: var(--white);
}

.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.detail-page {
  background: var(--gray-50);
}

.detail-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--slate-900);
}

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

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

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.94), rgba(15, 23, 42, 0.72));
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 42px 24px 52px;
}

.detail-intro {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  margin-top: 24px;
}

.detail-cover {
  width: 260px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  background: var(--slate-800);
}

.detail-copy h1 {
  max-width: 880px;
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
}

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

.detail-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.detail-meta li {
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.detail-meta strong {
  display: block;
  color: #bfdbfe;
  font-size: 12px;
}

.detail-meta span {
  display: block;
  color: var(--white);
  font-weight: 750;
}

.detail-tags {
  margin-bottom: 24px;
}

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

.movie-player {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: var(--slate-950);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.movie-video {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--slate-950);
}

.play-cover {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  gap: 12px;
  border: 0;
  color: var(--white);
  cursor: pointer;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.62), rgba(37, 99, 235, 0.38));
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.play-cover span {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border-radius: 999px;
  background: var(--blue);
  font-size: 34px;
  box-shadow: 0 24px 42px rgba(37, 99, 235, 0.34);
}

.play-cover strong {
  font-size: 20px;
}

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

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

.detail-article,
.side-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
  border: 1px solid #e5e7eb;
}

.detail-article h2 {
  margin-top: 0;
  margin-bottom: 12px;
}

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

.detail-article p {
  margin: 0;
  font-size: 16px;
}

.detail-aside {
  align-self: start;
  position: sticky;
  top: 92px;
}

.related-section {
  padding-bottom: 64px;
}

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

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 42px 24px;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 12px;
  color: var(--white);
}

.site-footer p {
  margin: 0;
}

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

.site-footer li + li {
  margin-top: 7px;
}

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

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

@media (max-width: 1180px) {
  .desktop-nav {
    gap: 14px;
  }

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

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

  .two-column-section,
  .detail-content-grid {
    grid-template-columns: 1fr;
  }

  .ranking-panel,
  .detail-aside,
  .sticky-panel {
    position: static;
  }
}

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

  .menu-toggle {
    display: block;
  }

  .hero {
    height: 520px;
  }

  .hero-content {
    padding: 84px 22px;
  }

  .hero-control {
    display: none;
  }

  .hero-search-panel {
    grid-template-columns: 1fr;
    margin-top: 0;
    padding-top: 22px;
  }

  .hero-search-panel .search-box {
    width: 100%;
  }

  .detail-intro {
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 22px;
  }

  .detail-cover {
    width: 160px;
  }

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

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

@media (max-width: 640px) {
  .nav-wrap,
  .hero-search-panel,
  .content-section,
  .page-shell,
  .player-section,
  .detail-content-grid,
  .detail-hero-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand {
    font-size: 18px;
  }

  .hero {
    height: 500px;
  }

  .hero h1 {
    font-size: 36px;
  }

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

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

  .section-head,
  .category-block-head {
    display: grid;
    align-items: start;
  }

  .page-hero {
    padding: 28px 20px;
    border-radius: 22px;
  }

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

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

  .detail-cover {
    width: min(210px, 70vw);
  }

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

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

  .play-cover span {
    width: 68px;
    height: 68px;
  }

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

@media (max-width: 420px) {
  .movie-grid,
  .compact-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }
}
