
:root {
  --color-red: #ef4444;
  --color-red-dark: #dc2626;
  --color-pink: #ec4899;
  --color-pink-soft: #fdf2f8;
  --color-orange: #f97316;
  --color-text: #111827;
  --color-muted: #6b7280;
  --color-border: #e5e7eb;
  --color-surface: #ffffff;
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-strong: 0 24px 60px rgba(15, 23, 42, 0.18);
}

body {
  min-height: 100vh;
  background: linear-gradient(135deg, #fef2f2 0%, #fdf2f8 46%, #ffffff 100%);
  color: var(--color-text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", "微软雅黑", sans-serif;
}

body.menu-open {
  overflow: hidden;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.08), 0 8px 28px rgba(15, 23, 42, 0.05);
}

.site-header-inner {
  max-width: 1280px;
  height: 64px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.site-logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-red), var(--color-pink));
  color: white;
  box-shadow: 0 12px 26px rgba(239, 68, 68, 0.25);
  transition: transform 0.3s ease;
}

.site-logo:hover .site-logo-icon,
.footer-logo:hover .site-logo-icon {
  transform: scale(1.08) rotate(-3deg);
}

.site-logo-text {
  font-size: 20px;
  background: linear-gradient(90deg, var(--color-red-dark), var(--color-pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-link {
  color: #374151;
  font-weight: 600;
  transition: color 0.2s ease;
}

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

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

.header-search input,
.mobile-search input,
.local-filter,
.search-panel input,
.search-panel select {
  border: 1px solid #d1d5db;
  border-radius: 999px;
  background: white;
  color: var(--color-text);
  outline: none;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.header-search input {
  width: 260px;
  padding: 10px 42px 10px 18px;
}

.header-search button {
  position: absolute;
  right: 6px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 0;
  color: white;
  background: linear-gradient(135deg, var(--color-red), var(--color-pink));
}

.header-search input:focus,
.mobile-search input:focus,
.local-filter:focus,
.search-panel input:focus,
.search-panel select:focus {
  border-color: var(--color-red);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.16);
}

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: #f3f4f6;
  font-size: 22px;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--color-border);
  padding: 16px 24px 22px;
  background: rgba(255, 255, 255, 0.96);
}

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

.mobile-nav-link {
  display: block;
  padding: 10px 0;
  color: #374151;
  font-weight: 600;
}

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

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

.mobile-search button {
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  color: white;
  background: linear-gradient(135deg, var(--color-red), var(--color-pink));
}

.hero-section {
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
  background: #111827;
}

.hero-background,
.detail-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #111827, #7f1d1d);
}

.hero-background img,
.detail-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 24, 39, 0.9), rgba(17, 24, 39, 0.64) 48%, rgba(17, 24, 39, 0.12));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 84px 24px 96px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 40px;
  align-items: end;
}

.hero-copy {
  max-width: 720px;
  animation: slideIn 0.5s ease-out both;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(239, 68, 68, 0.14);
  color: #fecaca;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}

.hero-copy h1,
.page-hero h1,
.detail-copy h1 {
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  font-size: clamp(44px, 7vw, 76px);
  margin: 0 0 24px;
}

.hero-copy h1 span {
  color: #fca5a5;
}

.hero-copy p {
  max-width: 760px;
  color: #e5e7eb;
  font-size: clamp(18px, 2.3vw, 26px);
  margin-bottom: 28px;
}

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

.hero-tags span,
.detail-meta span,
.movie-meta-row span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: inherit;
  font-size: 13px;
}

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

.primary-button,
.secondary-button,
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 0;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
  padding: 15px 26px;
  color: white;
  background: linear-gradient(90deg, var(--color-red), var(--color-pink));
  box-shadow: 0 16px 32px rgba(239, 68, 68, 0.28);
}

.secondary-button {
  padding: 14px 24px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.secondary-button.on-light {
  color: #374151;
  border-color: var(--color-border);
  background: white;
}

.primary-button:hover,
.secondary-button:hover,
.cta-button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-strong);
}

.hero-panel {
  border-radius: 28px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-strong);
}

.hero-panel strong {
  display: block;
  font-size: 22px;
  margin-bottom: 8px;
}

.hero-panel p {
  color: #e5e7eb;
  margin-bottom: 18px;
}

.hero-thumb-grid {
  display: grid;
  gap: 12px;
}

.hero-thumb {
  display: grid;
  grid-template-columns: 76px 1fr;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(4px);
}

.hero-thumb img {
  width: 76px;
  height: 48px;
  object-fit: cover;
  border-radius: 12px;
}

.hero-thumb span {
  font-weight: 700;
  line-height: 1.3;
}

.hero-bottom-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 110px;
  background: linear-gradient(0deg, #fef2f2, rgba(254, 242, 242, 0));
}

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

.content-section.compact {
  padding-top: 64px;
  padding-bottom: 64px;
}

