@charset "UTF-8";

:root {
  color-scheme: dark;
  --bg-0: #020617;
  --bg-1: #0f172a;
  --bg-2: #111827;
  --bg-3: #1e293b;
  --text-0: #ffffff;
  --text-1: #e2e8f0;
  --text-2: #94a3b8;
  --text-3: #64748b;
  --line: rgba(148, 163, 184, 0.18);
  --emerald: #10b981;
  --emerald-2: #34d399;
  --cyan: #22d3ee;
  --rose: #fb7185;
  --yellow: #facc15;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 22px;
  font-family: Inter, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 46%, var(--bg-0) 100%);
  color: var(--text-1);
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.96), rgba(15, 23, 42, 0.98));
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.header-inner,
.footer-inner,
.section-wrap,
.detail-shell {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
}

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

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

.brand-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--emerald), var(--cyan));
  color: #03121a;
  box-shadow: 0 0 28px rgba(16, 185, 129, 0.42);
  font-size: 14px;
  padding-left: 2px;
}

.brand-text,
.footer-brand span:last-child {
  font-size: 26px;
  background: linear-gradient(90deg, var(--emerald-2), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--text-1);
}

.nav-link,
.nav-dropdown > button {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  padding: 10px 0;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.nav-dropdown:hover > button {
  color: var(--emerald-2);
}

.nav-dropdown {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  top: 100%;
  left: 0;
  width: 190px;
  padding: 10px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s ease;
}

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

.dropdown-panel a,
.mobile-panel a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--text-1);
}

.dropdown-panel a:hover,
.mobile-panel a:hover {
  background: rgba(51, 65, 85, 0.76);
  color: var(--emerald-2);
}

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

.site-search input,
.filter-search input,
.search-page-form input {
  width: 260px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 999px;
  outline: none;
  background: rgba(30, 41, 59, 0.92);
  color: var(--text-0);
  padding: 11px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-search input:focus,
.filter-search input:focus,
.search-page-form input:focus {
  border-color: var(--emerald-2);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.18);
}

.site-search button,
.search-page-form button {
  border: 0;
  border-radius: 999px;
  background: var(--emerald);
  color: white;
  padding: 11px 18px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}

.site-search button:hover,
.search-page-form button:hover,
.primary-btn:hover {
  transform: translateY(-1px) scale(1.02);
  background: #059669;
}

.mobile-toggle {
  display: none;
  border: 0;
  border-radius: 12px;
  background: rgba(51, 65, 85, 0.7);
  color: white;
  width: 44px;
  height: 44px;
  cursor: pointer;
}

.mobile-panel {
  border-top: 1px solid var(--line);
  padding: 14px 18px 18px;
  background: rgba(15, 23, 42, 0.98);
}

.mobile-panel .site-search {
  display: flex;
  margin: 0 0 12px;
}

.mobile-panel .site-search input {
  width: 100%;
}

.hero-carousel {
  position: relative;
  height: 620px;
  overflow: hidden;
  background: #020617;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.7s ease, transform 0.9s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 42%, rgba(16, 185, 129, 0.22), transparent 28%),
    linear-gradient(90deg, #020617 0%, rgba(2, 6, 23, 0.88) 38%, rgba(2, 6, 23, 0.3) 100%),
    linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.05) 52%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1220px, calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 740px;
  margin-left: max(16px, calc((100% - 1220px) / 2));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--emerald-2);
  font-weight: 800;
  letter-spacing: 0.05em;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald-2);
  box-shadow: 0 0 18px var(--emerald-2);
}

.hero-content h1 {
  margin: 0 0 20px;
  color: white;
  font-size: clamp(44px, 7vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero-content p {
  margin: 0 0 24px;
  max-width: 650px;
  color: var(--text-1);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.65;
}

.hero-meta,
.info-pills,
.card-meta,
.wide-tags,
.tag-row,
.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.hero-meta span,
.info-pills span,
.tag,
.card-meta span {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.58);
  color: var(--text-1);
  padding: 6px 11px;
  font-size: 13px;
}

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

.primary-btn,
.ghost-btn,
.cta-card a,
.empty-state a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  border: 0;
  cursor: pointer;
  transition: 0.2s ease;
}

.primary-btn {
  background: var(--emerald);
  color: white;
  box-shadow: 0 18px 48px rgba(16, 185, 129, 0.28);
}

