:root {
  color-scheme: dark;
  --bg: #020617;
  --panel: rgba(15, 23, 42, 0.72);
  --panel-strong: rgba(30, 41, 59, 0.86);
  --line: rgba(148, 163, 184, 0.18);
  --text: #f8fafc;
  --muted: #94a3b8;
  --soft: #cbd5e1;
  --accent: #f59e0b;
  --blue: #38bdf8;
  --green: #34d399;
  --radius: 18px;
  --shadow: 0 24px 70px rgba(2, 6, 23, 0.44);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 16% 0%, rgba(56, 189, 248, 0.14), transparent 28rem),
    radial-gradient(circle at 92% 6%, rgba(245, 158, 11, 0.14), transparent 30rem),
    linear-gradient(180deg, #020617 0%, #0f172a 42%, #020617 100%);
  min-height: 100vh;
}

body.no-scroll {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.94), rgba(15, 23, 42, 0.96));
  border-bottom: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(2, 6, 23, 0.28);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, #475569, #0f172a);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 12px 28px rgba(0, 0, 0, 0.28);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.brand-sub {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

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

.nav-link,
.mobile-link {
  color: var(--soft);
  border-radius: 12px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link {
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 700;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
  color: #fff;
  background: rgba(148, 163, 184, 0.14);
}

.nav-link:hover {
  transform: translateY(-1px);
}

.mobile-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 13px;
  background: rgba(148, 163, 184, 0.14);
  cursor: pointer;
  padding: 11px;
}

.mobile-menu-button span {
  display: block;
  height: 2px;
  background: #e2e8f0;
  border-radius: 999px;
  margin: 5px 0;
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 14px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.96);
}

.mobile-link {
  display: block;
  padding: 12px 14px;
  font-weight: 700;
}

.hero-slider {
  position: relative;
  height: min(80vh, 760px);
  min-height: 560px;
  overflow: hidden;
  background: #020617;
}

.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-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  filter: saturate(1.06) contrast(1.02);
}

.hero-shade,
.hero-side-shade {
  position: absolute;
  inset: 0;
}

.hero-shade {
  background: linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.76) 42%, rgba(2, 6, 23, 0.32) 100%);
}

.hero-side-shade {
  background: linear-gradient(90deg, #020617 0%, rgba(2, 6, 23, 0.72) 34%, rgba(2, 6, 23, 0.18) 68%, rgba(2, 6, 23, 0.74) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 1180px;
}

.hero-content h1,
.hero-content h2 {
  margin: 0 0 12px;
  font-size: clamp(38px, 7vw, 82px);
  line-height: 0.96;
  letter-spacing: -0.06em;
  max-width: 800px;
}

.hero-content h3 {
  margin: 0;
  font-size: clamp(28px, 4.2vw, 56px);
  line-height: 1.05;
  max-width: 780px;
}

.hero-content h3 a:hover {
  color: #fef3c7;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 7px 12px;
  color: #e2e8f0;
  border: 1px solid rgba(226, 232, 240, 0.24);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.56);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.hero-meta {
  margin: 18px 0 0;
  color: var(--soft);
  font-weight: 700;
}

.hero-desc {
  margin: 18px 0 0;
  max-width: 720px;
  color: #dbe5f3;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.primary-button,
.ghost-button,
.section-more,
.category-enter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-weight: 900;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.primary-button {
  min-height: 48px;
  padding: 0 26px;
  color: #0f172a;
  background: #fff;
  box-shadow: 0 18px 44px rgba(248, 250, 252, 0.18);
}

.primary-button:hover,
.ghost-button:hover,
.section-more:hover,
.category-enter:hover {
  transform: translateY(-2px);
}

.primary-button:hover {
  background: #f8fafc;
}

.ghost-button {
  min-height: 48px;
  padding: 0 24px;
  color: #fff;
  border: 1px solid rgba(226, 232, 240, 0.26);
  background: rgba(15, 23, 42, 0.58);
  backdrop-filter: blur(12px);
}

.ghost-button:hover {
  border-color: rgba(226, 232, 240, 0.48);
  background: rgba(30, 41, 59, 0.76);
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 4;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

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

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

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

.content-shell {
  padding: 56px 0 72px;
}

.content-section {
  margin-top: 56px;
}

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
}

.section-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  color: #fff;
  background: rgba(148, 163, 184, 0.14);
  border: 1px solid var(--line);
}

.section-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--line), transparent);
}

