:root {
  --night-950: #0d0d10;
  --night-900: #1a1a1f;
  --night-850: #202026;
  --night-800: #2c2c34;
  --night-700: #4a4a52;
  --night-500: #888893;
  --night-400: #a7a7b0;
  --night-300: #b0b0b8;
  --night-200: #d1d1d6;
  --night-100: #e7e7ea;
  --gold-500: #eab308;
  --gold-400: #facc15;
  --ember-500: #ef4444;
  --ember-400: #f87171;
  --shadow-glow: 0 0 30px rgba(234, 179, 8, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(234, 179, 8, 0.12), transparent 32rem),
    radial-gradient(circle at top right, rgba(239, 68, 68, 0.10), transparent 30rem),
    var(--night-950);
  color: var(--night-100);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  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: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 72%);
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(74, 74, 82, 0.64);
  background: rgba(13, 13, 16, 0.84);
  backdrop-filter: blur(18px);
}

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

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

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--night-950);
  background: linear-gradient(135deg, var(--gold-500), var(--ember-500));
  box-shadow: var(--shadow-glow);
}

.brand-text {
  font-size: 18px;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, var(--gold-400), var(--ember-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.nav-link {
  padding: 10px 12px;
  color: var(--night-200);
  border-radius: 10px;
  font-size: 14px;
  transition: 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-400);
  background: rgba(44, 44, 52, 0.58);
}

.nav-link.muted {
  color: var(--night-400);
}

.nav-search {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 300px;
}

.nav-search input,
.big-search input,
.search-panel input,
.search-panel select {
  width: 100%;
  border: 1px solid rgba(74, 74, 82, 0.86);
  outline: 0;
  color: var(--night-100);
  background: rgba(44, 44, 52, 0.72);
  border-radius: 12px;
  padding: 11px 14px;
  transition: 0.2s ease;
}

.nav-search input:focus,
.big-search input:focus,
.search-panel input:focus,
.search-panel select:focus {
  border-color: rgba(234, 179, 8, 0.75);
  box-shadow: 0 0 0 3px rgba(234, 179, 8, 0.12);
}

.nav-search button,
.big-search button,
.search-panel button,
.btn-primary {
  border: 0;
  cursor: pointer;
  color: var(--night-950);
  font-weight: 700;
  border-radius: 12px;
  padding: 11px 16px;
  background: linear-gradient(90deg, var(--gold-500), var(--ember-500));
  box-shadow: var(--shadow-glow);
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  border: 0;
  color: var(--night-100);
  background: rgba(44, 44, 52, 0.8);
  border-radius: 10px;
  padding: 8px 11px;
  font-size: 20px;
}

.hero {
  position: relative;
  height: 640px;
  overflow: hidden;
  background: var(--night-900);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.12) contrast(1.06);
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 13, 16, 0.95) 0%, rgba(13, 13, 16, 0.75) 42%, rgba(13, 13, 16, 0.28) 100%),
    linear-gradient(to top, var(--night-950), rgba(13, 13, 16, 0.05) 45%);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(650px, 100%);
  margin-top: 40px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 14px;
  color: var(--gold-400);
  font-size: 14px;
  font-weight: 700;
  border: 1px solid rgba(234, 179, 8, 0.36);
  border-radius: 999px;
  background: rgba(234, 179, 8, 0.14);
}

.hero h1,
.page-hero h1,
.movie-title-block h1 {
  margin: 0;
  color: #ffffff;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(40px, 7vw, 74px);
}

.hero p,
.page-hero p {
  margin: 20px 0 0;
  color: var(--night-200);
  font-size: 18px;
  line-height: 1.78;
}

.hero-meta,
.movie-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
  color: var(--night-300);
}

.hero-meta span,
.movie-meta-line span,
.movie-meta-line a {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(44, 44, 52, 0.72);
  border: 1px solid rgba(74, 74, 82, 0.58);
}

