:root {
  --orange: #ea580c;
  --amber: #f59e0b;
  --yellow: #facc15;
  --blue: #2563eb;
  --indigo: #4f46e5;
  --teal: #0891b2;
  --cyan: #06b6d4;
  --emerald: #059669;
  --rose: #e11d48;
  --text: #1f2937;
  --muted: #6b7280;
  --soft: #f8fafc;
  --line: #e5e7eb;
  --white: #ffffff;
  --black: #020617;
  --shadow: 0 16px 38px rgba(15, 23, 42, 0.12);
  --shadow-strong: 0 26px 70px rgba(15, 23, 42, 0.2);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: #f3f4f6;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 2px 18px rgba(15, 23, 42, 0.08);
}

.header-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-icon {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  box-shadow: 0 12px 30px rgba(234, 88, 12, 0.28);
}

.brand-icon.small {
  width: 30px;
  height: 30px;
  border-radius: 10px;
}

.brand-text {
  font-size: 24px;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 15px;
  font-weight: 600;
  color: #4b5563;
}

.nav-link {
  position: relative;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  opacity: 0;
  transform: scaleX(0.35);
  transition: 0.2s ease;
}

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

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

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: #fff7ed;
  color: var(--orange);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-button span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
}

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

.mobile-nav-inner {
  padding: 12px 0 18px;
  display: grid;
  gap: 8px;
}

.mobile-link {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: #4b5563;
  font-weight: 700;
}

.mobile-link:hover,
.mobile-link.is-active {
  background: #fff7ed;
  color: var(--orange);
}

.hero-section {
  min-height: 590px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ea580c 0%, #d97706 48%, #eab308 100%);
}

.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
  opacity: 0.24;
}

.hero-section::before {
  width: 420px;
  height: 420px;
  background: #fff7ed;
  right: -110px;
  top: -160px;
}

.hero-section::after {
  width: 520px;
  height: 520px;
  background: #7c2d12;
  left: -180px;
  bottom: -260px;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
}

.hero-stage {
  position: relative;
  min-height: 590px;
  display: flex;
  align-items: center;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.65fr);
  align-items: center;
  gap: 54px;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

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

.hero-kicker,
.sub-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-kicker {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.hero-copy h1 {
  margin: 0 0 14px;
  font-size: clamp(38px, 5.5vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.hero-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.2;
}

.hero-copy p {
  max-width: 680px;
  margin: 0 0 30px;
  font-size: clamp(17px, 2vw, 22px);
  color: rgba(255, 255, 255, 0.88);
}

.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;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
  background: #ffffff;
  color: var(--orange);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.ghost-button {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.ghost-button.light {
  border-color: rgba(255, 255, 255, 0.58);
}

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

.hero-poster {
  position: relative;
  display: block;
  height: 420px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  transform: rotate(1.5deg);
  background: linear-gradient(135deg, #111827, #f97316);
}

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

.hero-poster:hover img {
  transform: scale(1.06);
}

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

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

.hero-dots {
  position: absolute;
  left: 0;
  bottom: 42px;
  display: flex;
  gap: 10px;
}

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

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

.section {
  padding: 72px 0;
}

.white-section,
.page-section {
  background: #ffffff;
}

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

.green-section {
  background: linear-gradient(135deg, #ecfdf5, #f0fdf4);
}

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.eyebrow {
  color: var(--orange);
}

.eyebrow.rose {
  color: var(--rose);
}

.eyebrow.green {
  color: var(--emerald);
}

.eyebrow.amber {
  color: var(--amber);
}

.text-link {
  color: var(--orange);
  font-weight: 800;
}

.text-link.blue {
  color: var(--blue);
}

.text-link.rose {
  color: var(--rose);
}

.text-link.green {
  color: var(--emerald);
}

.text-link.amber {
  color: var(--amber);
}

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

.category-card {
  min-height: 210px;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, #f0fdfa, #ecfeff);
  box-shadow: 0 12px 30px rgba(8, 145, 178, 0.08);
  transition: 0.22s ease;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(8, 145, 178, 0.18);
}

.category-icon {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  font-size: 22px;
  margin-bottom: 18px;
}

.category-card h3,
.category-overview-card h2 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.25;
}

.category-card p,
.category-overview-card p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
}

.category-card span,
.category-enter {
  color: var(--teal);
  font-weight: 800;
  font-size: 14px;
}

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

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

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

.movie-card {
  display: block;
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.poster-wrap {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: linear-gradient(135deg, #111827, #f97316);
}

.movie-card.feature .poster-wrap {
  height: 220px;
}

.movie-card.wide .poster-wrap {
  height: 320px;
}

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

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

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 28%, rgba(0, 0, 0, 0.78));
}

.play-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.92);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.88);
  transition: 0.22s ease;
}

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

