:root {
  color-scheme: light;
  --rose-50: #fff1f2;
  --rose-100: #ffe4e6;
  --rose-500: #f43f5e;
  --rose-600: #e11d48;
  --pink-500: #ec4899;
  --purple-600: #9333ea;
  --blue-600: #2563eb;
  --cyan-500: #06b6d4;
  --amber-500: #f59e0b;
  --orange-500: #f97316;
  --green-500: #22c55e;
  --indigo-600: #4f46e5;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --shadow-soft: 0 20px 45px rgba(15, 23, 42, 0.12);
  --shadow-card: 0 14px 30px rgba(15, 23, 42, 0.10);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  background: linear-gradient(135deg, #f9fafb 0%, #fff1f2 48%, #fdf2f8 100%);
  color: var(--gray-800);
}

body.no-scroll {
  overflow: hidden;
}

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

button,
input,
select {
  font: inherit;
}

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

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(244, 63, 94, 0.12);
}

.nav-wrap {
  height: 72px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--gray-900);
  white-space: nowrap;
}

.logo-mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-500), var(--pink-500));
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(244, 63, 94, 0.32);
  font-size: 14px;
}

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

.nav-link {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--gray-600);
  font-weight: 600;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--rose-600);
  background: var(--rose-50);
}

.nav-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: var(--gray-100);
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.nav-search input {
  width: 160px;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 8px 6px 8px 12px;
}

.nav-search button,
.search-hero-form button {
  border: 0;
  border-radius: 999px;
  padding: 8px 16px;
  background: linear-gradient(135deg, var(--rose-500), var(--pink-500));
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: var(--rose-50);
  color: var(--rose-600);
  cursor: pointer;
}

.hero-section {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: linear-gradient(90deg, #881337 0%, #831843 52%, #581c87 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.52;
  mix-blend-mode: overlay;
  transform: scale(1.02);
}

.hero-mask {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 72% 40%, rgba(236, 72, 153, 0.32), transparent 32%), rgba(0, 0, 0, 0.45);
}

.hero-inner {
  position: relative;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 360px;
  align-items: center;
  gap: 48px;
}

.hero-copy {
  color: #ffffff;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #fde68a;
  font-weight: 800;
  font-size: 18px;
}

.hero-copy h1,
.page-hero h1 {
  margin: 0 0 22px;
  font-size: clamp(42px, 8vw, 70px);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.hero-copy p,
.page-hero p {
  margin: 0;
  font-size: clamp(18px, 2.4vw, 24px);
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.7;
}

.hero-title-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 26px 0 12px;
}

.hero-title-card span,
.detail-meta span,
.mini-meta b {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.hero-title-card strong {
  font-size: 20px;
  font-weight: 800;
}

.hero-summary {
  max-width: 640px;
  font-size: 18px !important;
  color: rgba(255, 255, 255, 0.82) !important;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 13px 22px;
  min-height: 48px;
  border: 0;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--rose-500), var(--pink-500));
  box-shadow: 0 16px 34px rgba(244, 63, 94, 0.34);
}

.btn-glass {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(12px);
}

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

.btn-light {
  color: var(--rose-600);
  background: #ffffff;
}

.btn.full {
  width: 100%;
}

.hero-card {
  display: block;
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
  transform: rotate(2deg);
  transition: transform 0.25s ease;
}

.hero-card:hover {
  transform: rotate(0deg) translateY(-6px);
}

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

.hero-card span {
  display: block;
  padding: 20px;
  color: #ffffff;
}

.hero-card b,
.hero-card em {
  display: block;
}

.hero-card b {
  margin-bottom: 8px;
  font-size: 20px;
}

.hero-card em {
  font-style: normal;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

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

.white-band {
  background: rgba(255, 255, 255, 0.82);
}

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

.section-head > div {
  min-width: 0;
}

.section-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 10px;
  border-radius: 14px;
  background: var(--rose-50);
  color: var(--rose-600);
  font-weight: 900;
}

