:root {
  --color-bg: #f7faf9;
  --color-panel: #ffffff;
  --color-text: #111827;
  --color-muted: #6b7280;
  --color-line: #e5e7eb;
  --color-emerald: #059669;
  --color-emerald-dark: #047857;
  --color-teal: #0f766e;
  --color-cyan: #155e75;
  --shadow-sm: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.18);
  --radius-md: 16px;
  --radius-lg: 24px;
  --container: 1200px;
  font-family: "Inter", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 48%, #f5fbf8 100%);
  min-height: 100vh;
}

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;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 26px rgba(15, 23, 42, 0.08);
}

.nav-shell {
  max-width: var(--container);
  margin: 0 auto;
  height: 68px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #0f172a;
}

.site-logo {
  font-size: 22px;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-emerald), var(--color-teal));
  box-shadow: 0 12px 24px rgba(5, 150, 105, 0.28);
  font-size: 15px;
}

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

.nav-link,
.mobile-nav-link {
  color: #374151;
  font-weight: 700;
  border-radius: 12px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link {
  padding: 10px 16px;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-nav-link:hover,
.mobile-nav-link.is-active {
  color: var(--color-emerald-dark);
  background: #ecfdf5;
}

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

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

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

.category-strip {
  border-top: 1px solid rgba(229, 231, 235, 0.8);
}

.category-strip-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px 10px;
  display: flex;
  gap: 10px;
  overflow-x: auto;
}

.category-strip-inner a {
  flex: 0 0 auto;
  padding: 7px 12px;
  border-radius: 999px;
  color: #047857;
  background: #ecfdf5;
  font-size: 13px;
  font-weight: 700;
}

.mobile-menu {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px 16px;
}

.mobile-nav-link {
  display: block;
  padding: 14px 16px;
}

.hero-slider {
  position: relative;
  height: 560px;
  overflow: hidden;
  background: linear-gradient(135deg, #064e3b, #115e59 55%, #164e63);
}

.hero-track,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
}

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

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.55) 45%, rgba(0, 0, 0, 0.12) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #ffffff;
}

.hero-kicker,
.detail-kicker,
.section-heading span,
.side-heading span,
.page-hero-inner span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.hero-kicker {
  padding: 9px 16px;
  margin-bottom: 18px;
  color: #d1fae5;
  background: rgba(16, 185, 129, 0.18);
  border: 1px solid rgba(167, 243, 208, 0.28);
  backdrop-filter: blur(10px);
}

.hero-content h1 {
  margin: 0 0 20px;
  max-width: 760px;
  font-size: clamp(38px, 6vw, 70px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.hero-content p {
  margin: 0 0 24px;
  max-width: 680px;
  color: #e5e7eb;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.75;
}

.hero-tags,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags {
  margin-bottom: 28px;
}

.hero-tags span,
.tag-row span {
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.hero-tags span {
  padding: 8px 12px;
  color: #f0fdf4;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

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

.primary-button,
.ghost-button,
.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button,
.ghost-button {
  min-height: 52px;
  padding: 0 28px;
}

.primary-button {
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-emerald), var(--color-teal));
  box-shadow: 0 16px 34px rgba(5, 150, 105, 0.28);
}

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

.primary-button:hover {
  box-shadow: 0 22px 44px rgba(5, 150, 105, 0.34);
}

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

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  cursor: pointer;
  font-size: 38px;
  line-height: 1;
  transform: translateY(-50%);
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

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

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

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

.section-block,
.home-search-section,
.category-section {
  padding: 72px 0;
}

.white-section {
  background: #ffffff;
}

.section-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

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

.center-heading {
  display: block;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 26px;
}

.section-heading span,
.side-heading span,
.page-hero-inner span,
.detail-kicker {
  padding: 7px 12px;
  color: var(--color-emerald-dark);
  background: #ecfdf5;
  font-size: 12px;
}

.section-heading h2,
.side-heading h2 {
  margin: 8px 0 0;
  color: #0f172a;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.16;
  letter-spacing: -0.04em;
}

.section-heading p {
  margin: 12px 0 0;
  color: var(--color-muted);
  line-height: 1.7;
}

.section-heading a,
.side-heading a,
.text-button {
  color: var(--color-emerald-dark);
  font-weight: 900;
}

.text-button {
  margin-top: 16px;
}

.filter-panel {
  margin-bottom: 30px;
  padding: 20px;
  border: 1px solid rgba(16, 185, 129, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
}

.search-label span {
  display: block;
  margin-bottom: 8px;
  color: #064e3b;
  font-weight: 900;
}

.search-input,
.filter-select {
  width: 100%;
  min-height: 48px;
  border: 1px solid #d1d5db;
  border-radius: 14px;
  color: #111827;
  background: #ffffff;
  outline: none;
}

.search-input {
  padding: 0 16px;
}

.filter-select {
  padding: 0 12px;
}

.search-input:focus,
.filter-select:focus {
  border-color: var(--color-emerald);
  box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.12);
}

.filter-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

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

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

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

.movie-card:hover {
  border-color: rgba(5, 150, 105, 0.32);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.poster-wrap {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, #064e3b, #0f766e);
}

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

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

.poster-wrap::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 44%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent);
}

.poster-play {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(5, 150, 105, 0.92);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
}

.rank-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  font-weight: 900;
  font-size: 12px;
}

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

