:root {
  --color-silver: #c0c0c0;
  --color-silver-light: #e8e8e8;
  --color-silver-dark: #a8a8a8;
  --color-moonlight: #f5f5f7;
  --color-night-blue: #1a1f35;
  --color-deep-blue: #0f1419;
  --color-star-white: #ffffff;
  --color-accent-silver: #d4d4d8;
  --color-text-primary: #f8fafc;
  --color-text-secondary: #cbd5e1;
  --color-text-light: #94a3b8;
  --gradient-silver: linear-gradient(135deg, #e8e8e8 0%, #c0c0c0 100%);
  --gradient-moonlight: linear-gradient(180deg, #0f1419 0%, #1a1f35 50%, #2a3347 100%);
  --gradient-panel: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  --gradient-shine: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
  --shadow-soft: 0 24px 70px rgba(0, 0, 0, 0.35);
  --shadow-card: 0 18px 40px rgba(0, 0, 0, 0.28);
  --border-soft: 1px solid rgba(226, 232, 240, 0.12);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-deep-blue);
  color: var(--color-text-primary);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Roboto, Arial, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 12% 15%, rgba(192, 192, 192, 0.14), transparent 28%),
    radial-gradient(circle at 82% 8%, rgba(148, 163, 184, 0.16), transparent 30%),
    radial-gradient(circle at 50% 100%, rgba(59, 130, 246, 0.12), transparent 34%),
    var(--gradient-moonlight);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.58), transparent 82%);
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.text-gradient {
  background: linear-gradient(135deg, #ffffff, #c0c0c0 46%, #94a3b8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.glass-effect {
  border: var(--border-soft);
  background: rgba(15, 20, 25, 0.66);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.card-hover {
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease,
    background 0.32s ease;
}

.card-hover:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.42);
  border-color: rgba(226, 232, 240, 0.26);
}

.fade-in {
  animation: fadeIn 0.55s ease both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  from {
    transform: translateX(-120%);
  }

  to {
    transform: translateX(120%);
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-left: 0;
  border-right: 0;
  border-top: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 22px;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  color: #0f1419;
  background: var(--gradient-silver);
  box-shadow: 0 10px 30px rgba(192, 192, 192, 0.22);
  font-size: 19px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  color: var(--color-text-secondary);
  font-size: 14px;
}

.main-nav a {
  transition: color 0.22s ease;
}

.main-nav a:hover {
  color: #ffffff;
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  padding: 5px;
  border: var(--border-soft);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.72);
}

.header-search input {
  width: 210px;
  border: 0;
  outline: 0;
  color: #f8fafc;
  background: transparent;
  padding: 8px 8px 8px 14px;
}

.header-search input::placeholder,
.mobile-search input::placeholder,
.filter-input::placeholder {
  color: #64748b;
}

.header-search button,
.mobile-search button,
.primary-btn,
.secondary-btn,
.filter-button,
.load-more {
  border: 0;
  border-radius: 999px;
  padding: 9px 17px;
  color: #0f1419;
  background: var(--gradient-silver);
  font-weight: 700;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    opacity 0.22s ease;
}

.header-search button:hover,
.mobile-search button:hover,
.primary-btn:hover,
.filter-button:hover,
.load-more:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(192, 192, 192, 0.18);
}

.secondary-btn {
  color: #f8fafc;
  border: var(--border-soft);
  background: rgba(255, 255, 255, 0.08);
}

.secondary-btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.14);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: var(--border-soft);
  border-radius: 14px;
  color: #f8fafc;
  background: rgba(255, 255, 255, 0.08);
}

.mobile-panel {
  display: none;
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto 14px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.92);
  border: var(--border-soft);
}

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

.mobile-panel nav,
.footer-links {
  display: grid;
  gap: 10px;
}

.mobile-panel nav {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 14px;
  color: var(--color-text-secondary);
}

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

