:root {
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-850: #111827;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-500: #64748b;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --orange: #f97316;
  --orange-dark: #ea580c;
  --pink: #db2777;
  --blue: #2563eb;
  --teal: #0d9488;
  --cyan: #0891b2;
  --violet: #7c3aed;
  --rose: #e11d48;
  --emerald: #059669;
  --text: #111827;
  --muted: #64748b;
  --line: rgba(148, 163, 184, 0.28);
  --shadow: 0 22px 55px rgba(15, 23, 42, 0.14);
  --soft-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 42%, #fff7ed 100%);
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.98), rgba(15, 23, 42, 0.98));
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.28);
  border-bottom: 1px solid rgba(148, 163, 184, 0.22);
  backdrop-filter: blur(18px);
}

.nav-bar {
  width: min(1240px, calc(100% - 32px));
  height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--orange), var(--pink));
  box-shadow: 0 12px 25px rgba(249, 115, 22, 0.35);
  color: #ffffff;
  font-size: 15px;
}

.brand-text {
  font-size: 20px;
  background: linear-gradient(90deg, #fb923c, #ec4899);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.nav-links a,
.nav-item > a {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 650;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-item > a:hover {
  color: #fb923c;
}

.nav-item {
  position: relative;
  padding: 22px 0;
}

.nav-menu {
  position: absolute;
  top: 62px;
  left: 0;
  width: 210px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.22s ease;
}

.has-menu:hover .nav-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
}

.nav-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.nav-search {
  position: relative;
  width: 260px;
}

.nav-search input,
.mobile-search input,
.hero-search input,
.search-panel input,
.filter-input {
  width: 100%;
  border: 0;
  outline: 0;
  border-radius: 999px;
}

.nav-search input {
  padding: 11px 44px 11px 18px;
  background: rgba(51, 65, 85, 0.92);
  color: #ffffff;
}

.nav-search input::placeholder,
.mobile-search input::placeholder {
  color: rgba(226, 232, 240, 0.68);
}

.nav-search button {
  position: absolute;
  right: 7px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #cbd5e1;
}

.nav-search button:hover {
  color: #fb923c;
}

.menu-button {
  display: none;
  margin-left: auto;
  border: 0;
  border-radius: 12px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.mobile-menu {
  display: none;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 18px;
}

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

.mobile-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 12px;
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.04);
}

.mobile-search {
  display: flex;
  gap: 10px;
  margin-bottom: 4px;
}

.mobile-search input {
  padding: 12px 16px;
  color: #ffffff;
  background: rgba(51, 65, 85, 0.92);
}

.mobile-search button {
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  padding: 0 16px;
  background: linear-gradient(90deg, var(--orange), var(--pink));
}

.hero-slider {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  color: #ffffff;
  background: var(--slate-950);
}

.hero-backgrounds,
.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1s ease, transform 6s ease;
}

.hero-bg.is-active {
  opacity: 0.45;
  transform: scale(1);
}

.hero-overlay {
  background:
    radial-gradient(circle at 82% 28%, rgba(236, 72, 153, 0.34), transparent 28%),
    radial-gradient(circle at 22% 20%, rgba(249, 115, 22, 0.34), transparent 34%),
    linear-gradient(90deg, rgba(2, 6, 23, 0.94) 0%, rgba(15, 23, 42, 0.82) 44%, rgba(15, 23, 42, 0.54) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: 44px;
  padding: 74px 0 56px;
}

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

.hero-kicker,
.section-kicker,
.page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fed7aa;
  background: rgba(249, 115, 22, 0.16);
  border: 1px solid rgba(251, 146, 60, 0.26);
}

