:root {
  --bg: #fff7ed;
  --surface: #ffffff;
  --ink: #1f2937;
  --muted: #6b7280;
  --line: rgba(251, 191, 36, 0.28);
  --brand: #d97706;
  --brand-dark: #92400e;
  --brand-soft: #fef3c7;
  --orange: #ea580c;
  --shadow: 0 24px 70px rgba(146, 64, 14, 0.18);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(253, 186, 116, 0.36), transparent 32rem),
    linear-gradient(180deg, #fff7ed 0%, #fffbeb 45%, #ffffff 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

img {
  width: 100%;
  height: auto;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 247, 237, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(217, 119, 6, 0.18);
}

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

.site-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-dark);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.site-logo {
  font-size: 22px;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(217, 119, 6, 0.36);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(251, 191, 36, 0.28);
}

.site-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  color: #7c2d12;
  font-weight: 700;
  transition: 0.2s ease;
}

.site-nav-link:hover,
.site-nav-link.is-active {
  background: #ffffff;
  color: var(--brand);
  box-shadow: 0 10px 24px rgba(146, 64, 14, 0.12);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(146, 64, 14, 0.12);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand-dark);
}

.mobile-panel {
  display: none;
  border-top: 1px solid rgba(217, 119, 6, 0.15);
  background: rgba(255, 247, 237, 0.96);
}

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

.mobile-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 16px 0 20px;
}

.mobile-links a {
  padding: 12px 14px;
  border-radius: 14px;
  background: #ffffff;
  color: var(--brand-dark);
  font-weight: 700;
}

.home-hero {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  background:
    linear-gradient(135deg, rgba(245, 158, 11, 0.96), rgba(234, 88, 12, 0.94)),
    radial-gradient(circle at 70% 20%, #fef3c7 0%, transparent 35%);
}

.home-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 160px;
  background: linear-gradient(0deg, #fff7ed, transparent);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.42;
  pointer-events: none;
}

.hero-glow-left {
  left: -80px;
  top: 90px;
  background: #fde68a;
}

.hero-glow-right {
  right: -70px;
  bottom: 80px;
  background: #fed7aa;
}

.hero-stage {
  position: relative;
  z-index: 1;
  min-height: 680px;
  display: grid;
  align-items: center;
  padding: 72px 0 110px;
}

.hero-slide {
  grid-area: 1 / 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 54px;
  align-items: center;
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

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

.hero-copy {
  color: #ffffff;
  max-width: 690px;
}

.hero-eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: #92400e;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.36);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.hero-copy h1 {
  font-size: clamp(42px, 6vw, 74px);
  line-height: 0.98;
  font-weight: 950;
  letter-spacing: -0.06em;
  margin-bottom: 14px;
}

.hero-copy h2 {
  font-size: clamp(26px, 3.3vw, 42px);
  line-height: 1.15;
  font-weight: 900;
  color: #fffbeb;
  margin-bottom: 18px;
}

.hero-copy p {
  max-width: 650px;
  font-size: 18px;
  line-height: 1.85;
  color: #fff7ed;
  margin-bottom: 24px;
}

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

.hero-tags span,
.detail-meta span,
.movie-meta-line span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.hero-tags span {
  color: #7c2d12;
  background: rgba(255, 255, 255, 0.82);
}

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

.primary-action,
.secondary-action,
.section-more,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: 0.2s ease;
}

.primary-action {
  color: var(--brand);
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(120, 53, 15, 0.22);
}

.primary-action:hover,
.secondary-action:hover,
.section-more:hover,
.text-link:hover {
  transform: translateY(-2px);
}

.secondary-action {
  color: #ffffff;
  background: rgba(146, 64, 14, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.hero-art {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(120, 53, 15, 0.36);
  transform: rotate(2deg);
  background: #78350f;
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, 0.42));
}

.hero-art img,
.movie-poster img,
.detail-poster-wrap img,
.category-covers img,
.page-hero-poster-stack img,
.ranking-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-controls {
  position: absolute;
  left: 0;
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 4;
}

.hero-arrow {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--brand-dark);
  font-size: 26px;
  font-weight: 900;
  transition: 0.2s ease;
}

.hero-arrow:hover {
  background: #ffffff;
  transform: translateY(-2px);
}

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

.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  transition: 0.2s ease;
}

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

.hero-mini-list {
  position: absolute;
  right: 0;
  bottom: 32px;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(520px, 48vw);
}

.hero-mini-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 10px;
  min-height: 72px;
  padding: 8px;
  border-radius: 18px;
  color: #ffffff;
  background: rgba(120, 53, 15, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 800;
  transition: 0.2s ease;
}