.soft-section {
  background: linear-gradient(135deg, #fee2e2, #fdf2f8 50%, #ffffff);
}

.soft-section.pink {
  background: linear-gradient(135deg, #fce7f3, #fef2f2 60%, #ffffff);
}

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

.section-heading > div {
  position: relative;
}

.section-icon {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--color-red), var(--color-pink));
  color: white;
  box-shadow: 0 12px 28px rgba(239, 68, 68, 0.22);
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.section-heading p {
  color: var(--color-muted);
  margin-top: 8px;
}

.section-more {
  color: var(--color-red-dark);
  font-weight: 800;
  white-space: nowrap;
}

.section-more span {
  display: inline-block;
  transition: transform 0.2s ease;
}

.section-more:hover span {
  transform: translateX(4px);
}

.movie-grid {
  display: grid;
  gap: 24px;
}

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

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

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

.movie-card {
  overflow: hidden;
  border-radius: 22px;
  background: white;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.poster-frame {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #7f1d1d, #db2777);
}

.poster-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.22), transparent 28%), linear-gradient(135deg, rgba(239, 68, 68, 0.7), rgba(236, 72, 153, 0.7));
}

.poster-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, opacity 0.2s ease;
}

.poster-frame img.image-error {
  opacity: 0;
}

.movie-card .poster-frame {
  height: 280px;
  display: block;
}

.movie-card:hover .poster-frame img {
  transform: scale(1.08);
}

.poster-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.62));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.movie-card:hover .poster-overlay {
  opacity: 1;
}

.play-circle,
.play-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-red-dark);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.play-circle {
  width: 64px;
  height: 64px;
  font-size: 26px;
}

.category-badge,
.duration-badge {
  position: absolute;
  z-index: 3;
  border-radius: 999px;
  padding: 5px 10px;
  color: white;
  font-size: 12px;
  font-weight: 800;
}

.category-badge {
  top: 14px;
  left: 14px;
  background: rgba(239, 68, 68, 0.9);
  backdrop-filter: blur(8px);
}

.duration-badge {
  right: 14px;
  bottom: 14px;
  background: rgba(0, 0, 0, 0.68);
}

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

.movie-card-title {
  display: block;
  margin-bottom: 8px;
  color: var(--color-text);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.35;
  transition: color 0.2s ease;
}

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

.movie-card-desc {
  display: -webkit-box;
  min-height: 44px;
  overflow: hidden;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.55;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.movie-meta-row span {
  background: #f3f4f6;
  border-color: #f3f4f6;
  color: #4b5563;
}

.movie-card-list {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 18px;
  padding: 14px;
  align-items: stretch;
}

.poster-frame-list {
  height: 120px;
  border-radius: 16px;
}

.movie-card-list .movie-card-body {
  padding: 4px 0;
}

.movie-card-list .play-badge {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  transform: translate(-50%, -50%);
}

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

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

.category-tile {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border-radius: 22px;
  background: white;
  padding: 22px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.category-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-red), var(--color-pink));
  color: white;
}

.category-tile strong {
  font-size: 18px;
}

.category-tile small {
  color: var(--color-muted);
}

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

.ranking-row {
  display: grid;
  grid-template-columns: 54px 124px 1fr auto;
  align-items: center;
  gap: 16px;
  border-radius: 18px;
  background: white;
  padding: 14px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ranking-row:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-strong);
}

.ranking-index {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--color-red), var(--color-pink));
}

.ranking-poster {
  height: 76px;
  border-radius: 14px;
}

.ranking-info strong {
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
}

.ranking-info small {
  color: var(--color-muted);
}

.ranking-action {
  color: var(--color-red-dark);
  font-weight: 900;
}

.cta-section {
  max-width: 1180px;
  margin: 72px auto;
  padding: 64px 24px;
  border-radius: 34px;
  text-align: center;
  color: white;
  background: linear-gradient(90deg, var(--color-red), var(--color-pink));
  box-shadow: var(--shadow-strong);
}

.cta-section h2 {
  margin: 0 0 12px;
  font-size: clamp(32px, 5vw, 46px);
  font-weight: 900;
}

.cta-section p {
  max-width: 680px;
  margin: 0 auto 26px;
  color: #fee2e2;
  font-size: 18px;
}

.cta-button {
  padding: 14px 28px;
  color: var(--color-red-dark);
  background: white;
}

.page-hero {
  position: relative;
  background: linear-gradient(135deg, #991b1b, #be185d 55%, #111827);
  color: white;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto -20% -45% 35%;
  height: 360px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  filter: blur(10px);
}

.small-page-hero > div {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 82px 24px 76px;
}

.page-hero h1 {
  max-width: 900px;
  margin: 0 0 16px;
  font-size: clamp(38px, 6vw, 64px);
}

.page-hero p {
  max-width: 820px;
  color: #f9fafb;
  font-size: 18px;
}

.pill-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 11px 16px;
  background: white;
  color: #374151;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, color 0.2s ease;
}

.pill-link:hover {
  transform: translateY(-2px);
  color: var(--color-red-dark);
}

.pill-link span {
  color: var(--color-red-dark);
  font-size: 12px;
}

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

