:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-soft: #ecfdf5;
  --text: #111827;
  --muted: #64748b;
  --line: #e5e7eb;
  --dark: #0f172a;
  --dark-2: #1e293b;
  --emerald: #10b981;
  --emerald-dark: #047857;
  --cyan: #06b6d4;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: #fff;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.98), rgba(15, 23, 42, 0.98));
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.28);
  backdrop-filter: blur(10px);
}

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

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

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #052e26;
  background: linear-gradient(135deg, var(--emerald), var(--cyan));
  box-shadow: 0 10px 24px rgba(16, 185, 129, 0.35);
}

.brand-text {
  font-size: 20px;
  background: linear-gradient(90deg, #34d399, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  color: #fff;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 11px;
}

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

.nav-link {
  padding: 8px 12px;
  border-radius: 10px;
  color: #cbd5e1;
  font-size: 14px;
  transition: 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: #fff;
  background: rgba(16, 185, 129, 0.9);
}

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

.nav-search input,
.big-search input,
.search-page-form input,
.filter-panel input,
.filter-panel select {
  border: 1px solid rgba(148, 163, 184, 0.25);
  outline: none;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.78);
  color: #fff;
  padding: 10px 16px;
}

.nav-search input {
  width: 220px;
  transition: width 0.25s ease, border-color 0.25s ease;
}

.nav-search input:focus {
  width: 280px;
  border-color: var(--emerald);
}

.nav-search button,
.big-search button,
.search-page-form button {
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--emerald-dark);
  padding: 10px 16px;
  cursor: pointer;
  transition: 0.2s ease;
}

.nav-search button:hover,
.big-search button:hover,
.search-page-form button:hover {
  background: var(--emerald);
}

.nav-subbar {
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(15, 23, 42, 0.65);
}

.nav-subbar-inner {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 8px 0;
  scrollbar-width: none;
}

.nav-subbar-inner::-webkit-scrollbar {
  display: none;
}

.nav-sub-link {
  white-space: nowrap;
  color: #cbd5e1;
  font-size: 13px;
}

.nav-sub-link:hover {
  color: #6ee7b7;
}

.hero-carousel {
  position: relative;
  height: 70vh;
  min-height: 520px;
  overflow: hidden;
  background: var(--dark);
}

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

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

.hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(16, 185, 129, 0.35), transparent 30%),
    linear-gradient(90deg, rgba(2, 6, 23, 0.85), rgba(2, 6, 23, 0.45), rgba(2, 6, 23, 0.65)),
    linear-gradient(0deg, rgba(2, 6, 23, 0.96), transparent 55%);
}

.hero-content {
  position: absolute;
  left: max(32px, calc((100% - 1280px) / 2));
  bottom: 92px;
  width: min(680px, calc(100% - 64px));
  color: #fff;
}

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

.hero-badges span,
.detail-tags span,
.movie-tags span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.16);
  color: #a7f3d0;
  padding: 5px 10px;
  font-size: 12px;
}

.hero-content h1 {
  margin: 18px 0 14px;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero-content p {
  max-width: 650px;
  margin: 0 0 28px;
  color: #e2e8f0;
  font-size: 18px;
}

.hero-actions,
.detail-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 12px 20px;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--emerald-dark), var(--emerald));
  box-shadow: 0 12px 26px rgba(16, 185, 129, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(16, 185, 129, 0.36);
}

.btn-ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(15, 23, 42, 0.42);
}

.hero-control {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(0, 0, 0, 0.48);
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 34px;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.hero-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  transition: 0.2s ease;
}

.hero-dot.is-active {
  width: 34px;
  background: #34d399;
}

.hero-rank-card {
  position: absolute;
  right: max(32px, calc((100% - 1280px) / 2));
  bottom: 76px;
  width: min(310px, calc(100% - 64px));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  color: #fff;
  background: rgba(15, 23, 42, 0.58);
  backdrop-filter: blur(16px);
  padding: 22px;
  box-shadow: var(--shadow);
}

.hero-rank-card span {
  color: #6ee7b7;
  font-size: 13px;
}

.hero-rank-card strong {
  display: block;
  margin: 8px 0 12px;
  font-size: 20px;
}

.hero-rank-card a {
  color: #67e8f9;
  font-weight: 700;
}

.intro-panel,
.page-shell,
.content-section,
.rank-list-section {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
}

.intro-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 30px;
  align-items: center;
  margin-top: 34px;
  border-radius: 26px;
  background: linear-gradient(135deg, #ecfdf5, #ecfeff);
  padding: 30px;
  box-shadow: var(--shadow);
}

