:root {
  --bg: #f8fafc;
  --card: #ffffff;
  --text: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --red: #dc2626;
  --orange: #f97316;
  --blue: #2563eb;
  --dark: #0f172a;
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
}

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

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, var(--red), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

.logo-mark {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  font-size: 13px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  box-shadow: 0 12px 24px rgba(220, 38, 38, 0.3);
}

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

.desktop-nav > a,
.nav-dropdown > a {
  font-weight: 700;
  color: #374151;
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--red);
}

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

.nav-dropdown-panel {
  position: absolute;
  top: 100%;
  left: -18px;
  width: 220px;
  padding: 10px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.2s ease;
}

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

.nav-dropdown-panel a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: #4b5563;
  font-size: 14px;
}

.nav-dropdown-panel a:hover {
  background: #fff1f2;
  color: var(--red);
}

.nav-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #ffffff;
}

.nav-search input {
  width: 210px;
  border: 0;
  outline: 0;
  padding: 9px 10px 9px 16px;
  color: #111827;
  background: transparent;
}

.nav-search button,
.search-panel button {
  border: 0;
  border-radius: 999px;
  padding: 9px 16px;
  color: #ffffff;
  font-weight: 700;
  background: linear-gradient(90deg, var(--red), var(--orange));
  cursor: pointer;
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: #f3f4f6;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: #111827;
}

.mobile-panel {
  display: none;
  border-top: 1px solid #e5e7eb;
  background: #ffffff;
}

.mobile-panel.is-open {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.mobile-panel a {
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 700;
  color: #374151;
}

.mobile-panel a:hover {
  background: #fff1f2;
  color: var(--red);
}

.mobile-panel form {
  display: flex;
  gap: 8px;
}

.mobile-panel input {
  min-width: 0;
  flex: 1;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  padding: 10px 14px;
}

.mobile-panel button {
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  color: #ffffff;
  font-weight: 700;
  background: var(--red);
}

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

.hero-stage,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  transition: opacity 0.9s ease;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.08));
}

.hero-content {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  max-width: 720px;
  color: #ffffff;
}

.hero-badge,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  padding: 8px 14px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  background: linear-gradient(90deg, var(--red), var(--orange));
}