.section-more,
.category-enter {
  min-height: 38px;
  padding: 0 14px;
  color: #e2e8f0;
  border: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.5);
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) repeat(3, minmax(140px, 180px));
  gap: 12px;
  align-items: end;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.62);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.search-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.search-box span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.search-box input,
.filter-select {
  width: 100%;
  min-height: 48px;
  color: #fff;
  outline: 0;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 14px;
  background: rgba(2, 6, 23, 0.68);
  padding: 0 14px;
}

.search-box input:focus,
.filter-select:focus {
  border-color: rgba(56, 189, 248, 0.66);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.12);
}

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

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

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

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

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

.movie-card[hidden],
.wide-card[hidden] {
  display: none !important;
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.88);
  border: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

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

.poster-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.08), rgba(2, 6, 23, 0.82));
  transition: opacity 0.28s ease;
}

.play-circle {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.poster-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 5px 8px;
  border-radius: 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  background: rgba(2, 6, 23, 0.68);
  backdrop-filter: blur(10px);
}

.movie-card:hover .poster-img {
  transform: scale(1.06);
  filter: saturate(1.1);
}

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

.card-body {
  padding: 12px 2px 0;
}

.card-body h2 {
  margin: 0;
  color: #fff;
  font-size: 16px;
  line-height: 1.35;
}

.card-body h2 a:hover {
  color: #cbd5e1;
}

.card-meta {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.card-desc {
  margin: 7px 0 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.5;
}

.hot-panel {
  padding: 34px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.52), rgba(15, 23, 42, 0.44));
}

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

.wide-card {
  position: relative;
  display: flex;
  gap: 14px;
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.58);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.wide-card:hover {
  transform: translateY(-2px);
  border-color: rgba(148, 163, 184, 0.32);
  background: rgba(30, 41, 59, 0.68);
}

.wide-poster {
  position: relative;
  width: 118px;
  aspect-ratio: 16 / 10;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 12px;
  background: #0f172a;
}

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

.wide-poster span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(2, 6, 23, 0.26);
}

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

.wide-info {
  min-width: 0;
  flex: 1;
}

.wide-info h2 {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.35;
}

.wide-info p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.wide-info strong {
  color: #fbbf24;
  font-size: 13px;
}

.rank-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 24px;
  margin-bottom: 8px;
  border-radius: 8px;
  color: #0f172a;
  background: #fbbf24;
  font-size: 13px;
  font-weight: 900;
}

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

.category-card,
.category-overview-link {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(148, 163, 184, 0.17);
  background:
    linear-gradient(135deg, rgba(30, 41, 59, 0.86), rgba(15, 23, 42, 0.78)),
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.26), transparent 12rem);
  box-shadow: var(--shadow);
}

.category-card:hover,
.category-overview-link:hover {
  border-color: rgba(148, 163, 184, 0.34);
  transform: translateY(-2px);
}

.category-name,
.category-overview-title {
  position: relative;
  z-index: 2;
  font-size: 24px;
  font-weight: 900;
}

.category-copy,
.category-overview-intro {
  position: relative;
  z-index: 2;
  margin-top: 10px;
  color: var(--soft);
  line-height: 1.7;
}

.category-posters,
.poster-stack {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: flex;
  align-items: flex-end;
  gap: 0;
  opacity: 0.72;
}

.category-posters img,
.poster-stack img {
  width: 58px;
  height: 86px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid rgba(15, 23, 42, 0.88);
  margin-left: -18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.34);
}

.category-enter {
  position: relative;
  z-index: 2;
  width: max-content;
  margin-top: auto;
}

.page-shell {
  padding: 36px 0 72px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 44px;
  border-radius: 30px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background:
    linear-gradient(135deg, rgba(30, 41, 59, 0.84), rgba(15, 23, 42, 0.78)),
    radial-gradient(circle at 80% 10%, rgba(56, 189, 248, 0.22), transparent 18rem);
  box-shadow: var(--shadow);
}