.hero-mini-card:hover {
  background: rgba(120, 53, 15, 0.42);
  transform: translateY(-2px);
}

.hero-mini-card img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 14px;
}

.intro-strip {
  margin-top: -58px;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.intro-strip a {
  display: grid;
  gap: 6px;
  min-height: 118px;
  padding: 26px;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.intro-strip strong {
  color: var(--brand-dark);
  font-size: 22px;
}

.intro-strip span {
  color: var(--muted);
  line-height: 1.65;
}

.content-section {
  padding: 72px 0;
}

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

.section-title-row h2,
.page-hero h1,
.detail-info h1 {
  color: #111827;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.section-title-row h2 {
  font-size: clamp(28px, 3vw, 42px);
}

.section-title-row p {
  max-width: 680px;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.8;
}

.section-more,
.text-link {
  color: #ffffff;
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  box-shadow: 0 14px 30px rgba(217, 119, 6, 0.18);
}

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

.category-tile {
  min-height: 180px;
  padding: 24px;
  border-radius: 28px;
  color: #7c2d12;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(254, 243, 199, 0.78)),
    radial-gradient(circle at top right, rgba(251, 146, 60, 0.24), transparent 50%);
  border: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(146, 64, 14, 0.1);
  transition: 0.2s ease;
}

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

.category-tile strong {
  display: block;
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 950;
}

.category-tile span {
  color: #92400e;
  line-height: 1.7;
}

.search-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 14px;
  margin-bottom: 28px;
  padding: 14px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(146, 64, 14, 0.09);
}

.search-input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 18px;
  background: #fff7ed;
  color: var(--brand);
}

.search-input-wrap input,
.movie-category-filter {
  width: 100%;
  height: 52px;
  outline: none;
  border: 0;
  background: transparent;
  color: #7c2d12;
  font-weight: 700;
}

.movie-category-filter {
  padding: 0 16px;
  border-radius: 18px;
  background: #fff7ed;
}

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

.movie-card {
  min-width: 0;
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(251, 191, 36, 0.24);
  box-shadow: 0 20px 45px rgba(146, 64, 14, 0.1);
  transition: 0.2s ease;
}

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

.movie-poster {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: #fed7aa;
}

.movie-poster img {
  transition: transform 0.35s ease;
}

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

.poster-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.46));
  opacity: 0.68;
}

.rank-badge {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 3;
  min-width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, #ef4444, #f59e0b);
  font-style: normal;
  font-weight: 950;
  box-shadow: 0 12px 22px rgba(127, 29, 29, 0.25);
}

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

.movie-meta-line {
  margin-bottom: 10px;
}

.movie-meta-line span {
  color: #92400e;
  background: #fef3c7;
}

.movie-card h3 {
  min-height: 48px;
  font-size: 16px;
  line-height: 1.45;
  color: #111827;
  font-weight: 900;
}

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

.movie-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
  min-height: 64px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}

.tag-row span {
  color: var(--brand-dark);
  background: #fff7ed;
  border: 1px solid rgba(251, 191, 36, 0.26);
}

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

.movie-card-compact p {
  display: none;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 30px;
  align-items: start;
}

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

.rank-panel {
  position: sticky;
  top: 94px;
  border-radius: 28px;
  padding: 22px;
  background: #ffffff;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

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

.rank-panel-head span {
  color: #111827;
  font-size: 22px;
  font-weight: 950;
}

.rank-panel-head a {
  color: var(--brand);
  font-weight: 800;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 8px;
  border-radius: 14px;
  transition: 0.2s ease;
}

.rank-row:hover {
  background: #fff7ed;
}

.rank-row span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  color: #ffffff;
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  font-weight: 950;
}

.rank-row strong {
  min-width: 0;
  color: #111827;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-row em {
  color: var(--brand);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0;
  background:
    radial-gradient(circle at 78% 12%, rgba(253, 186, 116, 0.34), transparent 28rem),
    linear-gradient(135deg, #fff7ed, #fef3c7);
  border-bottom: 1px solid rgba(217, 119, 6, 0.14);
}

.small-hero h1,
.page-hero h1 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
  margin: 4px 0 18px;
}

.page-hero p {
  max-width: 760px;
  color: #92400e;
  font-size: 18px;
  line-height: 1.85;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  align-items: center;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #92400e;
  font-size: 14px;
  font-weight: 800;
}

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

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.inline-links a,
.inline-story-links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  color: #7c2d12;
  background: #ffffff;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 800;
}

.page-hero-poster-stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 128px;
  gap: 12px;
  transform: rotate(-2deg);
}