.section-icon.light {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.section-head h2,
.rank-copy h2,
.detail-card h1,
.page-hero h1 {
  margin: 0 0 8px;
  color: var(--gray-800);
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.section-head p,
.rank-copy p {
  margin: 0;
  color: var(--gray-600);
  line-height: 1.7;
}

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

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

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

.category-card {
  position: relative;
  min-height: 210px;
  padding: 26px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #ffffff;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.18);
}

.category-glow {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.category-card:hover .category-glow {
  opacity: 1;
}

.category-card img {
  position: absolute;
  right: -18px;
  bottom: -32px;
  width: 130px;
  height: 180px;
  object-fit: cover;
  border-radius: 18px;
  opacity: 0.16;
  transform: rotate(8deg);
}

.category-icon,
.category-card strong,
.category-card em,
.category-count {
  position: relative;
  z-index: 2;
  display: block;
}

.category-icon {
  font-size: 42px;
  margin-bottom: 14px;
}

.category-card strong {
  font-size: 20px;
  margin-bottom: 10px;
}

.category-card em {
  max-width: 230px;
  min-height: 64px;
  font-style: normal;
  color: var(--gray-600);
  line-height: 1.6;
}

.category-count {
  margin-top: 16px;
  color: var(--rose-600);
  font-weight: 800;
}

.tone-rose .category-glow,
.page-hero.tone-rose {
  background: linear-gradient(135deg, #f43f5e, #ec4899);
}

.tone-blue .category-glow,
.page-hero.tone-blue {
  background: linear-gradient(135deg, #2563eb, #06b6d4);
}

.tone-purple .category-glow,
.page-hero.tone-purple {
  background: linear-gradient(135deg, #9333ea, #ec4899);
}

.tone-pink .category-glow,
.page-hero.tone-pink {
  background: linear-gradient(135deg, #ec4899, #fb7185);
}

.tone-amber .category-glow,
.page-hero.tone-amber,
.page-hero.tone-gold {
  background: linear-gradient(135deg, #f59e0b, #f97316);
}

.tone-slate .category-glow,
.page-hero.tone-slate {
  background: linear-gradient(135deg, #334155, #0f172a);
}

.tone-orange .category-glow,
.page-hero.tone-orange {
  background: linear-gradient(135deg, #f97316, #fb7185);
}

.tone-cyan .category-glow,
.page-hero.tone-cyan {
  background: linear-gradient(135deg, #0891b2, #2563eb);
}

.tone-green .category-glow,
.page-hero.tone-green {
  background: linear-gradient(135deg, #16a34a, #22c55e);
}

.tone-indigo .category-glow,
.page-hero.tone-indigo {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
}

.tone-fuchsia .category-glow,
.page-hero.tone-fuchsia {
  background: linear-gradient(135deg, #c026d3, #ec4899);
}

.tone-gold .category-glow {
  background: linear-gradient(135deg, #f59e0b, #facc15);
}

.category-card:hover strong,
.category-card:hover em,
.category-card:hover .category-count {
  color: #ffffff;
}

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

.wide-card {
  display: block;
  color: var(--gray-800);
}

.wide-thumb,
.poster-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  background: #0f172a;
  box-shadow: var(--shadow-card);
}

.wide-thumb {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-xl);
  margin-bottom: 16px;
}

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

.wide-card:hover img,
.poster-card:hover img,
.related-row:hover img {
  transform: scale(1.08);
}

.poster-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.38), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

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

.poster-overlay span {
  color: #ffffff;
  font-weight: 800;
}

.hot-label,
.corner-label,
.year-label,
.rank-badge {
  position: absolute;
  z-index: 3;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.hot-label,
.corner-label {
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  background: var(--rose-500);
  color: #ffffff;
}

.year-label {
  top: 12px;
  right: 12px;
  padding: 6px 10px;
  background: rgba(0, 0, 0, 0.64);
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.rank-badge {
  left: 12px;
  bottom: 12px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.92);
  color: var(--rose-600);
}

.wide-body,
.poster-info {
  display: block;
}

.mini-meta {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.mini-meta b {
  background: var(--rose-50);
  color: var(--rose-600);
  backdrop-filter: none;
}

.wide-body strong,
.poster-info strong {
  display: block;
  color: var(--gray-800);
  transition: color 0.2s ease;
}

.wide-body strong {
  font-size: 20px;
  margin-bottom: 8px;
}

.wide-card:hover strong,
.poster-card:hover strong,
.related-row:hover strong,
.ranking-item:hover strong,
.rank-row:hover strong {
  color: var(--rose-600);
}

.wide-body em,
.poster-info em {
  display: block;
  color: var(--gray-600);
  font-style: normal;
  line-height: 1.6;
}

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

.poster-grid.six {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

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

.poster-grid.compact {
  gap: 18px;
}

.poster-card {
  display: block;
}

.poster-thumb {
  aspect-ratio: 2 / 3;
  border-radius: 18px;
  margin-bottom: 12px;
}

.poster-info strong {
  font-size: 15px;
  line-height: 1.35;
  min-height: 40px;
}

.poster-info span {
  display: block;
  margin: 5px 0 4px;
  color: var(--gray-500);
  font-size: 12px;
}

.poster-info em {
  font-size: 12px;
}

.rank-band {
  background: linear-gradient(90deg, #881337, #831843, #581c87);
  color: #ffffff;
}

.rank-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.4fr;
  gap: 44px;
  align-items: start;
}

.rank-copy h2,
.rank-copy p {
  color: #ffffff;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 36px 54px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.rank-row > span:first-child {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--rose-600);
  font-weight: 900;
}

.rank-row img {
  width: 54px;
  height: 72px;
  border-radius: 10px;
  object-fit: cover;
}

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

.rank-row strong {
  color: #ffffff;
  font-size: 14px;
  margin-bottom: 4px;
}

.rank-row em {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-style: normal;
}

.page-hero {
  padding: 78px 0;
  color: #ffffff;
  overflow: hidden;
  position: relative;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

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

.page-hero h1,
.page-hero p {
  color: #ffffff;
}

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

.filter-panel {
  display: grid;
  grid-template-columns: 1.8fr repeat(3, minmax(150px, 0.7fr));
  gap: 14px;
  padding: 18px;
  margin-bottom: 28px;
  border-radius: var(--radius-xl);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.filter-panel input,
.filter-panel select,
.search-hero-form input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 0 14px;
  outline: 0;
  color: var(--gray-700);
  background: #ffffff;
}

.filter-panel input:focus,
.filter-panel select:focus,
.search-hero-form input:focus {
  border-color: var(--rose-500);
  box-shadow: 0 0 0 4px rgba(244, 63, 94, 0.12);
}

.empty-state {
  display: none;
  padding: 36px;
  text-align: center;
  border-radius: var(--radius-xl);
  background: #ffffff;
  color: var(--gray-500);
  box-shadow: var(--shadow-card);
}

.empty-state.show {
  display: block;
}

.search-hero-form {
  display: flex;
  gap: 12px;
  max-width: 680px;
  margin-top: 28px;
}

.search-hero-form input {
  min-height: 54px;
}

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

.ranking-item {
  display: grid;
  grid-template-columns: 58px 68px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 14px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.ranking-num {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--rose-50);
  color: var(--rose-600);
  font-weight: 900;
}

.ranking-item img {
  width: 68px;
  height: 92px;
  border-radius: 12px;
  object-fit: cover;
}

.ranking-main strong,
.ranking-main em,
.ranking-meta {
  display: block;
}

.ranking-main strong {
  margin-bottom: 6px;
  font-size: 18px;
}

.ranking-main em,
.ranking-meta {
  color: var(--gray-500);
  font-style: normal;
  line-height: 1.5;
}

.detail-section {
  padding: 28px 0 70px;
}

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

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

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

.detail-main,
.detail-side {
  min-width: 0;
}

.video-shell {
  position: relative;
  overflow: hidden;
  margin-bottom: 22px;
  border-radius: var(--radius-xl);
  background: #000000;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

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

.video-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  background: rgba(0, 0, 0, 0.32);
  cursor: pointer;
  transition: opacity 0.2s ease;
}

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

.play-circle {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  padding-left: 6px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.20);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(14px);
  font-size: 34px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.detail-card,
.review-card,
.side-card {
  border-radius: var(--radius-xl);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.detail-card,
.review-card {
  padding: 28px;
  margin-bottom: 22px;
}

.detail-card h1 {
  margin-bottom: 18px;
}

.detail-card h2,
.review-card h2,
.side-card h2 {
  margin: 24px 0 12px;
  color: var(--gray-800);
  font-size: 22px;
  font-weight: 900;
}

.detail-card p,
.review-card p,
.side-card p {
  color: var(--gray-700);
  line-height: 1.85;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.detail-meta span {
  background: var(--rose-50);
  color: var(--rose-600);
  backdrop-filter: none;
}

.lead-text {
  font-size: 18px;
  font-weight: 700;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 22px;
}

.tag-chip {
  display: inline-flex;
  border-radius: 999px;
  padding: 7px 12px;
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 13px;
  font-weight: 700;
}

.review-card {
  background: linear-gradient(135deg, #fff1f2, #fdf2f8);
}

.side-card {
  padding: 20px;
  margin-bottom: 22px;
}

.side-cover {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow-card);
}

.sticky-side {
  position: sticky;
  top: 94px;
}

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

.related-row {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 12px;
  align-items: center;
}

.related-row img {
  width: 74px;
  height: 104px;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-row strong,
.related-row em {
  display: block;
}

.related-row strong {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 7px;
}

.related-row em {
  color: var(--gray-500);
  font-size: 12px;
  font-style: normal;
}

.inner-related {
  padding: 12px 0 0;
}

.site-footer {
  padding: 44px 0;
  background: #111827;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.footer-logo {
  color: #ffffff;
  margin-bottom: 12px;
}

.footer-grid p {
  margin: 0;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

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

.footer-copy {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.46);
  font-size: 13px;
}

@media (max-width: 1080px) {
  .hero-inner,
  .rank-layout,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    display: none;
  }

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

  .ranking-item {
    grid-template-columns: 48px 62px 1fr;
  }

  .ranking-meta {
    grid-column: 3;
  }

  .sticky-side {
    position: static;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .nav-wrap {
    height: 64px;
  }

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

  .site-nav,
  .nav-search {
    display: none;
  }

  .site-nav.open,
  .nav-search.open {
    display: flex;
    position: fixed;
    left: 12px;
    right: 12px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    z-index: 80;
  }

  .site-nav.open {
    top: 76px;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
  }

  .nav-search.open {
    top: 286px;
    padding: 10px;
  }

  .nav-search.open input {
    width: 100%;
  }

  .hero-section {
    height: auto;
    min-height: 620px;
    padding: 92px 0 54px;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: 42px;
  }

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

  .btn,
  .search-hero-form button {
    width: 100%;
  }

  .section-head,
  .footer-grid {
    display: block;
  }

  .section-more {
    display: inline-flex;
    margin-top: 12px;
  }

  .category-grid,
  .category-grid.small,
  .wide-grid,
  .poster-grid.six,
  .poster-grid.four,
  .rank-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .page-hero {
    padding: 54px 0;
  }

  .ranking-item {
    grid-template-columns: 42px 58px 1fr;
    gap: 12px;
  }

  .ranking-item img {
    width: 58px;
    height: 82px;
  }

  .ranking-main em,
  .ranking-meta {
    display: none;
  }

  .detail-card,
  .review-card {
    padding: 20px;
  }

  .play-circle {
    width: 74px;
    height: 74px;
    font-size: 28px;
  }

  .footer-links {
    justify-content: flex-start;
    margin-top: 20px;
  }
}

@media (max-width: 460px) {
  .category-grid,
  .category-grid.small,
  .poster-grid.six,
  .poster-grid.four {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

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

  .poster-info em,
  .category-card em {
    display: none;
  }

  .category-card {
    min-height: 170px;
    padding: 20px;
  }
}
