* {
  box-sizing: border-box;
}

:root {
  --toffee-primary: #C87941;
  --toffee-secondary: #E5A76B;
  --toffee-light: #F5E6D3;
  --toffee-cream: #FFF8F0;
  --toffee-caramel: #B8784F;
  --toffee-brown: #8B5A3C;
  --toffee-dark: #6B4423;
  --cloud-white: #FFFFFF;
  --cloud-soft: #F9F9F9;
  --shadow-soft: 0 18px 45px rgba(107, 68, 35, 0.12);
  --shadow-card: 0 12px 30px rgba(107, 68, 35, 0.10);
  --radius-large: 28px;
  --radius-card: 20px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--toffee-dark);
  background:
    radial-gradient(circle at 10% 8%, rgba(229, 167, 107, 0.22), transparent 30%),
    radial-gradient(circle at 90% 0%, rgba(200, 121, 65, 0.18), transparent 28%),
    linear-gradient(135deg, var(--toffee-cream), var(--cloud-white) 48%, #FFF1DD);
  font-family: "PingFang SC", "Microsoft YaHei", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.toffee-card {
  border: 1px solid rgba(245, 230, 211, 0.82);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.toffee-card:hover {
  transform: translateY(-4px);
  border-color: rgba(229, 167, 107, 0.66);
  box-shadow: 0 22px 48px rgba(107, 68, 35, 0.16);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 240, 0.88);
  border-bottom: 1px solid rgba(245, 230, 211, 0.84);
  backdrop-filter: blur(16px);
}

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

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  font-weight: 800;
  color: var(--toffee-dark);
}

.logo-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--toffee-secondary), var(--toffee-primary));
  box-shadow: 0 12px 28px rgba(200, 121, 65, 0.28);
}

.logo-text {
  font-size: 22px;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, var(--toffee-dark), var(--toffee-primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.nav-link,
.mobile-nav-link {
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(107, 68, 35, 0.76);
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-nav-link:hover,
.mobile-nav-link.is-active {
  color: var(--toffee-primary);
  background: rgba(245, 230, 211, 0.72);
}

.header-search,
.mobile-search,
.large-search {
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(229, 167, 107, 0.36);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
}

.header-search input,
.mobile-search input,
.large-search input {
  width: 210px;
  border: 0;
  outline: 0;
  color: var(--toffee-dark);
  background: transparent;
  padding: 11px 14px;
}

.header-search button,
.mobile-search button,
.large-search button,
.filter-controls button {
  border: 0;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(135deg, var(--toffee-secondary), var(--toffee-primary));
  padding: 11px 18px;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  color: var(--toffee-primary);
  background: rgba(245, 230, 211, 0.75);
  cursor: pointer;
  font-size: 22px;
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 16px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
}

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

.home-hero {
  position: relative;
  min-height: 670px;
  overflow: hidden;
  isolation: isolate;
}

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

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease;
}

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

.hero-bg {
  background-position: center;
  background-size: cover;
  transform: scale(1.06);
  filter: blur(2px) saturate(1.08);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(43, 24, 12, 0.78), rgba(107, 68, 35, 0.58) 45%, rgba(255, 248, 240, 0.22)),
    linear-gradient(0deg, rgba(255, 248, 240, 0.96), transparent 34%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 46px;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  min-height: 670px;
  margin: 0 auto;
  padding: 108px 0 82px;
}

.hero-copy {
  color: #fff;
  max-width: 720px;
  animation: fadeIn 0.7s ease both;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  color: var(--toffee-primary);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy .eyebrow,
.detail-copy .eyebrow {
  color: #ffe0bd;
}

.hero-copy h1,
.sub-hero h1,
.detail-copy h1 {
  margin: 0;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hero-copy p {
  max-width: 660px;
  margin: 22px 0;
  font-size: clamp(18px, 2vw, 23px);
  color: rgba(255, 255, 255, 0.86);
}

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

.hero-tags span,
.tag-row span,
.detail-meta span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 800;
}

.hero-tags span,
.detail-meta span {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.tag-row span {
  color: var(--toffee-primary);
  background: rgba(245, 230, 211, 0.72);
}

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

.toffee-btn,
.ghost-btn,
.section-more,
.rank-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.toffee-btn {
  min-height: 48px;
  padding: 0 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--toffee-secondary), var(--toffee-primary));
  box-shadow: 0 14px 30px rgba(200, 121, 65, 0.25);
}

.ghost-btn {
  min-height: 48px;
  padding: 0 24px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.14);
}

.sub-hero .ghost-btn,
.topic-card .ghost-btn {
  color: var(--toffee-primary);
  border-color: rgba(200, 121, 65, 0.28);
  background: rgba(255, 255, 255, 0.76);
}

.toffee-btn:hover,
.ghost-btn:hover,
.section-more:hover,
.rank-action:hover {
  transform: translateY(-2px);
}

.hero-poster {
  position: relative;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.28);
  border-radius: 32px;
  box-shadow: 0 35px 80px rgba(40, 22, 10, 0.38);
  animation: float 6s ease-in-out infinite;
}

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