.type-pill,
.rank-badge,
.gradient-pill,
.soft-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.type-pill {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 6px 12px;
  color: #ffffff;
  background: rgba(37, 99, 235, 0.92);
}

.rank-badge {
  position: absolute;
  left: 14px;
  top: 14px;
  width: 36px;
  height: 36px;
  color: #ffffff;
  background: var(--rose);
  box-shadow: 0 10px 20px rgba(225, 29, 72, 0.28);
}

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

.movie-card-body h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.32;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-card:hover h3 {
  color: var(--orange);
}

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

.card-meta,
.muted-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  color: #6b7280;
  font-size: 13px;
}

.card-meta span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tag-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.tag-row span {
  padding: 4px 8px;
  border-radius: 999px;
  color: #374151;
  background: #f3f4f6;
  font-size: 12px;
  font-weight: 700;
}

.list-stack {
  display: grid;
  gap: 16px;
}

.list-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  padding: 14px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  transition: 0.22s ease;
}

.list-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow);
}

.list-poster {
  position: relative;
  height: 138px;
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(135deg, #111827, #22c55e);
}

.list-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease;
}

.list-card:hover img {
  transform: scale(1.05);
}

.list-rank {
  position: absolute;
  left: 10px;
  top: 10px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background: var(--rose);
  font-weight: 900;
}

.list-info {
  padding: 5px 6px;
  min-width: 0;
}

.soft-pill {
  padding: 5px 11px;
  color: var(--emerald);
  background: #d1fae5;
  margin-bottom: 8px;
}

.list-info h3 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.25;
}

.list-info p {
  margin: 0 0 12px;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sub-hero {
  padding: 76px 0;
  color: #ffffff;
}

.sub-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.sub-hero p {
  max-width: 780px;
  margin: 0;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
}

.teal-hero {
  background: linear-gradient(135deg, #0f766e, #0891b2, #2563eb);
}

.orange-hero {
  background: linear-gradient(135deg, #ea580c, #d97706, #eab308);
}

.small-actions {
  margin-top: 24px;
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  overflow: hidden;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: var(--shadow);
  transition: 0.22s ease;
}

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

.category-cover-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 220px;
  background: linear-gradient(135deg, #111827, #0891b2);
}

.category-cover-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.sample-titles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.sample-titles span {
  max-width: 100%;
  padding: 5px 10px;
  border-radius: 999px;
  background: #f3f4f6;
  color: #4b5563;
  font-size: 12px;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 180px 180px 180px;
  gap: 12px;
  padding: 18px;
  margin-bottom: 28px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 14px;
  background: #ffffff;
  color: #374151;
  outline: none;
}

.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(8, 145, 178, 0.12);
}

.empty-state {
  display: none;
  margin: 36px 0 0;
  padding: 22px;
  border-radius: 18px;
  text-align: center;
  color: #6b7280;
  background: #f9fafb;
}

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

.detail-main {
  background: #f3f4f6;
}

.detail-hero {
  padding: 24px 0;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: #6b7280;
  font-size: 14px;
}

.breadcrumb a {
  color: var(--orange);
  font-weight: 700;
}

.detail-section {
  padding-top: 34px;
}

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

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: #000000;
  box-shadow: var(--shadow-strong);
  aspect-ratio: 16 / 9;
  margin-bottom: 24px;
}

.movie-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  color: #ffffff;
  cursor: pointer;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.72));
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

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

.overlay-play {
  width: 86px;
  height: 86px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--orange);
  background: #ffffff;
  font-size: 34px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.overlay-title {
  max-width: min(80%, 720px);
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.2;
  font-weight: 900;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.36);
}

