* {
  box-sizing: border-box;
}

:root {
  color-scheme: dark;
  --bg: #020617;
  --bg-soft: #0f172a;
  --panel: rgba(15, 23, 42, 0.78);
  --panel-strong: rgba(15, 23, 42, 0.95);
  --line: rgba(148, 163, 184, 0.18);
  --text: #f8fafc;
  --muted: #94a3b8;
  --soft: #cbd5e1;
  --cyan: #22d3ee;
  --cyan-dark: #0891b2;
  --blue: #60a5fa;
  --orange: #fb923c;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% -10%, rgba(34, 211, 238, 0.16), transparent 32rem),
    radial-gradient(circle at 85% 4%, rgba(96, 165, 250, 0.18), transparent 28rem),
    linear-gradient(180deg, #020617 0%, #0f172a 48%, #020617 100%);
  min-height: 100vh;
}

body.is-menu-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.header-inner {
  width: min(1180px, calc(100% - 32px));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.92), rgba(59, 130, 246, 0.88));
  box-shadow: 0 0 30px rgba(34, 211, 238, 0.34);
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 10px 12px;
  border-radius: 5px;
  border: 2px solid rgba(255, 255, 255, 0.88);
}

.brand-mark::after {
  content: "";
  position: absolute;
  left: 14px;
  top: 14px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid rgba(255, 255, 255, 0.92);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 22px;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-text em {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

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

.nav-link {
  position: relative;
  color: var(--soft);
  font-size: 15px;
  font-weight: 600;
  transition: color 0.25s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

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

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.header-search,
.mobile-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-search input,
.mobile-search input,
.filter-panel input,
.filter-panel select {
  min-width: 0;
  border: 1px solid rgba(148, 163, 184, 0.24);
  color: var(--text);
  background: rgba(15, 23, 42, 0.72);
  border-radius: 999px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.header-search input {
  width: 188px;
  padding: 10px 14px;
}

.header-search button,
.mobile-search button {
  border: 0;
  color: white;
  background: rgba(8, 145, 178, 0.88);
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.header-search input:focus,
.mobile-search input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
  border-color: rgba(34, 211, 238, 0.72);
  background: rgba(15, 23, 42, 0.94);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.12);
}

.header-search button:hover,
.mobile-search button:hover {
  background: rgba(34, 211, 238, 0.9);
  box-shadow: 0 12px 34px rgba(34, 211, 238, 0.24);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 13px;
  background: rgba(15, 23, 42, 0.72);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: var(--text);
}

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

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

.mobile-panel nav {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.mobile-link {
  color: var(--soft);
  border-radius: 14px;
  padding: 12px 14px;
  background: rgba(15, 23, 42, 0.52);
}

.mobile-link:hover,
.mobile-link.is-active {
  color: var(--cyan);
  background: rgba(34, 211, 238, 0.1);
}

.mobile-search input {
  flex: 1;
  padding: 11px 14px;
}

.hero {
  position: relative;
  height: min(80vh, 760px);
  min-height: 560px;
  overflow: hidden;
  background: #020617;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s ease;
}

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

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 6s ease;
}

.hero-slide.is-active img {
  transform: scale(1.08);
}

.hero-gradient {
  position: absolute;
  inset: 0;
}

.hero-gradient-bottom {
  background: linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.72) 32%, transparent 72%);
}

.hero-gradient-side {
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.86) 0%, rgba(2, 6, 23, 0.34) 44%, transparent 100%);
}

.hero-content {
  position: absolute;
  left: max(32px, calc((100vw - 1180px) / 2));
  right: 32px;
  bottom: 92px;
  max-width: 690px;
  z-index: 2;
}

.hero-badge,
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: max-content;
  color: white;
  border: 1px solid rgba(103, 232, 249, 0.24);
  background: rgba(6, 182, 212, 0.82);
  box-shadow: 0 14px 38px rgba(8, 145, 178, 0.24);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

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

.hero p {
  margin: 0;
  max-width: 640px;
  color: #dbeafe;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.7;
}

.hero-meta,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
}

.hero-meta span,
.detail-meta span {
  color: #e0f2fe;
  background: rgba(15, 23, 42, 0.56);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 13px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  min-height: 46px;
  padding: 12px 22px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px) scale(1.01);
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, #06b6d4, #2563eb);
  box-shadow: 0 18px 42px rgba(34, 211, 238, 0.22);
}

.btn-primary:hover {
  box-shadow: 0 22px 52px rgba(34, 211, 238, 0.34);
}