.hero-copy h1 {
  margin: 22px 0 18px;
  font-size: clamp(40px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero-copy p {
  max-width: 640px;
  color: rgba(226, 232, 240, 0.9);
  font-size: 18px;
}

.hero-tags,
.detail-tags,
.movie-tags,
.footer-tags,
.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags {
  margin-top: 24px;
}

.hero-tags a,
.detail-tags span,
.movie-tags span,
.footer-tags a,
.category-pills a {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-weight: 700;
}

.hero-tags a {
  padding: 9px 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

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

.btn-primary,
.btn-secondary,
.btn-soft {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn-primary {
  padding: 14px 24px;
  color: #ffffff;
  background: linear-gradient(90deg, var(--orange), var(--pink));
  box-shadow: 0 18px 40px rgba(249, 115, 22, 0.34);
}

.btn-secondary {
  padding: 13px 22px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-soft {
  padding: 11px 18px;
  color: var(--orange-dark);
  background: #fff7ed;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-soft:hover {
  transform: translateY(-2px);
}

.hero-search {
  position: relative;
  margin-top: 28px;
  max-width: 570px;
}

.hero-search input {
  padding: 18px 160px 18px 22px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  box-shadow: 0 18px 42px rgba(2, 6, 23, 0.2);
}

.hero-search button {
  position: absolute;
  right: 7px;
  top: 7px;
  bottom: 7px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  padding: 0 24px;
  font-weight: 900;
  background: linear-gradient(90deg, var(--orange), var(--pink));
}

.hero-featured {
  position: relative;
  min-height: 470px;
}

.hero-card {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  overflow: hidden;
  border-radius: 32px;
  background: rgba(15, 23, 42, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 30px 80px rgba(2, 6, 23, 0.42);
  backdrop-filter: blur(24px);
  opacity: 0;
  transform: translateX(26px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.24), rgba(219, 39, 119, 0.24));
}

.hero-card-body {
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-card-body h2 {
  margin: 10px 0 14px;
  font-size: 32px;
  line-height: 1.18;
}

.hero-card-body p {
  color: rgba(226, 232, 240, 0.9);
}

.hero-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 4px;
}

.hero-card-meta span {
  padding: 6px 10px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.12);
}

.hero-controls {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-arrow,
.hero-dot {
  border: 0;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.hero-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 20px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
  opacity: 0.58;
  transition: width 0.22s ease, opacity 0.22s ease;
}

.hero-dot.is-active {
  width: 34px;
  opacity: 1;
  background: linear-gradient(90deg, var(--orange), var(--pink));
}

.section {
  padding: 70px 0;
}

.section-muted {
  background: rgba(255, 255, 255, 0.52);
}

.section-dark {
  background: linear-gradient(135deg, var(--slate-950), var(--slate-800));
  color: #ffffff;
}

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

.section-head h2 {
  margin: 10px 0 8px;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.section-head p {
  max-width: 720px;
  color: var(--muted);
}

.section-dark .section-head p {
  color: rgba(226, 232, 240, 0.78);
}

.section-link {
  flex: 0 0 auto;
  color: var(--orange-dark);
  font-weight: 900;
}

.section-dark .section-link {
  color: #fdba74;
}

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

.movie-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--soft-shadow);
  border: 1px solid rgba(226, 232, 240, 0.76);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(249, 115, 22, 0.28);
}

.poster-wrap {
  position: relative;
  aspect-ratio: 2 / 2.75;
  overflow: hidden;
  background: linear-gradient(135deg, #111827, #334155);
}

.poster-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.movie-card:hover .poster-wrap img {
  transform: scale(1.07);
  filter: brightness(0.82);
}

.poster-badge,
.poster-score,
.poster-play {
  position: absolute;
  z-index: 2;
}

.poster-badge {
  left: 12px;
  top: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  background: linear-gradient(90deg, var(--orange), var(--pink));
}

.poster-score {
  right: 12px;
  top: 12px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #fde68a;
  font-size: 12px;
  font-weight: 900;
  background: rgba(15, 23, 42, 0.8);
}

.poster-play {
  left: 50%;
  top: 50%;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.84);
  color: #ffffff;
  background: rgba(249, 115, 22, 0.88);
  box-shadow: 0 16px 35px rgba(249, 115, 22, 0.36);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.movie-body {
  padding: 18px;
}

.movie-body h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.32;
}

.movie-body h3 a:hover {
  color: var(--orange-dark);
}

.movie-body p {
  min-height: 48px;
  margin: 0 0 12px;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-meta {
  display: flex;
  gap: 10px;
  color: #475569;
  font-size: 13px;
  font-weight: 800;
}

.movie-tags {
  margin-top: 12px;
}

.movie-tags span {
  padding: 5px 8px;
  color: #475569;
  background: #f1f5f9;
  font-size: 12px;
}

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

.category-card {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  padding: 24px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.82);
  box-shadow: var(--soft-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.category-card::after {
  content: "";
  position: absolute;
  right: -34px;
  top: -34px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  opacity: 0.16;
  background: linear-gradient(135deg, var(--orange), var(--pink));
}

.category-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--orange), var(--pink));
  box-shadow: 0 14px 28px rgba(249, 115, 22, 0.24);
}

.category-card h3 {
  margin: 18px 0 8px;
  font-size: 23px;
}

.category-card p {
  color: var(--muted);
  margin: 0 0 18px;
}

.category-card span {
  color: var(--orange-dark);
  font-weight: 900;
}

.ranking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
  gap: 28px;
}

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

.ranking-row {
  display: grid;
  grid-template-columns: 56px 82px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.82);
  box-shadow: var(--soft-shadow);
}

.rank-no {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #ffffff;
  font-weight: 950;
  background: linear-gradient(135deg, var(--orange), var(--pink));
}

.rank-cover {
  width: 82px;
  height: 104px;
  overflow: hidden;
  border-radius: 14px;
  background: var(--slate-800);
}

.rank-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rank-info h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.rank-info p {
  margin: 0;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rank-score {
  font-weight: 950;
  color: var(--orange-dark);
}

.page-hero {
  padding: 66px 0 54px;
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 22%, rgba(249, 115, 22, 0.32), transparent 32%),
    radial-gradient(circle at 88% 20%, rgba(219, 39, 119, 0.28), transparent 30%),
    linear-gradient(135deg, var(--slate-950), var(--slate-800));
}

.page-hero-inner {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

.page-hero h1 {
  margin: 14px 0 12px;
  max-width: 900px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.page-hero p {
  max-width: 800px;
  color: rgba(226, 232, 240, 0.86);
  font-size: 18px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

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

.filter-panel,
.search-panel {
  margin: -28px auto 38px;
  padding: 22px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.filter-row,
.search-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.filter-input,
.search-panel input {
  flex: 1 1 280px;
  padding: 14px 18px;
  background: #f1f5f9;
  color: var(--text);
}

.filter-chip,
.search-submit {
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 900;
  color: #475569;
  background: #f1f5f9;
  transition: all 0.2s ease;
}

.filter-chip.is-active,
.search-submit {
  color: #ffffff;
  background: linear-gradient(90deg, var(--orange), var(--pink));
}

.search-options {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.search-options select {
  border: 0;
  outline: 0;
  padding: 12px 16px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #334155;
  font-weight: 800;
}

.detail-page {
  padding: 38px 0 74px;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(310px, 0.72fr);
  gap: 30px;
  align-items: start;
}

.player-card,
.detail-card,
.side-card {
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(226, 232, 240, 0.84);
  overflow: hidden;
}

.player-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #020617;
}

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

.player-mask {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #ffffff;
  border: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.32), rgba(2, 6, 23, 0.78));
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

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

.play-circle {
  width: 78px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), var(--pink));
  box-shadow: 0 18px 46px rgba(249, 115, 22, 0.42);
  font-size: 28px;
}

.player-mask strong {
  max-width: 86%;
  text-align: center;
  font-size: clamp(20px, 4vw, 34px);
  line-height: 1.2;
}

.player-status {
  display: none;
  padding: 14px 18px;
  color: #ffffff;
  background: #b91c1c;
}

.player-status.is-visible {
  display: block;
}

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

.detail-card h1 {
  margin: 12px 0 12px;
  font-size: clamp(30px, 4.4vw, 52px);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.detail-lead {
  margin: 0 0 20px;
  color: #475569;
  font-size: 18px;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 20px;
}

.detail-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  color: #475569;
  background: #f1f5f9;
  font-weight: 850;
}

.detail-content h2 {
  margin: 28px 0 10px;
  font-size: 24px;
}

.detail-content p {
  margin: 0;
  color: #334155;
}

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

.detail-tags span {
  padding: 8px 12px;
  color: var(--orange-dark);
  background: #fff7ed;
}

.side-card {
  padding: 20px;
}

.detail-poster {
  overflow: hidden;
  border-radius: 22px;
  background: var(--slate-800);
}

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

.info-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.info-list div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e2e8f0;
  color: #475569;
}

.info-list strong {
  color: var(--text);
}

.related-section {
  margin-top: 34px;
}

.related-section h2 {
  margin: 0 0 20px;
  font-size: 30px;
}

.empty-state {
  padding: 72px 24px;
  text-align: center;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
}

.empty-state h2 {
  margin: 0 0 8px;
}

.empty-state p {
  color: var(--muted);
}

.pagination-note {
  display: none;
}

@media (max-width: 1100px) {
  .nav-search {
    width: 210px;
  }

  .hero-content,
  .detail-grid,
  .ranking-layout {
    grid-template-columns: 1fr;
  }

  .hero-featured {
    min-height: 430px;
  }

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

@media (max-width: 820px) {
  .nav-links,
  .nav-search {
    display: none;
  }

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

  .nav-bar {
    height: 64px;
  }

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

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

  .hero-card {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .hero-card-body {
    padding: 22px;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

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

  .ranking-row {
    grid-template-columns: 42px 68px minmax(0, 1fr);
  }

  .rank-score {
    grid-column: 3;
  }
}

@media (max-width: 560px) {
  .container,
  .nav-bar,
  .mobile-menu,
  .page-hero-inner {
    width: min(100% - 22px, 1240px);
  }

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

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

  .hero-search input {
    padding: 15px 18px;
  }

  .hero-search button {
    position: static;
    width: 100%;
    margin-top: 10px;
    padding: 13px 20px;
    transform: none;
  }

  .hero-card {
    position: relative;
    grid-template-columns: 1fr;
    min-height: auto;
    display: none;
  }

  .hero-card.is-active {
    display: grid;
  }

  .hero-card img {
    aspect-ratio: 16 / 10;
  }

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

  .section {
    padding: 48px 0;
  }

  .detail-card,
  .side-card {
    padding: 20px;
  }
}