.mobile-search input {
  min-width: 0;
  flex: 1;
  border: var(--border-soft);
  border-radius: 999px;
  color: #f8fafc;
  background: rgba(255, 255, 255, 0.06);
  padding: 10px 14px;
  outline: 0;
}

.hero-carousel {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  border-bottom: var(--border-soft);
}

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

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

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 20, 25, 0.92), rgba(15, 20, 25, 0.58), rgba(15, 20, 25, 0.86)),
    linear-gradient(180deg, rgba(15, 20, 25, 0.2), #0f1419 96%),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  filter: saturate(1.04);
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 24% 28%, rgba(226, 232, 240, 0.18), transparent 30%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.72fr);
  gap: 48px;
  align-items: center;
  min-height: 720px;
  padding-top: 110px;
  padding-bottom: 72px;
}

.hero-kicker,
.section-kicker,
.detail-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 12px;
  border: var(--border-soft);
  border-radius: 999px;
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
}

.hero-copy h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.hero-copy p {
  max-width: 720px;
  margin: 24px 0 0;
  color: #cbd5e1;
  font-size: clamp(17px, 2vw, 22px);
}

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

.hero-tags,
.tag-row,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

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

.hero-tags span,
.tag-row span,
.detail-tags span,
.meta-chip,
.category-pill {
  border: var(--border-soft);
  border-radius: 999px;
  color: #dbeafe;
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 10px;
  font-size: 12px;
}

.hero-poster {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 34px;
  border: var(--border-soft);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
}

.hero-poster::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, transparent 54%, rgba(15, 20, 25, 0.82));
}

.hero-poster img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.hero-poster span {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 3;
  color: #ffffff;
  font-weight: 800;
  font-size: 26px;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 46px;
  height: 46px;
  border: var(--border-soft);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.58);
  transform: translateY(-50%);
  transition: background 0.22s ease;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.16);
}

.hero-prev {
  left: max(18px, calc((100% - 1280px) / 2 - 70px));
}

.hero-next {
  right: max(18px, calc((100% - 1280px) / 2 - 70px));
}

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

.hero-dot {
  width: 34px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.hero-dot.is-active {
  background: #e2e8f0;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  padding: 138px 0 62px;
  border-bottom: var(--border-soft);
}

.page-hero::before,
.detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 20, 25, 0.92), rgba(15, 20, 25, 0.64), rgba(15, 20, 25, 0.9)),
    var(--hero-image, radial-gradient(circle at 20% 20%, rgba(192, 192, 192, 0.15), transparent 34%));
  background-size: cover;
  background-position: center;
  filter: saturate(1.04);
}

.page-hero::after,
.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, #0f1419 100%);
}

.page-hero .section-container,
.detail-hero .section-container {
  position: relative;
  z-index: 2;
}

.page-title {
  max-width: 850px;
  margin: 0;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.page-desc {
  max-width: 760px;
  margin: 20px 0 0;
  color: #cbd5e1;
  font-size: 18px;
}

.content-section {
  padding: 58px 0;
}

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

.section-head h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.section-head p {
  max-width: 620px;
  margin: 10px 0 0;
  color: #94a3b8;
}

.section-link {
  color: #e2e8f0;
  font-weight: 800;
}

.movie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(178px, 1fr));
  gap: 20px;
}

.movie-card {
  overflow: hidden;
  border: var(--border-soft);
  border-radius: 24px;
  background: var(--gradient-panel);
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.poster-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, 0.78));
}

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

.movie-card:hover .poster-link img {
  transform: scale(1.06);
}

.poster-badge,
.poster-score {
  position: absolute;
  z-index: 2;
  top: 12px;
  border-radius: 999px;
  padding: 5px 9px;
  color: #0f1419;
  background: rgba(226, 232, 240, 0.92);
  font-weight: 800;
  font-size: 12px;
}

.poster-badge {
  left: 12px;
}

.poster-score {
  right: 12px;
}

.card-body {
  padding: 15px;
}

.movie-title {
  display: block;
  min-height: 48px;
  color: #ffffff;
  font-weight: 800;
  font-size: 16px;
  line-height: 1.35;
}

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