.hero-meta span:first-child,
.movie-meta-line span:first-child {
  color: var(--gold-400);
  border-color: rgba(234, 179, 8, 0.38);
  background: rgba(234, 179, 8, 0.14);
}

.hero-tags,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 16px;
}

.hero-tags span,
.tag-row span {
  color: var(--night-300);
  font-size: 13px;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(44, 44, 52, 0.72);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 13px;
  font-weight: 800;
}

.btn-ghost {
  color: var(--night-100);
  border: 1px solid rgba(231, 231, 234, 0.16);
  background: rgba(44, 44, 52, 0.62);
}

.hero-panel {
  position: relative;
  z-index: 5;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 34px;
  pointer-events: none;
}

.hero-dots,
.hero-mini-row {
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: auto;
}

.hero-dot {
  width: 34px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(231, 231, 234, 0.28);
  cursor: pointer;
}

.hero-dot.active {
  background: linear-gradient(90deg, var(--gold-500), var(--ember-500));
}

.hero-mini {
  width: 150px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 10px;
  align-items: center;
  padding: 8px;
  border: 1px solid rgba(74, 74, 82, 0.62);
  border-radius: 14px;
  background: rgba(26, 26, 31, 0.72);
  backdrop-filter: blur(14px);
}

.hero-mini img {
  width: 48px;
  height: 64px;
  border-radius: 9px;
  object-fit: cover;
}

.hero-mini span {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--night-100);
  font-size: 13px;
  line-height: 1.35;
}

.search-strip {
  position: relative;
  z-index: 8;
  margin-top: -42px;
  padding: 22px;
  border: 1px solid rgba(74, 74, 82, 0.68);
  border-radius: 22px;
  background: rgba(26, 26, 31, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
}

.big-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.quick-tags,
.category-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.quick-tags a,
.category-links a {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--night-300);
  background: rgba(44, 44, 52, 0.56);
  border: 1px solid rgba(74, 74, 82, 0.55);
}

.quick-tags a:hover,
.category-links a:hover {
  color: var(--gold-400);
  border-color: rgba(234, 179, 8, 0.42);
}

.section-block {
  padding: 68px 0 0;
}

.section-head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.section-head h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(26px, 4vw, 36px);
}

.section-head span {
  height: 4px;
  flex: 1;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(234, 179, 8, 0.6), transparent);
}

.section-head.ember span {
  background: linear-gradient(90deg, rgba(239, 68, 68, 0.6), transparent);
}

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

.poster-card {
  min-width: 0;
}

.poster-link {
  display: block;
}

.poster-frame {
  position: relative;
  aspect-ratio: 2 / 3;
  margin: 0 0 12px;
  overflow: hidden;
  border-radius: 18px;
  background: var(--night-800);
  border: 1px solid rgba(74, 74, 82, 0.42);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.25);
}

.poster-frame img,
.wide-thumb img,
.related-card img,
.ranking-row img,
.side-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.poster-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(to top, rgba(13, 13, 16, 0.92), rgba(13, 13, 16, 0.18), transparent);
  transition: opacity 0.25s ease;
}

.poster-card:hover .poster-frame::after {
  opacity: 1;
}

.poster-frame figcaption {
  position: absolute;
  z-index: 3;
  left: 14px;
  right: 14px;
  bottom: 14px;
  color: #ffffff;
  font-size: 13px;
  line-height: 1.5;
  transform: translateY(18px);
  opacity: 0;
  transition: 0.25s ease;
}

.poster-card:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

.quality-badge {
  position: absolute;
  z-index: 4;
  top: 12px;
  right: 12px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 8px;
  padding: 5px 8px;
  background: rgba(26, 26, 31, 0.76);
  backdrop-filter: blur(10px);
}

.poster-info h3,
.wide-body h3,
.rank-item h3,
.related-card span {
  margin: 0;
  color: var(--night-100);
  transition: color 0.2s ease;
}

.poster-card:hover h3,
.wide-card:hover h3,
.rank-item:hover h3,
.related-card:hover span {
  color: var(--gold-400);
}