.movie-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 9px;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 800;
}

.movie-card h3 {
  margin: 0 0 10px;
  font-size: 17px;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

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

.movie-card p {
  margin: 0 0 12px;
  min-height: 44px;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.65;
}

.tag-row span {
  padding: 5px 8px;
  color: #047857;
  background: #ecfdf5;
}

.category-section {
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-emerald), var(--color-teal));
}

.light-heading span,
.light-heading a,
.light-heading h2 {
  color: #ffffff;
}

.light-heading span {
  background: rgba(255, 255, 255, 0.18);
}

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

.category-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 170px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(14px);
  transition: transform 0.24s ease, background 0.24s ease;
}

.category-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
}

.category-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  color: #064e3b;
  background: #ffffff;
  font-weight: 900;
}

.category-card strong {
  font-size: 22px;
}

.category-card em {
  color: #d1fae5;
  font-style: normal;
  line-height: 1.65;
}

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

.ranking-panel,
.sidebar-card,
.detail-content-card,
.overview-category {
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.ranking-panel {
  position: sticky;
  top: 110px;
  align-self: start;
  padding: 22px;
}

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

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

.side-movie:hover {
  background: #f8fafc;
}

.side-movie img {
  width: 92px;
  height: 62px;
  border-radius: 12px;
  object-fit: cover;
  background: #064e3b;
}

.side-movie strong {
  display: block;
  margin-bottom: 5px;
  color: #0f172a;
  font-size: 14px;
  line-height: 1.35;
}

.side-movie em {
  display: -webkit-box;
  overflow: hidden;
  color: #6b7280;
  font-size: 12px;
  font-style: normal;
  line-height: 1.5;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  color: #ffffff;
  background: radial-gradient(circle at 18% 20%, rgba(16, 185, 129, 0.44), transparent 34%), linear-gradient(135deg, #064e3b, #115e59 55%, #164e63);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0));
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.page-hero-inner span {
  color: #d1fae5;
  background: rgba(255, 255, 255, 0.14);
}

.page-hero h1 {
  margin: 18px 0 16px;
  max-width: 780px;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: #e5e7eb;
  font-size: 18px;
  line-height: 1.8;
}

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

.overview-category {
  overflow: hidden;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
}

.overview-posters {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  min-height: 230px;
  background: linear-gradient(135deg, #064e3b, #0f766e);
}

.overview-posters img {
  width: 100%;
  height: 115px;
  object-fit: cover;
}

.overview-body {
  padding: 26px;
}

.overview-body h2 {
  margin: 0 0 12px;
  font-size: 26px;
}

.overview-body p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.75;
}

.detail-main {
  background: #f8fafc;
}

.player-section {
  background: #020617;
}

.player-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.movie-player {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000000;
}

.video-element {
  width: 100%;
  height: 100%;
  background: #000000;
}

.video-start {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  color: #ffffff;
  background: radial-gradient(circle at center, rgba(5, 150, 105, 0.36), rgba(0, 0, 0, 0.58));
  cursor: pointer;
}

.video-start.is-hidden {
  display: none;
}

.play-circle {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  padding-left: 4px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-emerald), var(--color-teal));
  box-shadow: 0 20px 50px rgba(5, 150, 105, 0.38);
  font-size: 30px;
}

.video-start strong {
  font-size: 20px;
}

.player-status {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 3;
  transform: translateX(-50%);
  padding: 10px 14px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.76);
  font-size: 13px;
  font-weight: 700;
}