.movie-desc {
  display: -webkit-box;
  min-height: 45px;
  margin: 9px 0 10px;
  overflow: hidden;
  color: #94a3b8;
  font-size: 13px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  color: #cbd5e1;
  font-size: 12px;
}

.movie-meta span:not(:last-child)::after {
  content: "·";
  margin-left: 7px;
  color: #475569;
}

.tag-row {
  margin-top: 12px;
}

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

.category-card {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  padding: 24px;
  border: var(--border-soft);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(30, 41, 59, 0.4));
  box-shadow: var(--shadow-card);
}

.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background: radial-gradient(circle at 25% 10%, #ffffff, transparent 28%);
}

.category-card h3,
.category-card p,
.category-card span {
  position: relative;
}

.category-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.category-card p {
  color: #cbd5e1;
  margin: 0 0 24px;
}

.category-card span {
  color: #ffffff;
  font-weight: 800;
}

.quick-panel {
  position: relative;
  z-index: 6;
  margin-top: -58px;
}

.quick-panel-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 24px;
  border-radius: 30px;
  background: rgba(15, 23, 42, 0.78);
  border: var(--border-soft);
  box-shadow: var(--shadow-soft);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.quick-panel h2 {
  margin: 0 0 8px;
  font-size: 24px;
}

.quick-panel p {
  margin: 0;
  color: #94a3b8;
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.rank-item a {
  display: grid;
  grid-template-columns: 86px 68px minmax(0, 1fr) auto;
  gap: 15px;
  align-items: center;
  padding: 12px;
  border: var(--border-soft);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease;
}

.rank-item a:hover {
  transform: translateX(4px);
  border-color: rgba(226, 232, 240, 0.26);
  background: rgba(255, 255, 255, 0.09);
}

.rank-number {
  color: #f8fafc;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.rank-item img {
  width: 68px;
  height: 92px;
  border-radius: 14px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.08);
}

.rank-copy {
  min-width: 0;
}

.rank-copy strong {
  display: block;
  overflow: hidden;
  color: #ffffff;
  font-size: 17px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rank-copy em {
  display: block;
  margin-top: 4px;
  overflow: hidden;
  color: #94a3b8;
  font-style: normal;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rank-score {
  min-width: 52px;
  color: #0f1419;
  border-radius: 999px;
  background: var(--gradient-silver);
  padding: 7px 10px;
  text-align: center;
  font-weight: 900;
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px 180px;
  gap: 12px;
  margin-bottom: 26px;
  padding: 16px;
  border: var(--border-soft);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.055);
}

.filter-input,
.filter-select {
  width: 100%;
  border: var(--border-soft);
  border-radius: 16px;
  color: #f8fafc;
  background: rgba(15, 23, 42, 0.78);
  outline: 0;
  padding: 12px 14px;
}

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

.no-results {
  display: none;
  padding: 30px;
  border: var(--border-soft);
  border-radius: 22px;
  color: #cbd5e1;
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
}

.no-results.is-visible {
  display: block;
}

.detail-hero {
  padding-bottom: 74px;
}

.detail-hero-grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 38px;
  align-items: end;
}

.detail-poster {
  overflow: hidden;
  border: var(--border-soft);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
}

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

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: #94a3b8;
  font-size: 14px;
}

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

.detail-title {
  max-width: 900px;
  margin: 0;
  font-size: clamp(34px, 5.5vw, 70px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.detail-lead {
  max-width: 880px;
  margin: 22px 0 0;
  color: #dbeafe;
  font-size: 19px;
}

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

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

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

.player-card,
.story-block,
.side-card {
  border: var(--border-soft);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-card);
}

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

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

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

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 12px;
  border: 0;
  color: #ffffff;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.12), transparent 35%),
    linear-gradient(180deg, rgba(2, 6, 23, 0.25), rgba(2, 6, 23, 0.72));
  z-index: 2;
}

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

