:root {
  --sky-50: #f0f9ff;
  --sky-100: #e0f2fe;
  --sky-400: #38bdf8;
  --sky-500: #0ea5e9;
  --sky-600: #0284c7;
  --cyan-400: #22d3ee;
  --blue-500: #3b82f6;
  --text: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --card: #ffffff;
  --soft: #f8fafc;
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  background: linear-gradient(180deg, var(--sky-50) 0%, #ffffff 42%, #ffffff 100%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(16px);
}

.header-inner {
  max-width: 1280px;
  height: 68px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  font-weight: 800;
}

.brand-icon {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--sky-500), var(--cyan-400));
  border-radius: 12px;
  box-shadow: 0 12px 26px rgba(14, 165, 233, 0.28);
}

.brand-text {
  font-size: 24px;
  line-height: 1;
  background: linear-gradient(90deg, var(--sky-500), var(--cyan-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

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

.nav-link {
  color: #334155;
  font-weight: 650;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--sky-500);
}

.nav-link:hover {
  transform: translateY(-1px);
}

.header-search,
.mobile-search {
  display: flex;
  align-items: center;
  position: relative;
}

.header-search input,
.mobile-search input,
.filter-bar input,
.filter-bar select {
  width: 260px;
  height: 42px;
  padding: 0 46px 0 18px;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  outline: none;
  color: #0f172a;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input:focus,
.mobile-search input:focus,
.filter-bar input:focus,
.filter-bar select:focus {
  border-color: var(--sky-500);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.14);
}

.header-search button {
  position: absolute;
  right: 8px;
  width: 32px;
  height: 32px;
  border: 0;
  color: #64748b;
  background: transparent;
  cursor: pointer;
  font-size: 22px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  color: #0f172a;
  background: #e0f2fe;
  font-size: 20px;
  cursor: pointer;
}

.mobile-panel {
  display: none;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 18px;
}

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

.mobile-panel nav {
  display: grid;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.mobile-search {
  gap: 10px;
}

.mobile-search input {
  width: 100%;
  padding-right: 18px;
}

.mobile-search button {
  height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: var(--sky-500);
  font-weight: 700;
}

.hero-carousel {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  background: linear-gradient(110deg, var(--sky-400), var(--cyan-400), var(--blue-500));
}

.hero-carousel::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image: radial-gradient(circle at 20px 20px, rgba(255, 255, 255, 0.34) 0 4px, transparent 5px);
  background-size: 58px 58px;
  pointer-events: none;
}

.hero-bg-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
  opacity: 0.34;
  background: #ffffff;
}

.hero-orb-one {
  width: 260px;
  height: 260px;
  left: 8%;
  bottom: -90px;
}

.hero-orb-two {
  width: 190px;
  height: 190px;
  right: 14%;
  top: 80px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 74px 24px 82px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 52px;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateX(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 32px 24px;
  z-index: -1;
  border-radius: 38px;
  background-image: linear-gradient(90deg, rgba(14, 165, 233, 0.9), rgba(34, 211, 238, 0.66), rgba(59, 130, 246, 0.38)), var(--poster);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

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

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

.hero-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--sky-600);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-kicker {
  color: #ffffff;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  backdrop-filter: blur(12px);
}

.hero-copy h1 {
  margin: 0 0 22px;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.hero-copy p {
  max-width: 680px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(17px, 2vw, 24px);
  line-height: 1.75;
}

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

.hero-tags span,
.detail-meta span,
.tag-row span {
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.hero-tags span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
}

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

.primary-btn,
.ghost-btn,
.ghost-dark-btn,
.section-more,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.primary-btn {
  color: var(--sky-600);
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(14, 165, 233, 0.22);
}

.primary-btn:hover,
.ghost-btn:hover,
.ghost-dark-btn:hover,
.section-more:hover,
.text-link:hover {
  transform: translateY(-2px);
}

.ghost-btn {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
}

.ghost-dark-btn {
  color: var(--sky-600);
  background: #e0f2fe;
}

.hero-poster {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  position: relative;
  overflow: hidden;
  padding: 28px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 30px;
  background-image: linear-gradient(180deg, rgba(15, 23, 42, 0.02), rgba(15, 23, 42, 0.76)), var(--poster);
  background-size: cover;
  background-position: center;
  box-shadow: 0 28px 64px rgba(15, 23, 42, 0.22);
  transform: rotate(2deg);
}

.hero-poster strong {
  font-size: 28px;
  line-height: 1.25;
}

.hero-poster em {
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
}

.hero-poster-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, transparent 0 45%, rgba(255, 255, 255, 0.18) 52%, transparent 60%);
  transform: translateX(-100%);
  animation: shine 4s linear infinite;
}

@keyframes shine {
  0%, 45% { transform: translateX(-120%); }
  75%, 100% { transform: translateX(120%); }
}

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

.hero-dots button {
  width: 38px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  cursor: pointer;
}

.hero-dots button.is-active {
  background: #ffffff;
}

.content-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 24px;
}