.poster-info h3 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 44px;
  font-size: 16px;
  line-height: 1.4;
}

.poster-info p,
.wide-body p,
.rank-item p,
.ranking-body p,
.side-card p,
.content-card p {
  color: var(--night-300);
  line-height: 1.72;
}

.poster-info p {
  margin: 8px 0 0;
  min-height: 48px;
  font-size: 14px;
}

.poster-meta,
.wide-meta,
.ranking-body div {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 10px;
  color: var(--night-500);
  font-size: 13px;
}

.poster-meta span:first-child,
.wide-meta span:first-child {
  color: var(--gold-400);
}

.compact .poster-frame {
  border-radius: 14px;
}

.compact .poster-info p,
.compact .tag-row {
  display: none;
}

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

.wide-card a {
  display: block;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(74, 74, 82, 0.58);
  border-radius: 18px;
  background: rgba(44, 44, 52, 0.46);
  transition: 0.22s ease;
}

.wide-card:hover a,
.category-card:hover,
.category-overview-card:hover,
.content-card:hover,
.side-card:hover {
  border-color: rgba(234, 179, 8, 0.4);
  background: rgba(44, 44, 52, 0.72);
}

.wide-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.wide-thumb span {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  border-radius: 8px;
  color: white;
  font-size: 12px;
  font-weight: 800;
  background: var(--ember-500);
}

.wide-body {
  padding: 18px;
}

.wide-body h3 {
  font-size: 19px;
}

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

.category-card {
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(74, 74, 82, 0.56);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(234, 179, 8, 0.12), rgba(239, 68, 68, 0.08)),
    rgba(44, 44, 52, 0.44);
  transition: 0.22s ease;
}

.category-card span,
.category-overview-card span {
  display: block;
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
}

.category-card p,
.category-overview-card p {
  margin: 0;
  color: var(--night-300);
  line-height: 1.7;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 34px;
}

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

.rank-item a {
  display: grid;
  grid-template-columns: 46px 74px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(74, 74, 82, 0.52);
  border-radius: 16px;
  background: rgba(44, 44, 52, 0.35);
}

.rank-num {
  color: var(--gold-400);
  font-size: 20px;
  font-weight: 900;
}

.rank-item img {
  width: 74px;
  height: 98px;
  border-radius: 12px;
  object-fit: cover;
}

.rank-item h3 {
  font-size: 16px;
}

.rank-item p {
  display: -webkit-box;
  margin: 6px 0 4px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 13px;
}

.rank-item small {
  color: var(--night-500);
}

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

.page-hero {
  padding: 70px 0 16px;
}

.page-hero h1 {
  font-size: clamp(36px, 6vw, 64px);
}

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

.breadcrumb a:hover {
  color: var(--gold-400);
}

.breadcrumb em {
  color: var(--night-200);
  font-style: normal;
}

.category-overview-card {
  min-height: 220px;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(74, 74, 82, 0.56);
  border-radius: 22px;
  background: rgba(44, 44, 52, 0.42);
  transition: 0.22s ease;
}

.category-overview-card img {
  width: 120px;
  height: 170px;
  object-fit: cover;
  border-radius: 16px;
}

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

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

.ranking-row a {
  display: grid;
  grid-template-columns: 70px 110px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(74, 74, 82, 0.56);
  border-radius: 18px;
  background: rgba(44, 44, 52, 0.42);
}

.ranking-number {
  color: var(--gold-400);
  font-size: 28px;
  font-weight: 900;
}

.ranking-row img {
  width: 110px;
  height: 150px;
  border-radius: 14px;
  object-fit: cover;
}

.ranking-body h2 {
  margin: 0;
  color: #ffffff;
  font-size: 24px;
}

.search-panel {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 0.62fr) auto;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(74, 74, 82, 0.56);
  border-radius: 20px;
  background: rgba(44, 44, 52, 0.42);
}

.search-status {
  margin: 22px 0;
  color: var(--night-300);
}

