:root {
  color-scheme: dark;
  --bg: #020617;
  --panel: rgba(15, 23, 42, 0.72);
  --panel-strong: rgba(15, 23, 42, 0.94);
  --line: rgba(148, 163, 184, 0.16);
  --text: #f8fafc;
  --muted: #94a3b8;
  --soft: #cbd5e1;
  --amber: #fbbf24;
  --orange: #f97316;
  --rose: #fb7185;
  --cyan: #22d3ee;
  --emerald: #34d399;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 0%, rgba(251, 191, 36, 0.12), transparent 28rem),
    radial-gradient(circle at 80% 6%, rgba(244, 63, 94, 0.13), transparent 30rem),
    linear-gradient(180deg, #020617 0%, #0f172a 42%, #020617 100%);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.6;
}

body.locked {
  overflow: hidden;
}

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

img {
  display: block;
  max-width: 100%;
  background: #0f172a;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid var(--line);
  background: rgba(2, 6, 23, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 38px rgba(2, 6, 23, 0.35);
}

.nav-shell {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--amber);
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #111827;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 12px 28px rgba(251, 191, 36, 0.28);
  font-size: 0.88rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  padding: 10px 14px;
  border-radius: 999px;
  color: #cbd5e1;
  font-weight: 650;
  transition: color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--amber);
  background: rgba(251, 191, 36, 0.09);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.8);
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  margin: 4px auto;
  display: block;
  border-radius: 999px;
  background: #e2e8f0;
}

.mobile-nav {
  display: none;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 18px;
}

.mobile-nav.open {
  display: grid;
  gap: 8px;
}

.main-shell,
.page-shell {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 650px;
  padding: 46px 0 36px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -15% -10% auto;
  height: 420px;
  background: linear-gradient(90deg, rgba(251, 191, 36, 0.22), rgba(244, 63, 94, 0.2), rgba(34, 211, 238, 0.14));
  filter: blur(90px);
  opacity: 0.78;
  pointer-events: none;
}

.hero-stage {
  position: relative;
  border: 1px solid rgba(251, 191, 36, 0.14);
  border-radius: 34px;
  min-height: 560px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #0f172a;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.01);
  transition: opacity 0.65s ease, transform 0.65s ease;
  background-image: linear-gradient(90deg, rgba(2, 6, 23, 0.96) 0%, rgba(15, 23, 42, 0.88) 38%, rgba(15, 23, 42, 0.35) 66%, rgba(2, 6, 23, 0.74) 100%), var(--hero-image);
  background-size: cover;
  background-position: center;
}

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

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  align-items: center;
  min-height: 560px;
  padding: 58px;
}

.hero-kicker,
.section-kicker,
.detail-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 7px 12px;
  border: 1px solid rgba(251, 191, 36, 0.24);
  border-radius: 999px;
  color: var(--amber);
  background: rgba(251, 191, 36, 0.1);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero h1 {
  max-width: 780px;
  margin: 22px 0 18px;
  font-size: clamp(2.4rem, 6vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.hero p {
  max-width: 700px;
  margin: 0 0 24px;
  color: #dbeafe;
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.hero-meta,
.detail-meta,
.card-meta,
.rank-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-meta span,
.detail-meta span,
.card-meta span,
.rank-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.btn-primary,
.btn-secondary,
.rank-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn-primary,
.rank-action {
  color: #0f172a;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 18px 32px rgba(249, 115, 22, 0.28);
}

.btn-secondary {
  color: #e2e8f0;
  border: 1px solid rgba(226, 232, 240, 0.18);
  background: rgba(15, 23, 42, 0.68);
}

.btn-primary:hover,
.btn-secondary:hover,
.rank-action:hover {
  transform: translateY(-2px);
}

.hero-poster {
  position: relative;
  isolation: isolate;
}

.hero-poster::before {
  content: "";
  position: absolute;
  inset: 28px -18px -18px 28px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.28), rgba(244, 63, 94, 0.24));
  filter: blur(10px);
  z-index: -1;
}

.hero-poster img {
  width: 100%;
  aspect-ratio: 3 / 4.1;
  object-fit: cover;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 34px 70px rgba(2, 6, 23, 0.62);
}

.hero-dots {
  position: absolute;
  left: 58px;
  bottom: 34px;
  z-index: 5;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 38px;
  height: 6px;
  border: 0;
  border-radius: 999px;
  background: rgba(226, 232, 240, 0.28);
  cursor: pointer;
  transition: width 0.22s ease, background 0.22s ease;
}

.hero-dot.active {
  width: 60px;
  background: var(--amber);
}

.quick-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  margin-top: -10px;
  position: relative;
  z-index: 7;
}