.intro-panel h1,
.page-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
}

.intro-panel p,
.page-hero p,
.section-head p {
  margin: 0;
  color: var(--muted);
}

.big-search {
  display: flex;
  gap: 10px;
  border-radius: 999px;
  background: var(--dark);
  padding: 8px;
}

.big-search input {
  min-width: 0;
  flex: 1;
  border-color: transparent;
}

.content-section,
.rank-list-section {
  padding: 44px 0 0;
}

.no-top-space {
  padding-top: 24px;
}

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

.section-head h2 {
  margin: 0 0 6px;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.03em;
}

.section-more,
.text-link {
  color: var(--emerald-dark);
  font-weight: 800;
  white-space: nowrap;
}

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

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

.feature-section {
  border-radius: 28px;
  background: linear-gradient(135deg, #ecfdf5, #ecfeff);
  padding: 34px;
  margin-top: 44px;
  box-shadow: 0 18px 45px rgba(6, 182, 212, 0.12);
}

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.16);
}

.movie-cover {
  position: relative;
  display: block;
  height: 235px;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a, #064e3b);
}

.movie-card.large .movie-cover {
  height: 270px;
}

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

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

.movie-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.62), transparent 48%);
}

.movie-score,
.movie-duration {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 9px;
}

.movie-score {
  top: 10px;
  right: 10px;
  background: var(--emerald-dark);
}

.movie-duration {
  left: 10px;
  bottom: 10px;
  background: rgba(15, 23, 42, 0.78);
}

.movie-body {
  padding: 16px;
}

.movie-meta-line {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}

.movie-body h3 {
  margin: 8px 0 8px;
  min-height: 52px;
  font-size: 18px;
  line-height: 1.35;
}

.movie-body h3 a:hover {
  color: var(--emerald-dark);
}

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

.movie-tags {
  min-height: 28px;
  margin-bottom: 14px;
}

.movie-tags span {
  color: var(--emerald-dark);
  background: #d1fae5;
}

.movie-action {
  display: inline-flex;
  color: var(--emerald-dark);
  font-weight: 800;
}

.scroll-row {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 12px;
  scrollbar-width: thin;
}

.scroll-card {
  flex: 0 0 250px;
}

.scroll-card img {
  width: 100%;
  height: 150px;
  border-radius: 16px;
  object-fit: cover;
  background: #0f172a;
}

.scroll-card span {
  display: inline-flex;
  margin-top: 10px;
  color: var(--emerald-dark);
  font-size: 12px;
  font-weight: 800;
}

.scroll-card strong {
  display: block;
  margin-top: 4px;
}

.page-shell {
  padding: 34px 0 54px;
}

.page-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 250px;
  border-radius: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 15% 10%, rgba(16, 185, 129, 0.45), transparent 28%),
    linear-gradient(135deg, #0f172a, #164e63 50%, #064e3b);
  padding: 34px;
  box-shadow: var(--shadow);
}

.slim-hero {
  min-height: 210px;
}

.page-hero p {
  max-width: 780px;
  color: #dbeafe;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  border-radius: 999px;
  color: #a7f3d0;
  background: rgba(16, 185, 129, 0.18);
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 800;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}

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

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

.category-card {
  overflow: hidden;
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.category-cover-stack {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 150px;
  overflow: hidden;
  background: var(--dark);
}

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

.category-card-body {
  padding: 22px;
}

.category-card-body span {
  color: var(--emerald-dark);
  font-weight: 800;
  font-size: 13px;
}

.category-card-body h2 {
  margin: 8px 0;
}

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

.filter-panel {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.9fr;
  gap: 16px;
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  padding: 18px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.filter-panel label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  color: var(--text);
  background: #f8fafc;
  border: 1px solid var(--line);
}

.empty-state {
  border: 1px dashed var(--line);
  border-radius: 20px;
  color: var(--muted);
  background: var(--surface);
  padding: 28px;
  text-align: center;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 100px 52px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  padding: 14px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}

.rank-cover {
  height: 72px;
  overflow: hidden;
  border-radius: 14px;
  background: var(--dark);
}

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

.rank-number {
  color: var(--emerald-dark);
  font-size: 28px;
  font-weight: 900;
}

.rank-content h3 {
  margin: 0 0 6px;
}

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

.rank-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
}

.rank-action {
  border-radius: 999px;
  color: #fff;
  background: var(--emerald-dark);
  padding: 9px 14px;
  font-weight: 800;
}

.search-page-box {
  margin-top: 26px;
  border-radius: 26px;
  background: var(--surface);
  padding: 22px;
  box-shadow: var(--shadow);
}