.hero-control {
  position: absolute;
  z-index: 4;
  top: 50%;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  cursor: pointer;
  font-size: 44px;
  line-height: 1;
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

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

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

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

.quick-search {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: 28px;
  align-items: center;
  margin-top: -46px;
  padding: 26px;
}

.quick-search h2,
.topic-card h2,
.filter-panel h2 {
  margin: 0 0 8px;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.18;
}

.quick-search p,
.topic-card p,
.filter-panel p,
.sub-hero p,
.category-panel p,
.category-tile p {
  margin: 0;
  color: rgba(107, 68, 35, 0.72);
}

.large-search input {
  width: 100%;
  min-height: 52px;
  padding-left: 20px;
}

.large-search button {
  min-height: 52px;
  white-space: nowrap;
  padding-inline: 24px;
}

.content-section {
  margin-top: 72px;
}

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

.section-heading.compact {
  align-items: center;
}

.section-title {
  position: relative;
  display: inline-block;
  margin: 0;
  color: var(--toffee-dark);
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.12;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--toffee-secondary), transparent);
}

.section-more {
  min-height: 40px;
  padding: 0 16px;
  color: var(--toffee-primary);
  background: rgba(245, 230, 211, 0.68);
}

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

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

.movie-card {
  overflow: hidden;
}

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, var(--toffee-light), var(--toffee-cream));
}

.poster-link img,
.rank-poster img,
.detail-poster img,
.category-cover-stack img {
  width: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, var(--toffee-light), var(--toffee-cream));
}

.poster-link img {
  aspect-ratio: 2 / 3;
  transition: transform 0.35s ease;
}

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

.poster-play {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(200, 121, 65, 0.92);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.18);
}

.card-rank {
  position: absolute;
  top: 12px;
  left: 12px;
  border-radius: 999px;
  padding: 6px 10px;
  color: #fff;
  background: rgba(107, 68, 35, 0.78);
}

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

.movie-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(107, 68, 35, 0.62);
  font-size: 12px;
  font-weight: 800;
}

.movie-card h3,
.rank-copy h3 {
  margin: 8px 0 8px;
  color: var(--toffee-dark);
  font-size: 18px;
  line-height: 1.28;
}

.movie-card h3 a:hover,
.rank-copy h3 a:hover,
.category-tile h3 a:hover,
.category-panel h2 a:hover {
  color: var(--toffee-primary);
}

.movie-card p,
.rank-copy p {
  display: -webkit-box;
  min-height: 3.2em;
  overflow: hidden;
  margin: 0 0 14px;
  color: rgba(107, 68, 35, 0.72);
  font-size: 14px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

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

.category-tile {
  padding: 22px;
}

.category-icon,
.category-icon.small {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--toffee-secondary), var(--toffee-primary));
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(200, 121, 65, 0.22);
}

.category-icon.small {
  width: 48px;
  height: 48px;
  margin: 0 0 12px;
  font-size: 18px;
}

.category-tile h3,
.category-panel h2 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.22;
}

.mini-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.mini-links a {
  max-width: 100%;
  overflow: hidden;
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--toffee-primary);
  background: rgba(245, 230, 211, 0.7);
  font-size: 12px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 26px;
  align-items: start;
}

.topic-card {
  position: sticky;
  top: 98px;
  padding: 30px;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 70px 92px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 12px;
}

.rank-num {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--toffee-secondary), var(--toffee-primary));
  font-size: 20px;
  font-weight: 900;
}

.rank-poster {
  overflow: hidden;
  border-radius: 14px;
}

.rank-poster img {
  aspect-ratio: 2 / 3;
}

.rank-copy h3 {
  margin-top: 4px;
}

.rank-action {
  min-height: 40px;
  padding: 0 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--toffee-secondary), var(--toffee-primary));
}

.sub-hero {
  padding: 76px 0 36px;
}

.sub-hero h1 {
  color: var(--toffee-dark);
}

.sub-hero p {
  max-width: 760px;
  margin-top: 16px;
  font-size: 18px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 800;
}

.sub-hero .breadcrumbs {
  color: rgba(107, 68, 35, 0.64);
}

.breadcrumbs a:hover {
  color: var(--toffee-secondary);
}

.category-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 70px;
}