.section-soft {
  max-width: none;
  background: linear-gradient(180deg, #ffffff, var(--sky-50));
}

.section-soft > * {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

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

.section-head h2,
.panel-head h2,
.related-panel h2,
.player-section h2,
.detail-article h2,
.prose-section h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.section-head p,
.prose-section p {
  max-width: 760px;
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.section-more,
.text-link {
  color: var(--sky-600);
  background: #e0f2fe;
}

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

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

.movie-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 24px;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.movie-card:hover {
  border-color: rgba(14, 165, 233, 0.36);
  box-shadow: 0 28px 54px rgba(15, 23, 42, 0.13);
  transform: translateY(-7px);
}

.poster-frame {
  position: relative;
  display: block;
  min-height: 300px;
  overflow: hidden;
  background-image: linear-gradient(180deg, rgba(14, 165, 233, 0.06), rgba(15, 23, 42, 0.68)), var(--poster);
  background-size: cover;
  background-position: center;
}

.poster-frame::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.64), transparent);
}

.year-badge,
.rank-badge,
.play-chip {
  position: absolute;
  z-index: 3;
  display: inline-grid;
  place-items: center;
  color: #ffffff;
  border-radius: 999px;
  font-weight: 850;
}

.year-badge {
  top: 14px;
  right: 14px;
  min-width: 58px;
  height: 30px;
  padding: 0 10px;
  background: rgba(15, 23, 42, 0.54);
  backdrop-filter: blur(10px);
}

.rank-badge {
  top: 14px;
  left: 14px;
  height: 30px;
  padding: 0 12px;
  background: linear-gradient(90deg, #f97316, #f43f5e);
}

.play-chip {
  left: 50%;
  top: 50%;
  width: 58px;
  height: 58px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--sky-600);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.22);
  transform: translate(-50%, -50%) scale(0.92);
  opacity: 0;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

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

.movie-info {
  padding: 18px;
}

.movie-meta {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--sky-600);
  font-size: 13px;
  font-weight: 800;
}

.movie-info h2 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.35;
}

.movie-info h2 a:hover {
  color: var(--sky-500);
}

.movie-info p {
  min-height: 48px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.tag-row span {
  color: var(--sky-600);
  background: #e0f2fe;
}

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

.category-tile {
  position: relative;
  min-height: 180px;
  overflow: hidden;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  color: #ffffff;
  border-radius: 28px;
  background-image: linear-gradient(135deg, rgba(14, 165, 233, 0.92), rgba(34, 211, 238, 0.62), rgba(15, 23, 42, 0.42)), var(--poster);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.category-tile:hover {
  transform: translateY(-6px) scale(1.01);
}

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

.category-tile strong {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
}

.category-tile em {
  font-style: normal;
  font-weight: 850;
}

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

.ranking-panel,
.related-panel,
.detail-article,
.player-section,
.prose-section {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 28px;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

.ranking-panel {
  position: sticky;
  top: 94px;
  padding: 24px;
}

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

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

.panel-head a {
  color: var(--sky-600);
  font-weight: 800;
  white-space: nowrap;
}

.rank-row {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 8px 12px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.rank-num {
  grid-row: span 2;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--sky-500), var(--cyan-400));
  border-radius: 14px;
  font-weight: 900;
}

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

.rank-kind,
.rank-year {
  color: var(--muted);
  font-size: 13px;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(110deg, var(--sky-500), var(--cyan-400), var(--blue-500));
}

.page-hero {
  max-width: 1280px;
  min-height: 300px;
  margin: 34px auto 0;
  padding: 64px 48px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  border-radius: 36px;
  box-shadow: var(--shadow);
}

.page-hero h1 {
  max-width: 780px;
  margin: 0 0 16px;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.8;
}

.page-hero .eyebrow {
  color: #ffffff;
}

.soft-hero,
.search-hero,
.category-hero,
.ranking-hero {
  background-image: radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.38), transparent 28%), linear-gradient(110deg, var(--sky-500), var(--cyan-400), var(--blue-500));
}

.category-overview-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.08);
}

.category-cover {
  min-height: 210px;
  padding: 26px;
  display: flex;
  align-items: flex-end;
  color: #ffffff;
  background-image: linear-gradient(180deg, rgba(14, 165, 233, 0.08), rgba(15, 23, 42, 0.62)), var(--poster);
  background-size: cover;
  background-position: center;
}

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

.category-overview-body {
  padding: 24px;
}

.category-overview-body h2 {
  margin: 0 0 10px;
  font-size: 24px;
}

.category-overview-body p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.8;
}

.category-samples {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  color: #334155;
  font-weight: 650;
}

.filter-bar {
  display: flex;
  gap: 14px;
  margin-bottom: 28px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
}