.page-hero-poster-stack a {
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 18px 38px rgba(146, 64, 14, 0.2);
}

.page-hero-poster-stack a:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 22px;
  padding: 18px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(146, 64, 14, 0.1);
}

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

.category-covers img {
  aspect-ratio: 2 / 3;
  border-radius: 14px;
}

.category-overview-card h2 {
  margin: 4px 0 10px;
  font-size: 24px;
  color: #111827;
  font-weight: 950;
}

.category-overview-card p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 18px;
}

.detail-hero {
  padding: 60px 0 52px;
}

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

.detail-poster-wrap {
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: var(--shadow);
  background: #fed7aa;
}

.detail-info h1 {
  font-size: clamp(34px, 4.8vw, 60px);
  line-height: 1.08;
  margin-bottom: 18px;
}

.detail-one-line {
  max-width: 820px;
  color: #92400e;
  font-size: 18px;
  line-height: 1.85;
}

.detail-meta {
  margin-top: 22px;
}

.detail-meta span {
  color: #7c2d12;
  background: #ffffff;
  border: 1px solid rgba(251, 191, 36, 0.4);
}

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

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

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background: #111827;
  box-shadow: 0 28px 70px rgba(17, 24, 39, 0.26);
}

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

.video-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: radial-gradient(circle, rgba(17, 24, 39, 0.1), rgba(17, 24, 39, 0.5));
  transition: 0.2s ease;
}

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

.play-pulse {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 999px;
  color: var(--brand);
  background: rgba(255, 255, 255, 0.94);
  font-size: 34px;
  font-weight: 950;
  box-shadow: 0 0 0 16px rgba(255, 255, 255, 0.16), 0 24px 44px rgba(0, 0, 0, 0.25);
}

.detail-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.story-card {
  padding: 28px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(146, 64, 14, 0.08);
}

.story-card h2 {
  margin-bottom: 14px;
  color: #111827;
  font-size: 24px;
  font-weight: 950;
}

.story-card p {
  color: #4b5563;
  font-size: 17px;
  line-height: 1.95;
}

.inline-story-links div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ranking-feature-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.ranking-feature {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  border-radius: 24px;
  background: #78350f;
  box-shadow: 0 18px 40px rgba(146, 64, 14, 0.18);
}

.ranking-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.72));
}

.ranking-feature span {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #ffffff;
  color: var(--brand);
  font-weight: 950;
}

.ranking-feature strong {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 14px;
  z-index: 2;
  color: #ffffff;
  font-weight: 900;
  line-height: 1.4;
}

.site-footer {
  margin-top: 40px;
  padding: 52px 0 0;
  background: #7c2d12;
  color: #fffbeb;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1.4fr;
  gap: 26px;
  padding-bottom: 40px;
}

.footer-logo {
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 14px;
}

.site-footer p {
  color: #fed7aa;
  line-height: 1.8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: start;
}

.footer-links a {
  color: #ffedd5;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 9px 13px;
  font-weight: 800;
}

.footer-links a:hover {
  background: rgba(255, 255, 255, 0.15);
}

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

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

@media (max-width: 1120px) {
  .movie-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hero-mini-list {
    display: none;
  }

  .split-section {
    grid-template-columns: 1fr;
  }

  .rank-panel {
    position: static;
  }

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

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

  .menu-toggle {
    display: inline-flex;
  }

  .home-hero,
  .hero-stage {
    min-height: auto;
  }

  .hero-stage {
    padding: 44px 0 92px;
  }

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

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

  .hero-controls {
    left: 0;
    right: 0;
    justify-content: center;
  }

  .intro-strip,
  .category-grid,
  .category-overview-grid,
  .footer-grid,
  .page-hero-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .page-hero-poster-stack {
    max-width: 420px;
  }

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

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

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

  .detail-poster-wrap {
    width: min(300px, 76vw);
  }
}

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

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

  .logo-mark {
    width: 34px;
    height: 34px;
  }

  .hero-copy h1 {
    font-size: 40px;
  }

  .hero-copy p,
  .page-hero p,
  .detail-one-line {
    font-size: 16px;
  }

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

  .movie-grid,
  .compact-grid,
  .ranking-feature-grid {
    grid-template-columns: 1fr;
  }

  .movie-card {
    display: grid;
    grid-template-columns: 128px 1fr;
  }

  .movie-poster {
    height: 100%;
    min-height: 190px;
  }

  .movie-card h3 {
    min-height: auto;
  }

  .movie-card p {
    min-height: auto;
  }

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

  .story-card {
    padding: 22px;
  }
}