.movie-page {
  padding: 34px 0 70px;
}

.movie-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 30px;
}

.movie-main {
  min-width: 0;
}

.player-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(74, 74, 82, 0.62);
  border-radius: 22px;
  background: #000000;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.36);
}

.player-shell video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #000000;
}

.play-cover {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  place-items: center;
  border: 0;
  cursor: pointer;
  background: radial-gradient(circle, rgba(13, 13, 16, 0.18), rgba(13, 13, 16, 0.72));
}

.play-cover span {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  padding-left: 6px;
  color: var(--night-950);
  font-size: 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-500), var(--ember-500));
  box-shadow: var(--shadow-glow);
  transition: transform 0.22s ease;
}

.play-cover:hover span {
  transform: scale(1.1);
}

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

.movie-title-block {
  padding: 28px 0 8px;
}

.movie-title-block h1 {
  font-size: clamp(30px, 5vw, 46px);
}

.content-card,
.side-card {
  margin-top: 20px;
  padding: 22px;
  border: 1px solid rgba(74, 74, 82, 0.56);
  border-radius: 20px;
  background: rgba(44, 44, 52, 0.42);
  transition: 0.22s ease;
}

.content-card h2,
.side-card h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 22px;
}

.content-card p,
.side-card p {
  margin: 0;
}

.side-card img {
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: 16px;
  object-fit: cover;
  margin-bottom: 16px;
}

.sticky-related {
  position: sticky;
  top: 92px;
}

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

.related-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 14px;
  background: rgba(26, 26, 31, 0.58);
}

.related-card img {
  grid-row: span 2;
  width: 72px;
  height: 96px;
  border-radius: 10px;
  object-fit: cover;
}

.related-card span {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}

.related-card small {
  color: var(--night-500);
}

.site-footer {
  margin-top: 80px;
  border-top: 1px solid rgba(74, 74, 82, 0.58);
  background: rgba(13, 13, 16, 0.85);
}

.footer-wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 36px 0;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 40px;
}

.footer-brand p {
  color: var(--night-400);
  line-height: 1.7;
}

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

.footer-links a {
  color: var(--night-400);
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(44, 44, 52, 0.32);
}

.footer-links a:hover {
  color: var(--gold-400);
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 28px;
  color: var(--night-500);
  font-size: 14px;
}

@media (max-width: 1120px) {
  .nav-wrap {
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .nav-search {
    order: 3;
    width: 100%;
  }

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

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

  .movie-layout,
  .split-layout {
    grid-template-columns: 1fr;
  }

  .movie-side {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 18px;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-links {
    display: none;
    order: 2;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 10px 0;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link {
    display: block;
  }

  .hero {
    height: 720px;
  }

  .hero-panel {
    align-items: flex-end;
    flex-direction: column;
    justify-content: flex-end;
    gap: 18px;
  }

  .hero-mini-row {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero-mini {
    flex: 0 0 150px;
  }

  .big-search,
  .search-panel {
    grid-template-columns: 1fr;
  }

  .poster-grid,
  .all-grid,
  .compact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

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

  .category-overview-card,
  .ranking-row a {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .category-overview-card img {
    width: 88px;
    height: 124px;
  }

  .ranking-row img {
    width: 88px;
    height: 120px;
  }

  .ranking-number {
    display: none;
  }

  .movie-side,
  .footer-wrap {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .container,
  .nav-wrap,
  .footer-wrap,
  .footer-bottom {
    width: min(100% - 22px, 1180px);
  }

  .hero h1 {
    font-size: 38px;
  }

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

  .poster-grid,
  .all-grid,
  .compact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .poster-info p,
  .poster-meta,
  .tag-row {
    display: none;
  }

  .poster-info h3 {
    min-height: 42px;
    font-size: 15px;
  }

  .content-card,
  .side-card {
    padding: 18px;
  }

  .play-cover span {
    width: 68px;
    height: 68px;
    font-size: 28px;
  }
}