.hero-content h1 {
  margin: 18px 0 16px;
  max-width: 780px;
  font-size: clamp(38px, 7vw, 72px);
  line-height: 1.03;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.hero-content p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1.75;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 24px 0 30px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.hero-meta span {
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

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

.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
  color: #ffffff;
  background: linear-gradient(90deg, var(--blue), #1d4ed8);
  box-shadow: 0 18px 28px rgba(37, 99, 235, 0.28);
}

.primary-button:hover,
.ghost-button:hover {
  transform: translateY(-2px);
}

.ghost-button {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
}

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  font-size: 34px;
  line-height: 1;
  background: rgba(0, 0, 0, 0.45);
  cursor: pointer;
  transition: background 0.2s ease;
}

.hero-control:hover {
  background: rgba(0, 0, 0, 0.68);
}

.hero-prev {
  left: 22px;
}

.hero-next {
  right: 22px;
}

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

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

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

.section,
.quick-categories,
.gradient-callout {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0;
}

.soft-section,
.dark-feature-section {
  padding: 64px 0;
}

.soft-section {
  background: linear-gradient(135deg, #eff6ff, #ecfeff);
}

.dark-feature-section {
  color: #ffffff;
  background: linear-gradient(135deg, #111827, #1f2937);
}

.inner-section {
  padding: 0;
}

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

.center-heading {
  align-items: center;
  text-align: center;
  flex-direction: column;
}

.section-heading h1,
.section-heading h2,
.page-hero h1 {
  margin: 12px 0 0;
  font-size: clamp(30px, 5vw, 44px);
  line-height: 1.14;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.section-heading p,
.page-hero p {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.light-heading p {
  color: rgba(255, 255, 255, 0.74);
}

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.8);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

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

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

.movie-card:hover .movie-poster img,
.feature-tile:hover img,
.category-overview-card:hover img {
  transform: scale(1.08);
}

.poster-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(90deg, #f59e0b, var(--orange));
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.25);
}

.poster-play {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(37, 99, 235, 0.9);
  transform: translate(-50%, -50%) scale(0.85);
  opacity: 0;
  transition: 0.25s ease;
}

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

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

.movie-title {
  display: -webkit-box;
  min-height: 48px;
  overflow: hidden;
  color: #111827;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.4;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-title:hover {
  color: var(--red);
}

.movie-card-body p {
  display: -webkit-box;
  min-height: 42px;
  margin: 10px 0 12px;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-tags,
.detail-tags,
.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.movie-tags span,
.detail-tags span,
.filter-chips button {
  border: 0;
  border-radius: 999px;
  padding: 5px 10px;
  color: #dc2626;
  font-size: 12px;
  font-weight: 800;
  background: #fff1f2;
}

.movie-meta,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #6b7280;
  font-size: 13px;
  font-weight: 700;
}

.movie-card-horizontal {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  min-height: 160px;
}

.movie-card-horizontal .movie-poster {
  height: 100%;
  aspect-ratio: auto;
}

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

.category-tile {
  min-height: 160px;
  padding: 24px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  transition: 0.25s ease;
}

.category-tile:hover {
  transform: translateY(-5px);
  border-color: rgba(220, 38, 38, 0.25);
  box-shadow: var(--shadow);
}

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

.category-tile p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.feature-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.feature-tile {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  border-radius: 18px;
  background: #111827;
}

.feature-tile img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.feature-tile span,
.feature-tile strong {
  position: absolute;
  left: 16px;
  right: 16px;
  z-index: 1;
}

.feature-tile span {
  bottom: 48px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.feature-tile strong {
  bottom: 16px;
  color: #ffffff;
  font-size: 16px;
}

.editor-layout {
  display: grid;
  grid-template-columns: 1.05fr 1.4fr;
  gap: 24px;
}

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

.gradient-callout {
  width: min(1180px, calc(100% - 32px));
  margin-bottom: 64px;
  padding: 40px;
  border-radius: 30px;
  color: #ffffff;
  background: linear-gradient(135deg, #7c3aed, #db2777);
}

.gradient-callout .movie-card {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
}

.gradient-callout .movie-title,
.gradient-callout .movie-card-body p,
.gradient-callout .movie-meta {
  color: #ffffff;
}

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

.page-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 32px auto 0;
  border-radius: 30px;
  padding: clamp(34px, 6vw, 70px);
  color: #ffffff;
  background: radial-gradient(circle at 20% 20%, rgba(249, 115, 22, 0.35), transparent 32%), linear-gradient(135deg, #111827, #1f2937 55%, #7f1d1d);
  box-shadow: var(--shadow);
}

.compact-hero p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

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

.category-hero-covers {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  min-height: 250px;
}

.category-hero-covers img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.28);
}

.category-hero-covers img:nth-child(2n) {
  transform: translateY(24px);
}

.list-tools input,
.search-panel input {
  width: min(420px, 100%);
  border: 1px solid #d1d5db;
  border-radius: 999px;
  padding: 12px 16px;
  outline: none;
  background: #ffffff;
}

.list-tools input:focus,
.search-panel input:focus {
  border-color: rgba(220, 38, 38, 0.55);
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.12);
}

.empty-state {
  display: none;
  margin-top: 22px;
  padding: 22px;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  color: var(--muted);
  text-align: center;
  background: #ffffff;
}

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

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

.category-overview-card {
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
  transition: 0.25s ease;
}

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

.category-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 170px;
  overflow: hidden;
  background: #111827;
}

.category-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.35s ease;
}

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

.category-overview-body span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

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