.search-page-form {
  display: flex;
  gap: 10px;
}

.search-page-form input {
  flex: 1;
  color: var(--text);
  background: #f8fafc;
  border: 1px solid var(--line);
}

.search-summary {
  margin: 14px 0 22px;
  color: var(--muted);
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(330px, 0.7fr);
  gap: 24px;
  align-items: stretch;
}

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

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

.player-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 74px;
  height: 74px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(16, 185, 129, 0.88);
  font-size: 30px;
  transform: translate(-50%, -50%);
  transition: 0.2s ease;
}

.player-shell.is-playing .player-play {
  opacity: 0;
  pointer-events: none;
}

.player-shell:hover .player-play {
  opacity: 1;
  pointer-events: auto;
}

.player-status {
  position: absolute;
  left: 18px;
  bottom: 18px;
  border-radius: 999px;
  color: #fff;
  background: rgba(15, 23, 42, 0.72);
  padding: 7px 12px;
  font-size: 13px;
}

.detail-info-card,
.aside-card,
.detail-article {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
}

.detail-info-card {
  padding: 26px;
}

.detail-info-card h1 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
}

.detail-info-card p {
  color: var(--muted);
}

.detail-metrics span {
  border-radius: 16px;
  background: #f1f5f9;
  padding: 10px 12px;
  color: var(--muted);
}

.detail-metrics strong {
  color: var(--text);
}

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

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  margin-top: 28px;
}

.detail-article {
  padding: 30px;
}

.detail-article h2,
.aside-card h2 {
  margin: 0 0 12px;
}

.detail-article p {
  margin: 0 0 24px;
  color: #334155;
  font-size: 17px;
}

.meta-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.meta-list div {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 12px;
  border-bottom: 1px solid #f1f5f9;
  padding: 10px 0;
}

.meta-list dt {
  color: var(--muted);
  font-weight: 800;
}

.meta-list dd {
  margin: 0;
}

.detail-aside {
  display: grid;
  align-content: start;
  gap: 18px;
}

.aside-card {
  padding: 22px;
}

.weight-box {
  margin: 16px 0;
  border-radius: 18px;
  color: var(--emerald-dark);
  background: #d1fae5;
  padding: 18px;
  font-size: 32px;
  font-weight: 900;
  text-align: center;
}

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

.mini-list a {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.mini-list img {
  width: 64px;
  height: 52px;
  border-radius: 12px;
  object-fit: cover;
  background: var(--dark);
}

.mini-list span {
  display: grid;
  gap: 2px;
  font-weight: 800;
}

.mini-list small {
  color: var(--muted);
  font-weight: 500;
}

.site-footer {
  margin-top: 54px;
  color: #cbd5e1;
  background: #0f172a;
}

.footer-inner {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 40px 0 24px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(180px, 0.8fr) minmax(180px, 0.8fr);
  gap: 30px;
}

.footer-brand {
  color: #fff;
  font-size: 22px;
  font-weight: 900;
}

.footer-main p {
  max-width: 620px;
  color: #94a3b8;
}

.footer-main h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 16px;
}

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

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  padding-top: 18px;
  color: #94a3b8;
  font-size: 14px;
}

@media (max-width: 1100px) {
  .movie-grid,
  .compact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .hero-rank-card {
    display: none;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-wrap {
    flex-wrap: wrap;
    height: auto;
    min-height: 64px;
    padding: 12px 0;
  }

  .nav-links,
  .nav-search {
    display: none;
    width: 100%;
  }

  body.nav-open .nav-links,
  body.nav-open .nav-search {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
  }

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

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

  .hero-content {
    left: 24px;
    bottom: 72px;
    width: calc(100% - 48px);
  }

  .intro-panel,
  .footer-main,
  .filter-panel {
    grid-template-columns: 1fr;
  }

  .category-grid,
  .movie-grid,
  .compact-grid,
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .rank-action {
    grid-column: 1 / -1;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .nav-subbar-inner,
  .nav-wrap,
  .intro-panel,
  .page-shell,
  .content-section,
  .rank-list-section,
  .footer-inner {
    width: min(100% - 22px, 1280px);
  }

  .hero-control {
    display: none;
  }

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

  .intro-panel,
  .feature-section,
  .page-hero,
  .detail-info-card,
  .detail-article,
  .aside-card,
  .search-page-box {
    padding: 20px;
    border-radius: 20px;
  }

  .big-search,
  .search-page-form {
    flex-direction: column;
    border-radius: 20px;
  }

  .movie-grid,
  .compact-grid,
  .feature-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .movie-cover,
  .movie-card.large .movie-cover {
    height: 260px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
