:root {
  --bg-dark: #020617;
  --bg-main: #0f172a;
  --bg-soft: #1e293b;
  --bg-card: rgba(30, 41, 59, 0.78);
  --border: rgba(148, 163, 184, 0.18);
  --border-strong: rgba(245, 158, 11, 0.35);
  --text: #f8fafc;
  --muted: #94a3b8;
  --muted-2: #64748b;
  --amber: #f59e0b;
  --amber-light: #fbbf24;
  --orange: #ea580c;
  --red: #ef4444;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.16), transparent 34rem),
    linear-gradient(180deg, #020617 0%, #0f172a 42%, #020617 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
}

body::selection {
  background: rgba(245, 158, 11, 0.35);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.94), rgba(15, 23, 42, 0.96));
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.nav-inner,
.footer-inner,
.section,
.detail-hero-inner {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
}

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

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.brand-icon {
  width: 38px;
  height: 38px;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 14px 30px rgba(234, 88, 12, 0.35);
}

.brand-text {
  font-size: 1.42rem;
  line-height: 1;
  background: linear-gradient(90deg, #fbbf24, #fb923c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link,
.mobile-link {
  color: #cbd5e1;
  font-size: 0.96rem;
  font-weight: 650;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-link:hover,
.mobile-link:hover,
.nav-active {
  color: var(--amber-light);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: rgba(51, 65, 85, 0.7);
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #e2e8f0;
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 12px 0 18px;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
}

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

.mobile-link {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(30, 41, 59, 0.42);
}

.hero-slider {
  position: relative;
  min-height: 70vh;
  height: 720px;
  max-height: 860px;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(120, 53, 15, 0.24), rgba(15, 23, 42, 0.96));
}

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

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

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

.hero-overlay,
.detail-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.94) 0%, rgba(2, 6, 23, 0.74) 45%, rgba(2, 6, 23, 0.52) 100%),
    linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.15) 44%, rgba(2, 6, 23, 0.68) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1280px, calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.6fr);
  gap: 48px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--amber-light);
  font-weight: 750;
  letter-spacing: 0.04em;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--amber), var(--orange));
}

.hero-copy h1,
.page-hero h1,
.detail-hero h1 {
  margin: 0 0 22px;
  font-size: clamp(2.8rem, 7vw, 5.9rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  background: linear-gradient(90deg, #fbbf24, #fb923c, #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle,
.page-hero p,
.detail-hero p {
  max-width: 760px;
  margin: 0 0 22px;
  color: #cbd5e1;
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  line-height: 1.72;
}

.hero-meta,
.movie-meta,
.detail-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.hero-meta span,
.movie-meta span,
.tag-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
  color: #cbd5e1;
  background: rgba(15, 23, 42, 0.58);
  font-size: 0.82rem;
}

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

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

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

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 16px 34px rgba(234, 88, 12, 0.32);
}

.btn-ghost {
  color: #e2e8f0;
  background: rgba(30, 41, 59, 0.74);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.full-width {
  width: 100%;
}

.hero-poster {
  position: relative;
  aspect-ratio: 2 / 3;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(251, 191, 36, 0.28);
  box-shadow: var(--shadow);
  transform: rotate(2deg);
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.18), rgba(30, 41, 59, 0.9));
}

.hero-poster::after,
.movie-cover::after,
.poster-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.42), transparent 45%);
  pointer-events: none;
}

.poster-image,
.cover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.poster-play,
.play-mark {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  color: white;
  background: rgba(245, 158, 11, 0.88);
  box-shadow: 0 14px 30px rgba(245, 158, 11, 0.34);
}

.poster-play {
  right: 20px;
  bottom: 20px;
}

.hero-arrow {
  position: absolute;
  z-index: 6;
  top: 50%;
  width: 44px;
  height: 58px;
  border: 0;
  border-radius: 16px;
  color: white;
  background: rgba(15, 23, 42, 0.56);
  cursor: pointer;
  font-size: 2.3rem;
}

.hero-prev {
  left: 18px;
}

.hero-next {
  right: 18px;
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(226, 232, 240, 0.42);
  cursor: pointer;
}

.hero-dot.is-active {
  width: 28px;
  background: linear-gradient(90deg, var(--amber), var(--orange));
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(120, 53, 15, 0.28), rgba(2, 6, 23, 0.98));
}

.compact-hero {
  padding: 88px 0;
}

.page-hero > div {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section {
  padding: 72px 0;
}

.section-narrow {
  padding-top: 56px;
}

.section-heading {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 34px;
}

.section-heading.align-left {
  text-align: left;
  margin-left: 0;
}

.section-heading h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  letter-spacing: -0.035em;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

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

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

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 22px;
  background: var(--bg-card);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-5px) scale(1.01);
  border-color: rgba(251, 191, 36, 0.36);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.34);
}

.movie-cover {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.14), rgba(15, 23, 42, 0.98));
}

.movie-card:hover .cover-image {
  transform: scale(1.08);
}

.movie-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(15, 23, 42, 0.74);
  border: 1px solid rgba(226, 232, 240, 0.18);
  font-size: 0.78rem;
  font-weight: 800;
}

.play-mark {
  right: 12px;
  bottom: 12px;
  width: 40px;
  height: 40px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

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

.movie-card h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  line-height: 1.35;
}

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

.movie-desc {
  min-height: 44px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.62;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-meta {
  margin-bottom: 12px;
}

.movie-meta span {
  font-size: 0.76rem;
  min-height: 24px;
}

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

.tag-pill {
  color: #f1f5f9;
  background: rgba(51, 65, 85, 0.68);
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 180px 170px auto;
  gap: 14px;
  align-items: end;
  margin: 0 0 28px;
  padding: 18px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.62);
}