.primary-btn.full {
  width: 100%;
}

.ghost-btn {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(15, 23, 42, 0.42);
  color: white;
}

.ghost-btn:hover {
  border-color: var(--emerald-2);
  color: var(--emerald-2);
  transform: translateY(-1px);
}

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

.hero-arrow,
.hero-dot {
  border: 0;
  cursor: pointer;
}

.hero-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.78);
  color: white;
  font-size: 30px;
}

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

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

.hero-dot.active {
  width: 34px;
  background: var(--emerald-2);
}

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

.section-band {
  margin-top: 76px;
  background: linear-gradient(90deg, rgba(30, 41, 59, 0.88), rgba(15, 23, 42, 0.95));
}

.section-band .section-wrap {
  padding: 64px 0;
}

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

.section-head h2 {
  margin: 0;
  color: white;
  font-size: clamp(26px, 3.2vw, 38px);
  letter-spacing: -0.04em;
}

.section-head a {
  color: var(--emerald-2);
  font-weight: 700;
}

.section-icon {
  display: inline-flex;
  margin-right: 8px;
}

.section-icon.rose {
  color: var(--rose);
}

.section-icon.yellow {
  color: var(--yellow);
}

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

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

.movie-card {
  min-width: 0;
}

.card-link {
  display: block;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.82);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card-link:hover {
  transform: translateY(-6px);
  border-color: rgba(16, 185, 129, 0.45);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
}

.card-cover {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #111827;
}

.compact .card-cover {
  aspect-ratio: 2 / 3;
}

.card-cover img,
.wide-cover img,
.rank-cover img,
.poster-card img,
.category-covers img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.card-link:hover img,
.wide-link:hover img,
.rank-item a:hover img {
  transform: scale(1.08);
}

.card-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 18%, rgba(0, 0, 0, 0.68) 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.card-link:hover .card-shade {
  opacity: 1;
}

.play-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--emerald);
  color: white;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.9);
  transition: 0.25s ease;
  padding-left: 3px;
  box-shadow: 0 18px 38px rgba(16, 185, 129, 0.35);
}

.play-mark.small {
  width: 44px;
  height: 44px;
}

.card-link:hover .play-mark,
.wide-link:hover .play-mark {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.year-badge {
  position: absolute;
  right: 12px;
  top: 12px;
  border-radius: 999px;
  background: var(--emerald);
  color: white;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 800;
}

.card-body {
  display: block;
  padding: 16px;
}

.compact .card-body {
  padding: 13px;
}

.card-title {
  display: -webkit-box;
  overflow: hidden;
  color: white;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.2s ease;
}

.compact .card-title {
  font-size: 15px;
}

.card-link:hover .card-title {
  color: var(--emerald-2);
}

.card-desc {
  display: -webkit-box;
  overflow: hidden;
  min-height: 42px;
  margin-top: 9px;
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.55;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.compact .card-desc {
  display: none;
}

.card-meta {
  margin-top: 13px;
}

.card-meta span {
  padding: 4px 8px;
  font-size: 12px;
  color: var(--text-2);
}

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

.category-tile {
  position: relative;
  overflow: hidden;
  min-height: 148px;
  padding: 24px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.16);
  transition: background 0.25s ease;
}

.category-tile:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.38);
}

.category-tile:hover::after {
  background: rgba(0, 0, 0, 0.08);
}

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

.category-tile span {
  color: white;
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 12px;
}

.category-tile em {
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
  line-height: 1.6;
}