.detail-card,
.sidebar-card {
  border-radius: 26px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.detail-card {
  padding: 28px;
}

.detail-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.detail-tags span:not(.gradient-pill) {
  padding: 5px 11px;
  border-radius: 999px;
  color: #374151;
  background: #f3f4f6;
  font-size: 13px;
  font-weight: 700;
}

.gradient-pill {
  padding: 6px 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), var(--amber));
}

.detail-card h1 {
  margin: 0 0 22px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 16px;
  margin-bottom: 26px;
  border-radius: 18px;
  background: linear-gradient(135deg, #eff6ff, #eef2ff);
}

.meta-grid div {
  text-align: center;
}

.meta-grid span {
  display: block;
  color: #6b7280;
  font-size: 13px;
  margin-bottom: 4px;
}

.meta-grid strong {
  display: block;
  color: #1f2937;
  font-size: 15px;
}

.content-block {
  margin-top: 24px;
}

.content-block h2,
.sidebar-card h2 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.2;
}

.content-block p {
  margin: 0;
  color: #374151;
  line-height: 1.9;
  white-space: pre-line;
}

.intro-block p {
  padding: 18px;
  border-radius: 18px;
  background: #f9fafb;
}

.review-block {
  padding: 20px;
  border-left: 5px solid var(--orange);
  border-radius: 18px;
  background: linear-gradient(135deg, #fffbeb, #fff7ed);
}

.detail-sidebar {
  position: sticky;
  top: 96px;
}

.sidebar-card {
  padding: 22px;
}

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

.related-card {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  position: relative;
  padding: 8px;
  border-radius: 16px;
  transition: background 0.2s ease;
}

.related-card:hover {
  background: #f9fafb;
}

.related-card img {
  width: 110px;
  height: 78px;
  object-fit: cover;
  border-radius: 13px;
  background: linear-gradient(135deg, #111827, #f97316);
}

.related-play {
  position: absolute;
  left: 48px;
  top: 31px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--orange);
  background: rgba(255, 255, 255, 0.9);
  opacity: 0;
  transition: 0.2s ease;
}

.related-card:hover .related-play {
  opacity: 1;
}

.related-card h3 {
  margin: 0 0 5px;
  font-size: 15px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-card p {
  margin: 0;
  color: #6b7280;
  font-size: 12px;
}

.site-footer {
  color: #d1d5db;
  background: #111827;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 34px;
  padding: 54px 0 34px;
}

.site-footer h3 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 18px;
}

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

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

.site-footer a {
  color: #d1d5db;
  transition: 0.2s ease;
}

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

.footer-bottom {
  border-top: 1px solid #1f2937;
  color: #9ca3af;
  padding: 18px 0;
  font-size: 14px;
}

[data-card].is-hidden {
  display: none;
}

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 14px;
    font-size: 14px;
  }

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

  .category-overview-card {
    grid-template-columns: 1fr;
  }
}

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

  .menu-button {
    display: inline-flex;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 48px 0 82px;
  }

  .hero-stage,
  .hero-section {
    min-height: 760px;
  }

  .hero-poster {
    height: 320px;
    transform: none;
  }

  .hero-dots {
    bottom: 28px;
  }

  .category-grid,
  .feature-grid,
  .rank-grid,
  .catalog-grid,
  .category-overview-grid,
  .footer-grid,
  .detail-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .detail-sidebar {
    position: static;
  }

  .detail-primary,
  .detail-sidebar {
    grid-column: span 2;
  }
}

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

  .brand-text {
    font-size: 20px;
  }

  .hero-stage,
  .hero-section {
    min-height: 720px;
  }

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

  .hero-copy h2 {
    font-size: 24px;
  }

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

  .hero-poster {
    height: 260px;
  }

  .section {
    padding: 48px 0;
  }

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

  .category-grid,
  .feature-grid,
  .rank-grid,
  .catalog-grid,
  .category-overview-grid,
  .footer-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

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

  .list-poster {
    height: 210px;
  }

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

  .detail-primary,
  .detail-sidebar {
    grid-column: span 1;
  }

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

  .detail-card {
    padding: 20px;
  }

  .overlay-play {
    width: 68px;
    height: 68px;
    font-size: 26px;
  }
}