.category-panel {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 22px;
  padding: 18px;
}

.category-cover-stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  overflow: hidden;
  border-radius: 18px;
}

.category-cover-stack img {
  height: 100%;
  min-height: 220px;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 560px);
  gap: 20px;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  margin: 24px auto 30px;
  padding: 24px;
  border: 1px solid rgba(245, 230, 211, 0.86);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-card);
}

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

.filter-controls input,
.filter-controls select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(229, 167, 107, 0.32);
  border-radius: 999px;
  outline: 0;
  color: var(--toffee-dark);
  background: rgba(255, 255, 255, 0.9);
  padding: 0 14px;
}

.empty-state {
  margin: 40px 0;
  border-radius: var(--radius-card);
  padding: 30px;
  text-align: center;
  color: rgba(107, 68, 35, 0.7);
  background: rgba(255, 255, 255, 0.82);
}

.detail-hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  isolation: isolate;
}

.detail-bg,
.detail-shade {
  position: absolute;
  inset: 0;
}

.detail-bg {
  background-position: center;
  background-size: cover;
  transform: scale(1.05);
  filter: blur(3px) saturate(1.08);
}

.detail-shade {
  background:
    linear-gradient(90deg, rgba(43, 24, 12, 0.82), rgba(107, 68, 35, 0.62), rgba(255, 248, 240, 0.24)),
    linear-gradient(0deg, rgba(255, 248, 240, 0.94), transparent 38%);
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
  padding: 88px 0 64px;
}

.detail-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 38px;
  align-items: center;
}

.detail-poster {
  overflow: hidden;
  padding: 8px;
}

.detail-poster img {
  aspect-ratio: 2 / 3;
  border-radius: 16px;
}

.detail-copy {
  color: #fff;
}

.detail-copy h1 {
  max-width: 860px;
}

.lead-text {
  max-width: 820px;
  margin: 18px 0 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
}

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

.player-section {
  margin-top: -46px;
  position: relative;
  z-index: 4;
}

.player-box {
  position: relative;
  overflow: hidden;
  background: #100b07;
}

.movie-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #100b07;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  color: #fff;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.58));
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.play-overlay span {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--toffee-secondary), var(--toffee-primary));
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.32);
  font-size: 36px;
  text-indent: 4px;
}

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

.detail-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 24px;
  margin-top: 40px;
}

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

.detail-text h2,
.detail-side h2,
.site-footer h2 {
  margin: 0 0 16px;
  color: var(--toffee-dark);
  font-size: 24px;
}

.detail-text p {
  margin: 0 0 16px;
  color: rgba(107, 68, 35, 0.78);
  font-size: 17px;
}

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

.detail-side dt {
  color: rgba(107, 68, 35, 0.56);
  font-weight: 900;
}

.detail-side dd {
  margin: 0;
  color: var(--toffee-dark);
  font-weight: 700;
}

.site-footer {
  margin-top: 76px;
  padding: 52px 0 24px;
  border-top: 1px solid rgba(245, 230, 211, 0.86);
  background: rgba(255, 248, 240, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 36px;
}

.footer-logo {
  margin-bottom: 14px;
}

.site-footer p {
  margin: 0;
  color: rgba(107, 68, 35, 0.68);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-tags {
  flex-direction: row;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(107, 68, 35, 0.74);
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--toffee-primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(245, 230, 211, 0.86);
}

.footer-bottom a {
  color: var(--toffee-primary);
  font-weight: 900;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .movie-grid,
  .movie-grid.full-grid,
  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .split-layout,
  .detail-content-grid,
  .filter-panel,
  .quick-search {
    grid-template-columns: 1fr;
  }

  .topic-card {
    position: static;
  }
}

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

  .menu-toggle {
    display: grid;
    place-items: center;
    margin-left: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding-top: 92px;
  }

  .hero-poster {
    display: none;
  }

  .hero-control {
    display: none;
  }

  .home-hero,
  .hero-content {
    min-height: 600px;
  }

  .category-panels,
  .footer-grid,
  .detail-layout {
    grid-template-columns: 1fr;
  }

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

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

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

  .logo-text {
    font-size: 18px;
  }

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

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

  .movie-card h3,
  .rank-copy h3 {
    font-size: 16px;
  }

  .movie-card p {
    font-size: 13px;
  }

  .rank-item {
    grid-template-columns: 48px 76px minmax(0, 1fr);
  }

  .rank-action {
    display: none;
  }

  .rank-num {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    font-size: 16px;
  }

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

  .category-cover-stack img {
    min-height: 160px;
  }

  .detail-hero-inner {
    padding-top: 70px;
  }

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

  .footer-bottom,
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}