.filter-panel label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 13px;
  color: #e2e8f0;
  background: rgba(30, 41, 59, 0.78);
  padding: 0 13px;
  outline: none;
}

.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--border-strong);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.12);
}

.filter-count {
  color: var(--amber-light);
  font-weight: 800;
  white-space: nowrap;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
}

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

.category-card {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.86), rgba(15, 23, 42, 0.68));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.category-main-link {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.category-icon {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: white;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  font-weight: 900;
}

.category-main-link strong {
  display: block;
  font-size: 1.25rem;
}

.category-main-link em {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-style: normal;
  font-size: 0.9rem;
}

.category-card p {
  color: var(--muted);
  line-height: 1.7;
}

.category-card ul,
.related-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 9px;
}

.category-card li a,
.related-list a,
.sidebar-card a {
  color: #cbd5e1;
  transition: color 0.2s ease;
}

.category-card li a:hover,
.related-list a:hover,
.sidebar-card a:hover {
  color: var(--amber-light);
}

.two-column-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 36px;
  align-items: start;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 58px;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(30, 41, 59, 0.62);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.rank-row:hover {
  transform: translateX(5px);
  border-color: rgba(251, 191, 36, 0.34);
}

.rank-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  color: white;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  font-weight: 900;
}

.rank-title {
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.full-ranking .rank-row:nth-child(n + 100) .rank-number {
  background: rgba(51, 65, 85, 0.88);
}

.section-more {
  margin-top: 18px;
}

.detail-hero {
  min-height: 520px;
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 24px;
  color: #cbd5e1;
}

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

.detail-section {
  padding-top: 46px;
  padding-bottom: 40px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(251, 191, 36, 0.26);
  background: #000;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.video-player {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  color: white;
  background:
    radial-gradient(circle, rgba(245, 158, 11, 0.22), transparent 16rem),
    rgba(2, 6, 23, 0.42);
  cursor: pointer;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

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

.big-play {
  width: 84px;
  height: 84px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 20px 44px rgba(234, 88, 12, 0.42);
  font-size: 2rem;
}

.player-overlay strong {
  font-size: 1.4rem;
}

.player-overlay em {
  color: #cbd5e1;
  font-style: normal;
}

.detail-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr) 280px;
  gap: 28px;
  align-items: start;
  padding-top: 32px;
}

.detail-poster-card,
.detail-content,
.sidebar-card {
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.72);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
}

.detail-poster-card {
  padding: 16px;
  position: sticky;
  top: 92px;
}

.poster-frame {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 2 / 3;
  margin-bottom: 16px;
  background: rgba(30, 41, 59, 0.86);
}

.detail-tags {
  margin-top: 16px;
}

.detail-content {
  padding: 28px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 30px;
}

.info-grid div {
  padding: 14px;
  border-radius: 15px;
  background: rgba(30, 41, 59, 0.62);
}

.info-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.82rem;
}

.info-grid strong {
  font-size: 0.98rem;
}

.detail-content h2 {
  margin: 30px 0 12px;
  font-size: 1.55rem;
}

.detail-content p {
  color: #cbd5e1;
  line-height: 1.9;
  font-size: 1.02rem;
}

.detail-sidebar {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 92px;
}

.sidebar-card {
  padding: 20px;
}

.sidebar-card h3 {
  margin: 0 0 14px;
}

.sidebar-card a {
  display: block;
  padding: 9px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.related-list a span {
  display: block;
  margin-top: 4px;
  color: var(--muted-2);
  font-size: 0.78rem;
}

.cover-fallback {
  background:
    radial-gradient(circle at 30% 20%, rgba(251, 191, 36, 0.35), transparent 10rem),
    linear-gradient(135deg, rgba(245, 158, 11, 0.22), rgba(30, 41, 59, 0.94));
}

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

.site-footer {
  margin-top: 48px;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.2), rgba(2, 6, 23, 0.98));
}

.footer-inner {
  padding: 46px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner p {
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
}

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

.footer-links a {
  color: #cbd5e1;
}

.footer-links a:hover {
  color: var(--amber-light);
}

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

  .menu-toggle {
    display: block;
  }

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

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

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

  .detail-sidebar {
    grid-column: 1 / -1;
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .hero-slider {
    height: auto;
    min-height: 760px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 84px 0 96px;
  }

  .hero-poster {
    width: min(320px, 82vw);
    margin: 0 auto;
    transform: none;
  }

  .hero-arrow {
    display: none;
  }

  .section {
    padding: 52px 0;
  }

  .movie-grid,
  .featured-grid,
  .mini-grid,
  .related-grid,
  .search-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .detail-poster-card,
  .detail-sidebar {
    position: static;
  }

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

  .filter-count {
    justify-content: flex-start;
  }

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

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

  .rank-meta {
    grid-column: 2;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .brand-text {
    font-size: 1.12rem;
  }

  .hero-copy h1,
  .page-hero h1,
  .detail-hero h1 {
    font-size: 2.35rem;
    line-height: 1.06;
  }

  .hero-slider {
    min-height: 700px;
  }

  .movie-grid,
  .featured-grid,
  .mini-grid,
  .related-grid,
  .search-grid,
  .category-grid,
  .detail-sidebar {
    grid-template-columns: 1fr;
  }

  .movie-cover {
    aspect-ratio: 16 / 9;
  }

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

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

  .detail-content,
  .sidebar-card,
  .category-card {
    padding: 18px;
  }
}