.filter-bar input {
  flex: 1;
  min-width: 220px;
  width: 100%;
}

.filter-bar select {
  width: 180px;
  padding-right: 18px;
}

.search-item.is-hidden {
  display: none;
}

.detail-hero {
  min-height: 540px;
  background-image: linear-gradient(90deg, rgba(14, 165, 233, 0.94), rgba(34, 211, 238, 0.68), rgba(15, 23, 42, 0.52)), var(--poster);
  background-size: cover;
  background-position: center;
}

.detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.2), transparent 30%);
}

.detail-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 54px 24px 74px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 86px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 750;
}

.breadcrumb a:hover {
  color: #ffffff;
}

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

.detail-copy .eyebrow {
  color: #ffffff;
}

.detail-copy h1 {
  margin: 0 0 20px;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.detail-one-line {
  max-width: 820px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 22px;
  line-height: 1.7;
}

.detail-meta span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.17);
}

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

.detail-tags span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.17);
}

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

.detail-main {
  display: grid;
  gap: 28px;
}

.player-section,
.detail-article,
.related-panel,
.prose-section {
  padding: 26px;
}

.player-section h2,
.detail-article h2,
.related-panel h2,
.prose-section h2 {
  margin-bottom: 18px;
  font-size: 28px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: #020617;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 24px 58px rgba(15, 23, 42, 0.22);
}

.player-shell video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #020617;
  cursor: pointer;
}

.player-cover {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  gap: 14px;
  padding: 24px;
  color: #ffffff;
  border: 0;
  background-image: linear-gradient(180deg, rgba(2, 6, 23, 0.22), rgba(2, 6, 23, 0.75)), var(--poster);
  background-size: cover;
  background-position: center;
  cursor: pointer;
}

.player-cover-title {
  max-width: 80%;
  text-align: center;
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.18;
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.34);
}

.player-play {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  color: var(--sky-600);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 999px;
  box-shadow: 0 20px 50px rgba(2, 6, 23, 0.32);
  font-size: 34px;
}

.player-shell.is-playing .player-cover {
  display: none;
}

.detail-article p,
.prose-section p {
  color: #334155;
  font-size: 17px;
  line-height: 2;
}

.related-panel {
  position: sticky;
  top: 94px;
}

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

.small-card {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 14px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.small-card:hover {
  border-color: rgba(14, 165, 233, 0.4);
  transform: translateX(4px);
}

.small-cover {
  min-height: 96px;
  border-radius: 14px;
  background-image: linear-gradient(180deg, rgba(14, 165, 233, 0.1), rgba(15, 23, 42, 0.55)), var(--poster);
  background-size: cover;
  background-position: center;
}

.small-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.small-content strong {
  overflow: hidden;
  color: var(--text);
  font-size: 16px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.small-content em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  line-height: 1.5;
}

.prose-section {
  max-width: 920px;
}

.site-footer {
  margin-top: 40px;
  background: linear-gradient(180deg, #f8fafc, #eef7ff);
  border-top: 1px solid var(--line);
}

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

.footer-brand p {
  max-width: 420px;
  color: var(--muted);
  line-height: 1.8;
}

.footer-logo .brand-text {
  font-size: 22px;
}

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

.footer-links h2 {
  margin: 0 0 8px;
  font-size: 18px;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--sky-600);
}

.copyright {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 24px 32px;
  color: #64748b;
  border-top: 1px solid rgba(226, 232, 240, 0.85);
}

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

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

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

  .hero-poster {
    display: none;
  }

  .ranking-panel,
  .related-panel {
    position: static;
  }

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

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

@media (max-width: 760px) {
  .header-inner {
    height: 62px;
    padding: 0 16px;
  }

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

  .hero-carousel {
    min-height: 620px;
  }

  .hero-slide {
    padding: 58px 18px 84px;
  }

  .hero-slide::before {
    inset: 20px 14px;
    border-radius: 28px;
  }

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

  .hero-copy p {
    font-size: 17px;
  }

  .content-section {
    padding: 48px 16px;
  }

  .section-head,
  .page-hero {
    display: block;
  }

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

  .movie-grid,
  .compact-grid,
  .category-grid,
  .category-overview-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .poster-frame {
    min-height: 360px;
  }

  .page-hero {
    min-height: 260px;
    margin: 20px 16px 0;
    padding: 38px 24px;
    border-radius: 28px;
  }

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

  .filter-bar {
    display: grid;
  }

  .filter-bar select {
    width: 100%;
  }

  .breadcrumb {
    margin-bottom: 46px;
  }

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

  .detail-hero-inner {
    padding: 38px 16px 54px;
  }

  .detail-one-line {
    font-size: 18px;
  }

  .player-section,
  .detail-article,
  .related-panel,
  .prose-section {
    padding: 20px;
    border-radius: 22px;
  }

  .player-play {
    width: 68px;
    height: 68px;
    font-size: 28px;
  }
}