.search-panel,
.category-panel {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.76);
  box-shadow: 0 18px 42px rgba(2, 6, 23, 0.34);
  backdrop-filter: blur(16px);
}

.search-panel h2,
.category-panel h2 {
  margin: 0 0 14px;
  font-size: 1.1rem;
}

.search-box {
  position: relative;
}

.search-box input {
  width: 100%;
  padding: 14px 48px 14px 18px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 16px;
  color: var(--text);
  outline: none;
  background: rgba(2, 6, 23, 0.68);
}

.search-box input:focus {
  border-color: rgba(251, 191, 36, 0.6);
  box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.1);
}

.search-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--amber);
}

.category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-chip,
.tag-row span,
.filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #cbd5e1;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(15, 23, 42, 0.72);
}

.category-chip,
.filter-chip {
  padding: 9px 13px;
  font-weight: 700;
}

.category-chip:hover,
.filter-chip:hover {
  color: var(--amber);
  border-color: rgba(251, 191, 36, 0.34);
}

.section {
  margin: 72px 0;
}

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

.section-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-title h2,
.page-title h1,
.detail-main h1 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  letter-spacing: -0.04em;
}

.title-line {
  width: min(220px, 24vw);
  height: 1px;
  background: linear-gradient(90deg, rgba(251, 191, 36, 0.72), transparent);
}

.section-subtitle,
.page-title p {
  max-width: 760px;
  color: var(--muted);
  margin: 12px 0 0;
}

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.64);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(251, 191, 36, 0.42);
  background: rgba(15, 23, 42, 0.9);
  box-shadow: 0 24px 44px rgba(2, 6, 23, 0.42);
}

.poster-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 2 / 2.85;
  background: linear-gradient(135deg, #111827, #1e293b);
}

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

.movie-card:hover .poster-wrap img,
.rank-item:hover img,
.related-card:hover img {
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.05);
}

.play-dot,
.rank-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.play-dot {
  right: 10px;
  bottom: 10px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: #0f172a;
  background: var(--amber);
  box-shadow: 0 10px 24px rgba(251, 191, 36, 0.34);
}

.rank-badge {
  left: 10px;
  top: 10px;
  min-width: 34px;
  height: 34px;
  padding: 0 9px;
  border-radius: 999px;
  color: #0f172a;
  background: linear-gradient(135deg, var(--amber), var(--rose));
  font-weight: 900;
}

.card-body {
  padding: 14px;
}

.card-title {
  display: -webkit-box;
  min-height: 2.9em;
  overflow: hidden;
  color: #ffffff;
  font-weight: 800;
  line-height: 1.45;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-title:hover,
.rank-title:hover,
.related-title:hover {
  color: var(--amber);
}

.card-meta {
  margin: 8px 0;
  font-size: 0.78rem;
}

.card-body p {
  display: -webkit-box;
  min-height: 3.9em;
  margin: 0 0 11px;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.88rem;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag-row span {
  padding: 4px 8px;
  font-size: 0.75rem;
}

.horizontal-wrap {
  position: relative;
}

.horizontal-list {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 210px;
  gap: 18px;
  overflow-x: auto;
  padding: 8px 2px 18px;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.horizontal-list::-webkit-scrollbar {
  display: none;
}

.scroll-btn {
  position: absolute;
  top: 42%;
  z-index: 12;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(226, 232, 240, 0.16);
  border-radius: 999px;
  color: var(--text);
  background: rgba(2, 6, 23, 0.85);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.horizontal-wrap:hover .scroll-btn {
  opacity: 1;
}

.scroll-btn:hover {
  transform: scale(1.06);
}

.scroll-btn.left {
  left: -10px;
}

.scroll-btn.right {
  right: -10px;
}

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

.category-card {
  position: relative;
  min-height: 188px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(251, 191, 36, 0.18), transparent 10rem),
    linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.72));
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  border-color: rgba(251, 191, 36, 0.36);
}

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

.category-card p {
  margin: 0;
  color: var(--muted);
}

.category-card span {
  position: absolute;
  right: 20px;
  bottom: 18px;
  color: var(--amber);
  font-weight: 800;
}

.page-hero {
  padding: 62px 0 36px;
}

.page-title {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 85% 20%, rgba(251, 191, 36, 0.13), transparent 18rem),
    rgba(15, 23, 42, 0.72);
  box-shadow: var(--shadow);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.92rem;
}

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

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