.category-overview-body p {
  color: var(--muted);
  line-height: 1.7;
}

.search-panel {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.search-panel input {
  width: min(560px, 100%);
}

.filter-chips {
  margin-top: 18px;
}

.filter-chips button {
  cursor: pointer;
}

.filter-chips button.is-active {
  color: #ffffff;
  background: linear-gradient(90deg, var(--red), var(--orange));
}

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

.rank-row {
  display: grid;
  grid-template-columns: 56px 82px minmax(0, 1fr) 72px;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.rank-number {
  color: var(--red);
  font-size: 26px;
  font-weight: 900;
  text-align: center;
}

.rank-poster {
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 14px;
  background: #111827;
}

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

.rank-info a {
  font-size: 18px;
  font-weight: 900;
}

.rank-info p {
  margin: 6px 0 8px;
  color: var(--muted);
}

.rank-info div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #6b7280;
  font-size: 13px;
}

.rank-row strong {
  color: #f59e0b;
  font-size: 22px;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: #111827;
}

.detail-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  filter: blur(10px);
  transform: scale(1.03);
}

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

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 24, 39, 0.98), rgba(17, 24, 39, 0.82));
}

.detail-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 56px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

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

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.8fr);
  gap: 32px;
  align-items: center;
}

.watch-card,
.video-box {
  position: relative;
}

.video-box {
  overflow: hidden;
  border-radius: 28px;
  background: #000000;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
  aspect-ratio: 16 / 9;
}

.movie-player-video,
.player-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.movie-player-video {
  z-index: 1;
  background: #000000;
}

.player-cover {
  z-index: 2;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: #000000;
}

.player-cover.is-hidden {
  display: none;
}

.player-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.76;
}

.play-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  font-size: 32px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  box-shadow: 0 20px 40px rgba(220, 38, 38, 0.38);
  transform: translate(-50%, -50%);
}

.detail-info h1 {
  margin: 14px 0;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.detail-one-line {
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.8;
}

.detail-meta {
  margin: 20px 0;
  color: rgba(255, 255, 255, 0.78);
}

.detail-meta span {
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.1);
}

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

.detail-content {
  padding-bottom: 0;
}

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

.prose-card {
  padding: 28px;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.prose-card h2 {
  margin: 0 0 16px;
  font-size: 26px;
  font-weight: 900;
}

.prose-card p {
  margin: 0;
  color: #374151;
  font-size: 17px;
  line-height: 1.9;
}

.text-link {
  color: var(--red);
  font-weight: 900;
}

.site-footer {
  color: #d1d5db;
  background: linear-gradient(180deg, #111827, #020617);
}

.footer-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr repeat(3, minmax(0, 1fr));
  gap: 36px;
  padding: 52px 0 36px;
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-brand p {
  max-width: 360px;
  color: #9ca3af;
  line-height: 1.8;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li,
.site-footer a {
  margin: 9px 0;
  color: #9ca3af;
  font-size: 14px;
}

.site-footer a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px;
  color: #6b7280;
  text-align: center;
  font-size: 14px;
}

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

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

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

  .detail-grid,
  .category-hero,
  .editor-layout,
  .content-grid,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .category-hero-covers {
    min-height: 180px;
  }
}

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

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

  .nav-shell {
    width: min(100% - 24px, 1180px);
    gap: 12px;
  }

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

  .hero-carousel {
    height: 620px;
  }

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

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

  .hero-control {
    display: none;
  }

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

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

  .rank-row {
    grid-template-columns: 40px 72px minmax(0, 1fr);
  }

  .rank-row strong {
    grid-column: 3;
  }

  .gradient-callout,
  .page-hero {
    padding: 26px;
    border-radius: 24px;
  }

  .category-hero-covers {
    grid-template-columns: repeat(5, 1fr);
    min-height: 130px;
  }

  .movie-card-horizontal {
    grid-template-columns: 96px minmax(0, 1fr);
  }

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