.btn-ghost {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.btn-ghost:hover {
  border-color: rgba(34, 211, 238, 0.52);
  background: rgba(34, 211, 238, 0.14);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: white;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(10px);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.25s ease, transform 0.25s ease;
}

.hero-arrow:hover {
  background: rgba(8, 145, 178, 0.72);
  transform: translateY(-50%) scale(1.06);
}

.hero-prev {
  left: 28px;
}

.hero-next {
  right: 28px;
}

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

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

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

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

.page-main {
  padding-top: 44px;
}

.intro-panel,
.page-hero,
.editor-panel,
.overview-card,
.filter-panel,
.detail-hero,
.watch-section,
.detail-section {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.82), rgba(2, 6, 23, 0.86));
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.intro-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 76px;
  padding: 30px;
}

.intro-panel h1,
.page-hero h1,
.detail-info h1 {
  margin: 16px 0 12px;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.intro-panel p,
.page-hero p,
.editor-panel p,
.detail-info .lead {
  color: var(--soft);
  line-height: 1.8;
  margin: 0;
}

section + section,
.category-list,
.overview-list {
  margin-top: 72px;
}

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

.section-head h2,
.editor-panel h2,
.watch-section h2,
.detail-section h2,
.overview-head h2 {
  margin: 8px 0 0;
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.15;
}

.section-kicker {
  color: var(--cyan);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.section-more,
.strip-head a {
  color: var(--cyan);
  font-weight: 800;
}

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

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

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

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

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

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

.movie-link {
  display: flex;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.74);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.movie-link:hover {
  border-color: rgba(34, 211, 238, 0.52);
  box-shadow: 0 24px 60px rgba(8, 145, 178, 0.18);
  transform: translateY(-7px);
}

.poster-frame {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.94), rgba(8, 145, 178, 0.24));
}

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

.movie-link:hover .poster-frame img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.04);
}

.poster-shade {
  position: absolute;
  inset: auto 0 0;
  height: 52%;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.92), transparent);
}

.score-badge {
  position: absolute;
  right: 12px;
  top: 12px;
  color: #0f172a;
  background: linear-gradient(135deg, #facc15, #fb923c);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(251, 146, 60, 0.24);
}

.movie-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 9px;
  padding: 16px;
}