.page-hero p {
  margin: 0 0 10px;
  color: #fbbf24;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: -0.04em;
}

.page-hero span {
  display: block;
  max-width: 760px;
  margin-top: 16px;
  color: var(--soft);
  line-height: 1.8;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin: 26px 0;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a:hover {
  color: #fff;
}

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

.detail-page {
  padding: 0 0 72px;
}

.watch-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(280px, 0.85fr);
  gap: 24px;
  align-items: stretch;
}

.player-panel,
.watch-info,
.detail-content-card,
.side-card {
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.66);
  box-shadow: var(--shadow);
}

.player-panel {
  padding: 14px;
}

.video-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  background: #000;
}

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

.play-cover {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.2), rgba(2, 6, 23, 0.78));
}

.play-cover.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.large-play {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  color: #0f172a;
  background: #fff;
  box-shadow: 0 18px 48px rgba(255, 255, 255, 0.22);
  font-size: 34px;
  text-indent: 4px;
}

.play-text {
  font-size: 18px;
  font-weight: 900;
}

.watch-info {
  padding: 20px;
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 18px;
}

.detail-poster {
  width: 130px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.detail-eyebrow {
  margin: 0 0 8px;
  color: #fbbf24;
  font-size: 13px;
  font-weight: 900;
}

.watch-info h1 {
  margin: 0;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.18;
}

.detail-one-line {
  color: var(--soft);
  line-height: 1.7;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.detail-tags span {
  padding: 6px 9px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
  color: #cbd5e1;
  background: rgba(30, 41, 59, 0.72);
  font-size: 12px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(320px, 0.9fr);
  gap: 24px;
  margin-top: 24px;
}

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

.detail-content-card h2,
.side-card h2 {
  margin: 0 0 16px;
  font-size: 24px;
}

.detail-content-card h2:not(:first-child) {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.detail-content-card p {
  color: #d5deeb;
  line-height: 1.9;
  margin: 0 0 14px;
}

.side-card {
  align-self: start;
  position: sticky;
  top: 96px;
}

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

.side-list .wide-card {
  padding: 10px;
}

.side-list .wide-poster {
  width: 92px;
}

.related-section {
  margin-top: 48px;
}

.empty-state {
  padding: 54px 20px;
  text-align: center;
  color: var(--muted);
  border: 1px dashed rgba(148, 163, 184, 0.28);
  border-radius: 20px;
}

.site-footer {
  margin-top: 40px;
  padding: 50px 0 30px;
  color: var(--soft);
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.7), rgba(2, 6, 23, 0.9));
}

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

.site-footer h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 18px;
}

.site-footer p,
.site-footer a {
  color: var(--muted);
  line-height: 1.8;
}

.site-footer a {
  display: block;
  margin: 6px 0;
}

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

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 30px auto 0;
  padding-top: 24px;
  color: #64748b;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  font-size: 13px;
}

@media (max-width: 1080px) {
  .movie-grid,
  .listing-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

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

  .side-card {
    position: static;
  }
}

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

  .mobile-menu-button {
    display: block;
  }

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

  .hero-slider {
    min-height: 640px;
    height: 86vh;
  }

  .hero-content {
    justify-content: flex-end;
    padding-bottom: 98px;
  }

  .hero-content h1,
  .hero-content h2 {
    font-size: 42px;
  }

  .hero-content h3 {
    font-size: 34px;
  }

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

  .movie-grid,
  .home-grid,
  .listing-grid,
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

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

  .hot-panel,
  .page-hero {
    padding: 22px;
    border-radius: 22px;
  }

  .watch-info {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .detail-poster {
    width: 96px;
  }

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

  .wide-poster {
    width: 96px;
  }

  .nav-wrap,
  .content-shell,
  .page-shell,
  .detail-page,
  .footer-grid,
  .footer-bottom {
    width: min(100% - 24px, 1180px);
  }
}

@media (max-width: 460px) {
  .brand-sub {
    display: none;
  }

  .brand-name {
    font-size: 18px;
  }

  .movie-grid,
  .home-grid,
  .listing-grid,
  .related-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .card-body h2 {
    font-size: 14px;
  }

  .card-desc {
    display: none;
  }

  .wide-card {
    gap: 10px;
  }
}
