:root {
  color-scheme: light;
  --bg: #fffaf4;
  --surface: #ffffff;
  --surface-soft: #fff7ed;
  --surface-warm: #ffedd5;
  --text: #1f2937;
  --muted: #6b7280;
  --line: #fed7aa;
  --orange: #f97316;
  --orange-dark: #c2410c;
  --amber: #f59e0b;
  --shadow: 0 22px 50px rgba(124, 45, 18, 0.13);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  background: radial-gradient(circle at top left, rgba(251, 146, 60, 0.18), transparent 32rem), var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 247, 237, 0.9);
  border-bottom: 1px solid rgba(251, 146, 60, 0.2);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(124, 45, 18, 0.08);
}

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

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  color: var(--orange-dark);
}

.brand-mark {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #ffffff;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.32);
}

.brand-text {
  font-size: 20px;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

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

.nav-link,
.mobile-link {
  padding: 10px 14px;
  border-radius: 999px;
  color: #7c2d12;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
  color: var(--orange-dark);
  background: rgba(255, 237, 213, 0.9);
  transform: translateY(-1px);
}

.header-search {
  display: flex;
  align-items: center;
  min-width: 280px;
  padding: 5px;
  border: 1px solid rgba(251, 146, 60, 0.24);
  border-radius: 999px;
  background: #ffffff;
}

.header-search input,
.mobile-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 10px 12px;
  color: var(--text);
}

.header-search button,
.mobile-search button {
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  padding: 10px 18px;
  font-weight: 800;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(124, 45, 18, 0.12);
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--orange-dark);
  border-radius: 999px;
}

.mobile-panel {
  display: none;
  padding: 0 16px 18px;
  border-top: 1px solid rgba(251, 146, 60, 0.14);
}

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

.mobile-panel nav {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.mobile-search {
  display: flex;
  gap: 8px;
  padding: 8px;
  border-radius: 18px;
  background: #ffffff;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  background: linear-gradient(135deg, #431407, #7c2d12 45%, #f97316);
}

.hero-light {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  filter: blur(22px);
  opacity: 0.35;
  pointer-events: none;
}

.hero-light-one {
  top: -160px;
  left: -120px;
  background: #fed7aa;
}

.hero-light-two {
  right: -140px;
  bottom: -180px;
  background: #fef3c7;
}

.hero-slides {
  position: relative;
  min-height: 620px;
}

.hero-slide {
  display: none;
  position: relative;
  min-height: 620px;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 52px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0 112px;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0 calc(50% - 50vw);
  background:
    linear-gradient(90deg, rgba(67, 20, 7, 0.94), rgba(124, 45, 18, 0.72), rgba(124, 45, 18, 0.28)),
    var(--hero-image) center / cover no-repeat;
  transform: scale(1.02);
}

.hero-slide.is-active {
  display: grid;
  animation: fadeSlide 0.65s ease both;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0 calc(50% - 50vw);
  background: radial-gradient(circle at 25% 30%, rgba(253, 186, 116, 0.22), transparent 30rem);
  pointer-events: none;
}

.hero-content,
.hero-poster {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange-dark);
  background: rgba(255, 237, 213, 0.92);
  border: 1px solid rgba(251, 146, 60, 0.25);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.hero-content h1 {
  margin: 22px 0 18px;
  max-width: 760px;
  color: #ffffff;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero-content p {
  max-width: 680px;
  color: rgba(255, 247, 237, 0.9);
  font-size: 19px;
}

.hero-tags,
.tag-row,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.hero-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  color: #9a3412;
  background: rgba(255, 237, 213, 0.9);
  font-size: 13px;
  font-weight: 800;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  box-shadow: 0 18px 38px rgba(249, 115, 22, 0.32);
}

.btn-soft {
  color: #9a3412;
  background: rgba(255, 247, 237, 0.9);
  border: 1px solid rgba(251, 146, 60, 0.24);
}

.hero-poster {
  overflow: hidden;
  min-height: 500px;
  border: 10px solid rgba(255, 247, 237, 0.22);
  border-radius: 34px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
  background: linear-gradient(135deg, #fed7aa, #fdba74);
}

.hero-poster img,
.poster img,
.detail-poster img,
.ranking-row-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, 0.46));
  pointer-events: none;
}

.hero-controls {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-top: -92px;
  padding-bottom: 34px;
}

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

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

.hero-dot.is-active {
  width: 34px;
  background: #ffffff;
}

.hero-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(620px, 100%);
}