.player-status:empty {
  display: none;
}

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

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 22px;
  color: #64748b;
  font-size: 14px;
}

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

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

.detail-content-card {
  padding: 28px;
}

.detail-title-row {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--color-line);
}

.detail-cover {
  width: 190px;
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  object-fit: cover;
  background: linear-gradient(135deg, #064e3b, #0f766e);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.18);
}

.detail-content-card h1 {
  margin: 14px 0 12px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 14px;
}

.detail-meta span {
  padding: 7px 10px;
  border-radius: 999px;
  color: #475569;
  background: #f1f5f9;
  font-size: 12px;
  font-weight: 800;
}

.detail-one-line {
  color: #374151;
  font-size: 18px;
  line-height: 1.75;
}

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

.prose-block,
.review-block {
  margin-top: 30px;
}

.prose-block h2,
.review-block h2,
.sidebar-card h2 {
  margin: 0 0 14px;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.prose-block p,
.review-block p {
  margin: 0;
  color: #374151;
  font-size: 16px;
  line-height: 1.9;
  white-space: pre-line;
}

.review-block {
  padding: 24px;
  border: 1px solid #bbf7d0;
  border-radius: 20px;
  background: linear-gradient(135deg, #ecfdf5, #f0fdfa);
}

.detail-sidebar {
  min-width: 0;
}

.sidebar-card {
  position: sticky;
  top: 116px;
  padding: 22px;
}

.more-section {
  margin-top: 46px;
}

.empty-state {
  margin-top: 26px;
  padding: 24px;
  border: 1px solid #d1fae5;
  border-radius: 18px;
  color: #047857;
  background: #ecfdf5;
  text-align: center;
  font-weight: 900;
}

.site-footer {
  color: #d1d5db;
  background: linear-gradient(135deg, #111827, #1f2937 55%, #111827);
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 54px 20px 34px;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) 1fr 1fr;
  gap: 30px;
}

.footer-logo {
  color: #ffffff;
  font-size: 24px;
}

.footer-brand p {
  max-width: 520px;
  color: #9ca3af;
  line-height: 1.8;
}

.footer-links {
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer-links a {
  color: #d1d5db;
  font-weight: 700;
}

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

.footer-bottom {
  padding: 18px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #9ca3af;
  text-align: center;
}

[hidden] {
  display: none !important;
}

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

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

  .ranking-panel,
  .sidebar-card {
    position: static;
  }
}

@media (max-width: 820px) {
  .desktop-nav,
  .category-strip {
    display: none;
  }

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

  .site-logo {
    font-size: 19px;
  }

  .hero-slider {
    height: 520px;
  }

  .hero-arrow {
    display: none;
  }

  .hero-content {
    padding: 0 22px;
  }

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

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

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

  .overview-posters {
    min-height: 180px;
  }

  .overview-posters img {
    height: 90px;
  }

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

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

  .detail-cover {
    width: 100%;
    max-width: 260px;
  }
}

@media (max-width: 560px) {
  .nav-shell {
    height: 62px;
    padding: 0 14px;
  }

  .hero-slider {
    height: 500px;
  }

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

  .section-block,
  .home-search-section,
  .category-section {
    padding: 48px 0;
  }

  .section-inner,
  .page-hero-inner {
    padding: 0 14px;
  }

  .section-heading,
  .side-heading {
    display: block;
  }

  .section-heading a,
  .side-heading a {
    display: inline-flex;
    margin-top: 12px;
  }

  .filter-row,
  .movie-grid,
  .listing-grid,
  .ranking-grid,
  .category-grid,
  .overview-grid {
    grid-template-columns: 1fr;
  }

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

  .page-hero {
    padding: 68px 0;
  }

  .detail-content-card {
    padding: 18px;
  }

  .play-circle {
    width: 64px;
    height: 64px;
    font-size: 26px;
  }
}