.local-filter {
  width: min(520px, 100%);
  padding: 13px 18px;
}

.toolbar-count {
  color: var(--color-muted);
  font-weight: 800;
}

.detail-hero {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  color: white;
  background: #111827;
}

.detail-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 24, 39, 0.94), rgba(17, 24, 39, 0.68), rgba(17, 24, 39, 0.18));
}

.detail-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 38px 24px 70px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  color: #f3f4f6;
  font-size: 14px;
  margin-bottom: 38px;
}

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

.detail-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 44px;
  align-items: center;
}

.detail-poster {
  height: 450px;
  border-radius: 28px;
  box-shadow: var(--shadow-strong);
}

.detail-copy h1 {
  max-width: 820px;
  margin: 0 0 20px;
  font-size: clamp(40px, 6vw, 70px);
}

.detail-one-line {
  max-width: 820px;
  color: #e5e7eb;
  font-size: 20px;
  line-height: 1.7;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
}

.tag-cloud a {
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(255, 255, 255, 0.12);
  color: #f9fafb;
  font-weight: 700;
}

.player-section {
  padding-top: 58px;
}

.video-shell {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #020617;
  box-shadow: var(--shadow-strong);
}

.video-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #020617;
}

.video-play-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  color: white;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.18), rgba(0, 0, 0, 0.65));
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.video-play-overlay span {
  width: 88px;
  height: 88px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--color-red-dark);
  background: white;
  font-size: 34px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}

.video-play-overlay strong {
  font-size: 22px;
}

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

.video-message {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 5;
  margin: 0;
  padding: 8px 12px;
  border-radius: 999px;
  color: white;
  background: rgba(0, 0, 0, 0.55);
  font-size: 13px;
}

.video-shell.is-playing .video-message {
  display: none;
}

.detail-text-section {
  padding-top: 18px;
}

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

.prose-card {
  border-radius: 24px;
  background: white;
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

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

.prose-card p,
.prose-card li {
  color: #4b5563;
  line-height: 1.9;
}

.prose-card ul {
  margin: 0;
  padding-left: 20px;
}

.search-panel {
  border-radius: 26px;
  background: white;
  box-shadow: var(--shadow-soft);
  padding: 26px;
  margin-bottom: 24px;
}

.search-panel > label {
  display: block;
  margin-bottom: 10px;
  font-weight: 900;
}

.search-panel input {
  width: 100%;
  padding: 14px 18px;
}

.filter-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.filter-grid label {
  display: grid;
  gap: 8px;
  font-weight: 800;
  color: #374151;
}

.filter-grid select {
  padding: 13px 16px;
  border-radius: 18px;
}

.search-actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.search-summary {
  margin: 0 0 24px;
  color: var(--color-muted);
  font-weight: 800;
}

.columns-list {
  columns: 2;
}

.compact-list {
  columns: 3;
  font-size: 14px;
}

.all-links {
  margin-top: 24px;
}

.site-footer {
  margin-top: 72px;
  color: #d1d5db;
  background: linear-gradient(135deg, #111827, #1f2937);
}

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

.footer-brand p {
  max-width: 380px;
  color: #9ca3af;
  margin-top: 14px;
  line-height: 1.75;
}

.footer-column h2 {
  margin: 0 0 16px;
  color: #f87171;
  font-size: 18px;
  font-weight: 900;
}

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

.footer-column li + li {
  margin-top: 10px;
}

.footer-column a {
  color: #9ca3af;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: #f87171;
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 24px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #9ca3af;
  font-size: 14px;
}

.hidden-by-filter {
  display: none !important;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

  .hero-panel {
    max-width: 680px;
  }

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

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

@media (max-width: 860px) {
  .hero-section {
    min-height: 680px;
  }

  .hero-content {
    padding-top: 64px;
    padding-bottom: 74px;
  }

  .hero-shade,
  .detail-overlay {
    background: rgba(17, 24, 39, 0.78);
  }

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

  .movie-grid-3,
  .movie-grid-4,
  .movie-list-grid,
  .detail-text-grid,
  .filter-grid {
    grid-template-columns: 1fr;
  }

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

  .movie-card-list {
    grid-template-columns: 135px 1fr;
  }

  .poster-frame-list {
    height: 108px;
  }

  .ranking-row {
    grid-template-columns: 48px 92px 1fr;
  }

  .ranking-action {
    display: none;
  }

  .detail-poster {
    width: min(320px, 100%);
    height: 420px;
  }

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

  .compact-list,
  .columns-list {
    columns: 1;
  }
}

@media (max-width: 560px) {
  .site-header-inner {
    padding: 0 16px;
  }

  .site-logo-text {
    font-size: 18px;
  }

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

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

  .primary-button,
  .secondary-button,
  .cta-button {
    width: 100%;
  }

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

  .poster-frame-list {
    height: 190px;
  }

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

  .ranking-row {
    grid-template-columns: 42px 1fr;
  }

  .ranking-poster {
    display: none;
  }

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