.hero-rail-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px 10px;
  padding: 14px;
  border: 1px solid rgba(255, 247, 237, 0.22);
  border-radius: 20px;
  background: rgba(255, 247, 237, 0.13);
  color: #ffffff;
  backdrop-filter: blur(14px);
}

.hero-rail-card.is-active {
  background: rgba(255, 247, 237, 0.28);
}

.hero-rail-card span {
  grid-row: span 2;
  color: #fed7aa;
  font-weight: 900;
}

.hero-rail-card strong {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.hero-rail-card em {
  color: rgba(255, 247, 237, 0.72);
  font-style: normal;
  font-size: 13px;
}

.section {
  padding: 74px 0;
}

.section-warm {
  background: linear-gradient(180deg, rgba(255, 237, 213, 0.74), rgba(255, 250, 244, 0.2));
}

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

.section-head h2,
.page-hero h1,
.detail-card h1 {
  margin: 12px 0 8px;
  color: #7c2d12;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-head p,
.page-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 17px;
}

.section-link,
.text-link {
  color: var(--orange-dark);
  font-weight: 900;
}

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(251, 146, 60, 0.16);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(124, 45, 18, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.poster {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: radial-gradient(circle at 25% 20%, #ffedd5, #fdba74 42%, #9a3412);
}

.poster-fallback::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 22px;
}

.badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(154, 52, 18, 0.82);
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.badge-year {
  top: 12px;
  left: 12px;
}

.play-chip {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

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

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

.movie-mini-meta span,
.detail-meta span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--surface-soft);
  padding: 3px 9px;
}

.movie-card h3 {
  margin: 12px 0 8px;
  color: #7c2d12;
  font-size: 19px;
  line-height: 1.25;
}

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

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

.movie-card.compact h3 {
  font-size: 16px;
}

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

.category-tile {
  position: relative;
  overflow: hidden;
  min-height: 180px;
  padding: 28px;
  border-radius: 30px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(67, 20, 7, 0.86), rgba(249, 115, 22, 0.54)),
    var(--tile-image) center / cover no-repeat;
  box-shadow: var(--shadow);
}

.category-tile span,
.category-tile strong {
  position: relative;
  z-index: 2;
  display: block;
}

.category-tile span {
  font-size: 28px;
  font-weight: 900;
}

.category-tile strong {
  max-width: 360px;
  margin-top: 10px;
  color: rgba(255, 247, 237, 0.85);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 28px;
}

.ranking-list,
.ranking-table,
.side-card,
.detail-card,
.spotlight-card,
.filter-panel,
.category-overview-card {
  border: 1px solid rgba(251, 146, 60, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 36px rgba(124, 45, 18, 0.08);
}

.ranking-list {
  overflow: hidden;
}

.ranking-item {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(251, 146, 60, 0.14);
}

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

.ranking-index {
  color: var(--orange);
  font-size: 22px;
  font-weight: 900;
}

.ranking-title {
  overflow: hidden;
  color: #7c2d12;
  font-weight: 900;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.ranking-meta {
  color: var(--muted);
  font-size: 13px;
}

.spotlight-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  background: linear-gradient(135deg, #fff7ed, #ffffff);
}

.spotlight-card h2 {
  margin: 18px 0 12px;
  color: #7c2d12;
  font-size: 34px;
  line-height: 1.1;
}

.spotlight-card p {
  color: var(--muted);
  margin-bottom: 24px;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(253, 186, 116, 0.5), transparent 26rem),
    linear-gradient(135deg, #fff7ed, #ffedd5);
}

.page-hero::after,
.detail-hero::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -120px;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.16);
  filter: blur(8px);
}

.filter-panel {
  margin-bottom: 26px;
  padding: 22px;
}

.filter-title {
  margin-bottom: 14px;
  color: #7c2d12;
  font-size: 20px;
  font-weight: 900;
}

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

.filter-grid label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.filter-grid input,
.filter-grid select {
  width: 100%;
  border: 1px solid rgba(251, 146, 60, 0.22);
  border-radius: 16px;
  outline: 0;
  background: #ffffff;
  padding: 12px 14px;
  color: var(--text);
}

.filter-grid input:focus,
.filter-grid select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 22px;
  padding: 18px;
}

.category-cover {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  min-height: 180px;
}

.category-cover span {
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(67, 20, 7, 0.25), rgba(249, 115, 22, 0.18)),
    var(--sample-image) center / cover no-repeat,
    linear-gradient(135deg, #fed7aa, #fdba74);
}