.category-tile.rose { background: linear-gradient(135deg, #f43f5e, #ec4899); }
.category-tile.purple { background: linear-gradient(135deg, #8b5cf6, #6366f1); }
.category-tile.blue { background: linear-gradient(135deg, #2563eb, #06b6d4); }
.category-tile.amber { background: linear-gradient(135deg, #f59e0b, #f97316); }
.category-tile.emerald { background: linear-gradient(135deg, #10b981, #14b8a6); }
.category-tile.cyan { background: linear-gradient(135deg, #06b6d4, #0ea5e9); }
.category-tile.orange { background: linear-gradient(135deg, #f97316, #ef4444); }
.category-tile.pink { background: linear-gradient(135deg, #db2777, #fb7185); }
.category-tile.indigo { background: linear-gradient(135deg, #4f46e5, #7c3aed); }
.category-tile.teal { background: linear-gradient(135deg, #0d9488, #22c55e); }
.category-tile.lime { background: linear-gradient(135deg, #65a30d, #84cc16); }
.category-tile.fuchsia { background: linear-gradient(135deg, #c026d3, #ec4899); }

.wide-list {
  display: grid;
  gap: 18px;
}

.wide-card {
  overflow: hidden;
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.82);
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.wide-link {
  display: grid;
  grid-template-columns: 310px 1fr;
  min-height: 178px;
}

.wide-cover {
  position: relative;
  overflow: hidden;
  background: #111827;
}

.wide-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
}

.wide-title {
  color: white;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 12px;
}

.wide-desc {
  display: -webkit-box;
  overflow: hidden;
  color: var(--text-2);
  line-height: 1.7;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

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

.two-column {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: start;
}

.compact-head h2 {
  font-size: 30px;
}

.rank-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.rank-item a {
  display: grid;
  grid-template-columns: 44px 70px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.82);
  transition: 0.2s ease;
}

.rank-item a:hover {
  border-color: rgba(16, 185, 129, 0.38);
  transform: translateX(4px);
}

.rank-num {
  color: var(--emerald-2);
  font-size: 22px;
  font-weight: 900;
}

.rank-cover {
  overflow: hidden;
  width: 70px;
  aspect-ratio: 16 / 11;
  border-radius: 12px;
  background: #111827;
}

.rank-copy strong,
.rank-copy em {
  display: block;
}

.rank-copy strong {
  color: white;
  font-size: 16px;
  margin-bottom: 5px;
}

.rank-copy em {
  color: var(--text-2);
  font-size: 13px;
  font-style: normal;
}

.rank-year {
  color: var(--text-3);
  font-weight: 700;
}

.large-rank .rank-item a {
  grid-template-columns: 52px 98px 1fr auto;
  padding: 16px;
}

.large-rank .rank-cover {
  width: 98px;
}

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

.filter-panel {
  display: grid;
  gap: 16px;
  margin-bottom: 28px;
  padding: 18px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.72);
}

.filter-search input {
  width: 100%;
}

.filter-chip {
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 999px;
  background: rgba(30, 41, 59, 0.68);
  color: var(--text-1);
  padding: 8px 14px;
  cursor: pointer;
  transition: 0.2s ease;
}

.filter-chip:hover,
.filter-chip.active {
  border-color: var(--emerald-2);
  background: rgba(16, 185, 129, 0.18);
  color: var(--emerald-2);
}

.cta-card {
  padding: clamp(36px, 6vw, 64px);
  border-radius: 32px;
  text-align: center;
  background: linear-gradient(90deg, #059669, #0891b2);
  box-shadow: var(--shadow);
}

.cta-card h2 {
  margin: 0 0 14px;
  color: white;
  font-size: clamp(30px, 5vw, 50px);
}

.cta-card p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.cta-card a {
  background: white;
  color: #047857;
}

.sub-page {
  min-height: 70vh;
}

.sub-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 16px 72px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(16, 185, 129, 0.22), transparent 30%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.92), rgba(2, 6, 23, 0));
}

.sub-hero h1 {
  margin: 0 0 16px;
  color: white;
  font-size: clamp(42px, 7vw, 68px);
  letter-spacing: -0.06em;
}

.sub-hero p {
  width: min(760px, 100%);
  margin: 0 auto;
  color: var(--text-2);
  font-size: 18px;
  line-height: 1.8;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  color: var(--text-2);
}

.breadcrumb a {
  color: var(--emerald-2);
}

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

.category-overview-card a {
  display: grid;
  overflow: hidden;
  min-height: 250px;
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.86);
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
  transition: 0.25s ease;
}

.category-overview-card a:hover {
  transform: translateY(-5px);
  border-color: rgba(16, 185, 129, 0.42);
}

.category-covers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 148px;
  overflow: hidden;
}

.category-copy {
  padding: 20px;
}

.category-copy strong,
.category-copy em {
  display: block;
}

.category-copy strong {
  color: white;
  font-size: 23px;
  margin-bottom: 10px;
}

.category-copy em {
  color: var(--text-2);
  font-style: normal;
  line-height: 1.6;
}

.search-page-form {
  width: min(760px, 100%);
  display: flex;
  gap: 10px;
  margin: 28px auto 0;
}

.search-page-form input {
  flex: 1;
  width: auto;
}

.empty-state {
  padding: 70px 20px;
  text-align: center;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.72);
}

.empty-state h2 {
  margin: 0 0 12px;
  color: white;
}

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

.empty-state a {
  background: var(--emerald);
  color: white;
}

.detail-page {
  min-height: 100vh;
  background: linear-gradient(180deg, #020617 0%, #0f172a 58%, #020617 100%);
}

.detail-shell {
  padding: 38px 0 0;
}

.detail-breadcrumb {
  justify-content: flex-start;
  margin: 0 0 24px;
}

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

.player-card,
.movie-copy,
.poster-card,
.side-panel {
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.82);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

.player-card {
  overflow: hidden;
  margin-bottom: 24px;
}

.player-box {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}

.movie-video {
  width: 100%;
  height: 100%;
  background: #000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.58));
  cursor: pointer;
  transition: opacity 0.25s ease;
}

.player-overlay span {
  width: 88px;
  height: 88px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--emerald);
  color: white;
  font-size: 38px;
  padding-left: 6px;
  box-shadow: 0 20px 55px rgba(16, 185, 129, 0.36);
}

.player-box.playing .player-overlay {
  opacity: 0;
  pointer-events: none;
}

.movie-copy {
  padding: clamp(22px, 4vw, 38px);
}

.movie-copy h1 {
  margin: 0 0 14px;
  color: white;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.lead {
  margin: 0 0 20px;
  color: var(--text-1);
  font-size: 20px;
  line-height: 1.8;
}

.info-pills {
  margin-bottom: 18px;
}

.tag-row {
  margin: 16px 0 28px;
}

.copy-section {
  padding-top: 26px;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.copy-section + .copy-section {
  margin-top: 26px;
}

.copy-section h2,
.side-panel h2 {
  margin: 0 0 14px;
  color: white;
  font-size: 24px;
}

.copy-section p {
  margin: 0;
  color: var(--text-1);
  line-height: 2;
}

.detail-side {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 20px;
}

.poster-card {
  overflow: hidden;
  padding: 14px;
}

.poster-card img {
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: 18px;
  margin-bottom: 14px;
}

.side-panel {
  padding: 22px;
}

.side-panel dl {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px 14px;
  margin: 0;
}

.side-panel dt {
  color: var(--text-3);
}

.side-panel dd {
  margin: 0;
  color: var(--text-1);
}

.related-wrap {
  padding-bottom: 32px;
}

.site-footer {
  margin-top: 76px;
  background: linear-gradient(180deg, #0f172a, #020617);
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
  padding: 48px 0;
}

.footer-inner p {
  color: var(--text-2);
  line-height: 1.8;
}

.footer-inner h3 {
  color: white;
  margin: 0 0 14px;
}

.footer-inner a,
.footer-inner button {
  display: block;
  margin: 9px 0;
  border: 0;
  background: transparent;
  color: var(--text-2);
  cursor: pointer;
  padding: 0;
  text-align: left;
}

.footer-inner a:hover,
.footer-inner button:hover {
  color: var(--emerald-2);
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  padding: 22px;
  text-align: center;
  color: var(--text-3);
}

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

  .site-search:not(.mobile) {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

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

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

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

  .detail-side {
    position: static;
  }

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

@media (max-width: 720px) {
  .header-inner {
    height: 62px;
  }

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

  .hero-carousel {
    height: 560px;
  }

  .hero-content {
    padding-top: 20px;
  }

  .hero-actions,
  .section-head,
  .search-page-form {
    flex-direction: column;
    align-items: stretch;
  }

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

  .wide-link {
    grid-template-columns: 1fr;
  }

  .wide-cover {
    aspect-ratio: 16 / 10;
  }

  .wide-title {
    font-size: 20px;
  }

  .rank-item a,
  .large-rank .rank-item a {
    grid-template-columns: 40px 70px 1fr;
  }

  .rank-year {
    display: none;
  }

  .footer-inner {
    gap: 18px;
  }
}

@media (max-width: 460px) {
  .movie-grid,
  .full-grid,
  .category-grid,
  .poster-strip,
  .category-overview-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-carousel {
    height: 620px;
  }

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

  .player-overlay span {
    width: 70px;
    height: 70px;
  }
}