.play-icon {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 999px;
  color: #0f1419;
  background: var(--gradient-silver);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
  font-size: 34px;
  transform: translateX(2px);
}

.player-overlay span:last-child {
  font-weight: 900;
  letter-spacing: 0.04em;
}

.story-block {
  padding: 28px;
}

.story-block + .story-block {
  margin-top: 24px;
}

.story-block h2 {
  margin: 0 0 16px;
  font-size: 27px;
}

.story-block p {
  margin: 0;
  color: #cbd5e1;
  font-size: 16px;
}

.story-block p + p {
  margin-top: 14px;
}

.side-card {
  position: sticky;
  top: 100px;
  padding: 18px;
}

.side-card h2 {
  margin: 0 0 16px;
  font-size: 20px;
}

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

.mini-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 8px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
  transition: background 0.22s ease, transform 0.22s ease;
}

.mini-card:hover {
  transform: translateX(3px);
  background: rgba(255, 255, 255, 0.1);
}

.mini-card img {
  width: 72px;
  height: 98px;
  object-fit: cover;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.mini-card strong,
.mini-card small {
  display: block;
}

.mini-card strong {
  overflow: hidden;
  color: #ffffff;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.mini-card small {
  display: -webkit-box;
  margin-top: 5px;
  overflow: hidden;
  color: #94a3b8;
  font-size: 12px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

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

.search-term {
  color: #ffffff;
  font-weight: 900;
}

.site-footer {
  margin-top: 42px;
  border-top: var(--border-soft);
  background: rgba(15, 23, 42, 0.5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 32px;
  padding: 42px 0;
}

.footer-brand {
  margin-bottom: 14px;
}

.site-footer p {
  max-width: 440px;
  margin: 0;
  color: #94a3b8;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: #ffffff;
}

.footer-links a {
  color: #94a3b8;
  transition: color 0.22s ease;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  border-top: var(--border-soft);
  color: #64748b;
  font-size: 14px;
}

.load-wrap {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

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

  .header-search {
    margin-left: auto;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

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

  .hero-poster {
    display: none;
  }

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

  .side-card {
    position: static;
  }
}

@media (max-width: 760px) {
  .section-container {
    width: min(100% - 22px, 1280px);
  }

  .header-inner {
    min-height: 66px;
  }

  .brand {
    font-size: 18px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 12px;
  }

  .header-search {
    display: none;
  }

  .hero-carousel {
    min-height: 650px;
  }

  .hero-layout {
    min-height: 650px;
    padding-top: 94px;
    padding-bottom: 82px;
  }

  .hero-copy h1 {
    font-size: clamp(38px, 13vw, 58px);
  }

  .hero-copy p {
    font-size: 16px;
  }

  .hero-arrow {
    display: none;
  }

  .quick-panel {
    margin-top: -34px;
  }

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

  .section-head {
    display: block;
  }

  .section-link {
    display: inline-block;
    margin-top: 12px;
  }

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

  .card-body {
    padding: 12px;
  }

  .movie-title {
    min-height: 42px;
    font-size: 14px;
  }

  .movie-desc {
    min-height: 40px;
    font-size: 12px;
  }

  .tag-row span:nth-child(n + 3) {
    display: none;
  }

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

  .rank-item a {
    grid-template-columns: 54px 56px minmax(0, 1fr);
  }

  .rank-item img {
    width: 56px;
    height: 78px;
  }

  .rank-score {
    display: none;
  }

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

  .detail-poster {
    width: 190px;
  }

  .detail-title {
    font-size: clamp(34px, 12vw, 54px);
  }

  .story-block {
    padding: 20px;
  }

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

  .footer-bottom {
    display: block;
  }

  .footer-bottom span {
    display: block;
  }

  .footer-bottom span + span {
    margin-top: 8px;
  }
}

@media (max-width: 420px) {
  .movie-grid {
    grid-template-columns: 1fr;
  }

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

.category-sample {
  display: none;
}

.category-sample a {
  color: #94a3b8;
}