.rank-item {
  display: grid;
  grid-template-columns: 112px 54px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.62);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.rank-item:hover {
  transform: translateX(4px);
  border-color: rgba(251, 191, 36, 0.36);
  background: rgba(15, 23, 42, 0.88);
}

.rank-cover {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
}

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

.rank-number {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #0f172a;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  font-weight: 900;
}

.rank-title {
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 850;
}

.rank-content p {
  margin: 6px 0 8px;
  color: var(--muted);
}

.detail-hero {
  padding: 36px 0 72px;
}

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

.detail-main,
.detail-side,
.info-box {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(15, 23, 42, 0.72);
  box-shadow: 0 22px 58px rgba(2, 6, 23, 0.35);
}

.detail-main {
  overflow: hidden;
}

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

.player-shell video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background:
    linear-gradient(180deg, rgba(2, 6, 23, 0.1), rgba(2, 6, 23, 0.86)),
    var(--poster-image);
  background-size: cover;
  background-position: center;
}

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

.player-start {
  width: 92px;
  height: 92px;
  border: 0;
  border-radius: 999px;
  color: #0f172a;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 18px 50px rgba(251, 191, 36, 0.45);
  cursor: pointer;
  font-size: 2rem;
  transition: transform 0.22s ease;
}

.player-start:hover {
  transform: scale(1.08);
}

.player-status {
  position: absolute;
  left: 20px;
  bottom: 16px;
  color: #e2e8f0;
  font-weight: 700;
}

.detail-content {
  padding: 28px;
}

.detail-content h1 {
  margin: 12px 0 16px;
}

.detail-content h2,
.detail-side h2,
.info-box h2 {
  margin: 0 0 14px;
  font-size: 1.25rem;
}

.detail-content p {
  color: #dbeafe;
}

.detail-side {
  padding: 20px;
}

.detail-cover {
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 18px;
}

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

.info-list {
  display: grid;
  gap: 10px;
  color: var(--soft);
}

.info-list div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.info-list span:first-child {
  color: var(--muted);
}

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

.related-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.68);
}

.related-card a:first-child {
  overflow: hidden;
  display: block;
  aspect-ratio: 16 / 10;
}

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

.related-card div {
  padding: 12px;
}

.related-title {
  display: -webkit-box;
  color: #fff;
  font-weight: 800;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.related-card p {
  display: -webkit-box;
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.index-list {
  display: grid;
  gap: 10px;
  columns: 4;
}

.index-columns {
  column-count: 4;
  column-gap: 22px;
}

.index-columns a {
  display: block;
  break-inside: avoid;
  padding: 8px 0;
  color: #cbd5e1;
  border-bottom: 1px solid rgba(148, 163, 184, 0.08);
}

.index-columns a:hover {
  color: var(--amber);
}

.site-footer {
  margin-top: 80px;
  border-top: 1px solid var(--line);
  background: rgba(2, 6, 23, 0.92);
}

.footer-grid {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 34px;
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.8fr 1fr;
  gap: 34px;
}

.footer-grid h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 1rem;
}

.footer-grid p,
.footer-grid a,
.footer-bottom {
  color: var(--muted);
}

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

.footer-grid a:hover {
  color: var(--amber);
}

.footer-bottom {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 30px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  font-size: 0.92rem;
}

.empty-result {
  display: none;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  color: var(--muted);
  background: rgba(15, 23, 42, 0.66);
}

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

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

  .menu-toggle {
    display: block;
  }

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

  .hero-poster {
    display: none;
  }

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

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

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

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

@media (max-width: 760px) {
  .nav-shell,
  .main-shell,
  .page-shell,
  .footer-grid,
  .footer-bottom,
  .mobile-nav {
    width: min(100% - 24px, 1240px);
  }

  .hero {
    min-height: auto;
    padding-top: 22px;
  }

  .hero-stage,
  .hero-inner {
    min-height: 560px;
  }

  .hero-inner {
    padding: 30px 24px 68px;
  }

  .hero-dots {
    left: 24px;
    bottom: 26px;
  }

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

  .section-header {
    display: block;
  }

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

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

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

  .rank-number,
  .rank-action {
    display: none;
  }

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

  .index-columns {
    column-count: 1;
  }

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

@media (max-width: 460px) {
  .movie-grid,
  .movie-grid.wide,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.2rem;
  }
}