.category-overview-card h2 {
  margin: 10px 0 8px;
  color: #7c2d12;
  font-size: 28px;
}

.category-overview-card p {
  color: var(--muted);
}

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

.ranking-table {
  overflow: hidden;
}

.ranking-row {
  display: grid;
  grid-template-columns: 72px 96px 1fr;
  gap: 18px;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(251, 146, 60, 0.14);
}

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

.ranking-rank {
  color: var(--orange);
  font-size: 30px;
  font-weight: 900;
}

.ranking-row-poster {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  background: linear-gradient(135deg, #fed7aa, #fdba74);
}

.ranking-row-main h2 {
  margin: 0 0 8px;
  color: #7c2d12;
  font-size: 22px;
}

.ranking-row-main p {
  color: var(--muted);
  margin: 0 0 10px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #9a3412;
  font-weight: 800;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  padding: 38px 0 76px;
}

.player-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 30px;
  background: radial-gradient(circle at 50% 30%, rgba(249, 115, 22, 0.34), rgba(20, 8, 2, 0.96) 56%);
  box-shadow: 0 30px 70px rgba(67, 20, 7, 0.24);
}

.video-player {
  width: 100%;
  height: 100%;
  background: #000000;
  object-fit: contain;
}

.player-start {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  gap: 10px;
  border: 0;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.62));
  font-size: 18px;
  font-weight: 900;
}

.player-icon {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  box-shadow: 0 18px 40px rgba(249, 115, 22, 0.38);
}

.player-frame.is-playing .player-start {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.player-status {
  position: absolute;
  right: 16px;
  bottom: 14px;
  z-index: 5;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.42);
  padding: 6px 12px;
  font-size: 13px;
  backdrop-filter: blur(10px);
}

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

.detail-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.detail-meta {
  margin: 12px 0 16px;
}

.one-line {
  color: #7c2d12;
  font-size: 18px;
  font-weight: 800;
}

.detail-card h2 {
  margin: 28px 0 10px;
  color: #7c2d12;
  font-size: 24px;
}

.detail-card p {
  color: #4b5563;
}

.detail-side {
  display: grid;
  align-content: start;
  gap: 22px;
}

.detail-poster {
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.side-card {
  padding: 20px;
}

.side-card h2 {
  margin: 0 0 16px;
  color: #7c2d12;
}

.side-related {
  display: grid;
  gap: 14px;
}

.side-related .movie-card {
  display: grid;
  grid-template-columns: 90px 1fr;
  border-radius: 20px;
}

.side-related .poster {
  aspect-ratio: 3 / 4;
}

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

.side-related .tag-row,
.side-related .movie-mini-meta,
.side-related .movie-card p {
  display: none;
}

.site-footer {
  padding: 56px 0 24px;
  color: #7c2d12;
  background: linear-gradient(180deg, #fff7ed, #ffedd5);
  border-top: 1px solid rgba(251, 146, 60, 0.18);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 30px;
}

.site-footer h3 {
  margin: 0 0 12px;
}

.site-footer a {
  display: block;
  margin: 6px 0;
  font-weight: 800;
}

.site-footer p {
  max-width: 460px;
  color: var(--muted);
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 28px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(251, 146, 60, 0.18);
  color: var(--muted);
  text-align: center;
}

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

@media (max-width: 1100px) {
  .header-search {
    min-width: 220px;
  }

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

  .hero-slide {
    grid-template-columns: 1fr 280px;
  }

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

  .detail-side {
    grid-template-columns: 260px 1fr;
  }
}

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

  .mobile-toggle {
    display: block;
    margin-left: auto;
  }

  .hero-slider,
  .hero-slides,
  .hero-slide {
    min-height: auto;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    padding: 70px 0 150px;
  }

  .hero-poster {
    display: none;
  }

  .hero-controls {
    display: block;
    margin-top: -130px;
  }

  .hero-rail {
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

  .section-head,
  .two-column,
  .footer-grid,
  .category-grid,
  .category-overview-grid,
  .detail-side {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .movie-grid,
  .all-list,
  .highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .detail-title-row {
    display: grid;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 22px, 1180px);
  }

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

  .hero-content h1 {
    font-size: 42px;
  }

  .movie-grid,
  .all-list,
  .highlight-grid {
    grid-template-columns: 1fr;
  }

  .ranking-item,
  .ranking-row {
    grid-template-columns: 1fr;
  }

  .ranking-meta {
    display: none;
  }

  .detail-card {
    padding: 22px;
  }

  .side-related .movie-card {
    grid-template-columns: 78px 1fr;
  }
}