.movie-title {
  display: -webkit-box;
  min-height: 3em;
  overflow: hidden;
  color: white;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.45;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-meta,
.movie-desc {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.movie-desc {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.movie-tags span,
.tag {
  color: #bae6fd;
  border: 1px solid rgba(34, 211, 238, 0.2);
  background: rgba(34, 211, 238, 0.08);
  border-radius: 999px;
  padding: 5px 8px;
  font-size: 12px;
  line-height: 1;
}

.movie-card-wide .movie-link,
.movie-card-spotlight .movie-link {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
}

.movie-card-wide .poster-frame,
.movie-card-spotlight .poster-frame {
  height: 100%;
  aspect-ratio: auto;
}

.movie-card-wide .movie-title,
.movie-card-spotlight .movie-title {
  min-height: 0;
}

.movie-card-compact .movie-link {
  border-radius: 18px;
}

.movie-card-compact .movie-info {
  padding: 12px;
}

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

.movie-card-compact .movie-desc,
.movie-card-compact .movie-tags {
  display: none;
}

.editor-panel {
  position: relative;
  overflow: hidden;
  padding: 42px;
}

.glow {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 999px;
  filter: blur(46px);
  opacity: 0.18;
}

.glow-top {
  top: -140px;
  right: -140px;
  background: var(--cyan);
}

.glow-bottom {
  left: -140px;
  bottom: -140px;
  background: var(--blue);
}

.panel-content {
  position: relative;
  z-index: 1;
}

.category-strip {
  margin-top: 0;
}

.category-strip + .category-strip {
  margin-top: 56px;
}

.strip-head h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 26px;
}

.strip-head h3 span {
  width: 5px;
  height: 32px;
  border-radius: 99px;
  background: linear-gradient(180deg, var(--cyan), var(--blue));
}

.page-hero {
  margin-bottom: 34px;
  padding: 42px;
}

.slim-hero {
  min-height: 250px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 14px;
}

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

.filter-panel {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(3, minmax(160px, 0.6fr));
  gap: 16px;
  margin-bottom: 28px;
  padding: 18px;
}

.filter-panel label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  border-radius: 16px;
  padding: 13px 14px;
}

.filter-panel select option {
  color: #0f172a;
}

.empty-state {
  display: none;
  margin-top: 24px;
  color: var(--muted);
  text-align: center;
  border: 1px dashed rgba(148, 163, 184, 0.28);
  border-radius: 22px;
  padding: 32px;
}

.empty-state.is-visible {
  display: block;
}

.overview-list {
  display: grid;
  gap: 28px;
}

.overview-card {
  padding: 28px;
}

.overview-head p {
  max-width: 720px;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.ranking-row {
  display: block;
}

.rank-link {
  display: grid;
  grid-template-columns: 54px 72px minmax(0, 1fr) 76px;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.72);
  padding: 12px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.rank-link:hover {
  border-color: rgba(34, 211, 238, 0.5);
  background: rgba(15, 23, 42, 0.95);
  transform: translateY(-3px);
}

.rank-no {
  color: var(--cyan);
  font-size: 24px;
  font-weight: 900;
  text-align: center;
}

.rank-link img {
  width: 72px;
  height: 96px;
  border-radius: 14px;
  object-fit: cover;
  background: rgba(15, 23, 42, 0.95);
}

.rank-main {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.rank-main strong {
  overflow: hidden;
  color: white;
  font-size: 18px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-main em {
  display: -webkit-box;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  line-height: 1.5;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.rank-main span {
  color: var(--soft);
  font-size: 13px;
}

.rank-score {
  color: #facc15;
  font-size: 24px;
  font-weight: 900;
  text-align: center;
}

.detail-main {
  width: min(1120px, calc(100% - 32px));
}

.detail-hero {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 34px;
  padding: 30px;
}

.detail-poster {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(8, 145, 178, 0.24));
  box-shadow: 0 24px 66px rgba(0, 0, 0, 0.34);
}

.detail-poster img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.detail-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0;
}

.watch-section,
.detail-section {
  margin-top: 32px;
  padding: 28px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(34, 211, 238, 0.18);
  border-radius: 28px;
  background: #000;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
}

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

.play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  border: 0;
  color: white;
  background:
    radial-gradient(circle at center, rgba(34, 211, 238, 0.22), rgba(2, 6, 23, 0.68) 42%, rgba(0, 0, 0, 0.74) 100%);
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-icon {
  position: relative;
  width: 78px;
  height: 78px;
  border-radius: 999px;
  background: linear-gradient(135deg, #06b6d4, #2563eb);
  box-shadow: 0 0 42px rgba(34, 211, 238, 0.38);
}

.play-icon::after {
  content: "";
  position: absolute;
  left: 32px;
  top: 24px;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 22px solid white;
}

.play-overlay strong {
  font-size: clamp(20px, 4vw, 32px);
}

.play-overlay em {
  color: #bae6fd;
  font-style: normal;
  font-weight: 800;
}

.detail-section p {
  color: var(--soft);
  font-size: 17px;
  line-height: 2;
  margin: 0;
}

.info-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
}

.info-list div {
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 18px;
  background: rgba(2, 6, 23, 0.36);
  padding: 14px;
}

.info-list dt {
  color: var(--muted);
  font-size: 13px;
}

.info-list dd {
  margin: 6px 0 0;
  color: white;
  font-weight: 800;
}

.info-list a {
  color: var(--cyan);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.88), #020617);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 34px;
  padding: 52px 0;
}

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

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

.footer-links ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: var(--muted);
  font-size: 14px;
}

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

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  color: #64748b;
  padding: 22px 0 32px;
  font-size: 13px;
  text-align: center;
}

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

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

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

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

  .two-col,
  .editor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .brand-text strong {
    font-size: 19px;
  }

  .brand-text em {
    display: none;
  }

  .hero {
    min-height: 640px;
    height: 86vh;
  }

  .hero-content {
    left: 20px;
    right: 20px;
    bottom: 78px;
  }

  .hero-arrow {
    display: none;
  }

  .hero-meta span {
    font-size: 12px;
  }

  .intro-panel,
  .section-head,
  .strip-head,
  .overview-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .intro-panel,
  .page-hero,
  .editor-panel,
  .overview-card,
  .detail-hero,
  .watch-section,
  .detail-section {
    border-radius: 24px;
    padding: 22px;
  }

  .movie-grid,
  .compact-grid,
  .small-grid,
  .two-col,
  .editor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .movie-card-wide .movie-link,
  .movie-card-spotlight .movie-link {
    display: flex;
  }

  .movie-card-wide .poster-frame,
  .movie-card-spotlight .poster-frame {
    aspect-ratio: 2 / 3;
  }

  .movie-title {
    font-size: 15px;
  }

  .movie-desc,
  .movie-tags {
    display: none;
  }

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

  .rank-link {
    grid-template-columns: 38px 58px minmax(0, 1fr);
  }

  .rank-link img {
    width: 58px;
    height: 78px;
  }

  .rank-score {
    grid-column: 3;
    text-align: left;
    font-size: 18px;
  }

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

  .detail-poster img {
    min-height: 0;
  }

  .info-list {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .movie-grid,
  .compact-grid,
  .small-grid,
  .two-col,
  .editor-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .detail-meta {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}
