:root {
  --green-900: #064e3b;
  --green-800: #065f46;
  --green-700: #047857;
  --green-600: #16a34a;
  --green-500: #22c55e;
  --emerald-500: #10b981;
  --lime-100: #dcfce7;
  --gray-950: #0f172a;
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --white: #ffffff;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
  --shadow-card: 0 12px 30px rgba(15, 23, 42, 0.10);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  color: var(--gray-800);
  background: #f8fafc;
  line-height: 1.6;
}

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;
  color: var(--white);
  background: linear-gradient(90deg, var(--green-700), var(--green-500), var(--emerald-500));
  box-shadow: 0 10px 35px rgba(5, 150, 105, 0.28);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 76px;
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  color: var(--green-700);
  background: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
  font-size: 16px;
}

.brand-copy,
.footer-brand div {
  display: grid;
  gap: 1px;
}

.brand-copy strong,
.footer-brand strong {
  font-size: 23px;
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.brand-copy small,
.footer-brand small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
  white-space: nowrap;
}

.desktop-nav a {
  font-size: 15px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover {
  color: #dcfce7;
  transform: translateY(-1px);
}

.top-search,
.mobile-search,
.search-page-form {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-search input,
.mobile-search input,
.search-page-form input,
.filter-panel input,
.filter-panel select {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 12px 16px;
  outline: none;
  font: inherit;
}

.top-search input {
  width: 225px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.top-search input::placeholder,
.mobile-search input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.top-search button,
.mobile-search button {
  border: 0;
  border-radius: 999px;
  padding: 11px 16px;
  color: var(--green-700);
  background: var(--white);
  cursor: pointer;
  font-weight: 700;
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  border-radius: 2px;
}

.mobile-nav {
  display: none;
  padding: 0 16px 16px;
  background: rgba(4, 120, 87, 0.98);
}

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

.mobile-nav a {
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.mobile-search input {
  flex: 1;
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 660px;
  color: var(--white);
  background: radial-gradient(circle at 15% 15%, rgba(134, 239, 172, 0.35), transparent 32%), linear-gradient(135deg, #064e3b 0%, #16a34a 48%, #10b981 100%);
}

.hero-inner {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: 48px 0 98px;
}

.hero-bg-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(6px);
  opacity: 0.38;
}

.orb-one {
  width: 280px;
  height: 280px;
  right: 8%;
  top: 9%;
  background: #bbf7d0;
}

.orb-two {
  width: 180px;
  height: 180px;
  left: 12%;
  bottom: 18%;
  background: #ecfccb;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.72fr);
  align-items: center;
  gap: 54px;
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.hero-text h1 {
  margin: 18px 0 20px;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  padding: 7px 13px;
  color: var(--green-700);
  background: #dcfce7;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-summary {
  max-width: 670px;
  margin: 0 0 22px;
  color: #ecfdf5;
  font-size: clamp(17px, 2vw, 23px);
}

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

.hero-tags span,
.tag-row span {
  border-radius: 999px;
  padding: 6px 11px;
  color: #064e3b;
  background: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 700;
}

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

.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
  color: var(--green-700);
  background: var(--white);
  box-shadow: 0 14px 32px rgba(255, 255, 255, 0.22);
}

.primary-button:hover,
.ghost-button:hover,
.movie-card:hover,
.category-card:hover {
  transform: translateY(-3px);
}

.ghost-button {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.hero-poster {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 440px;
  box-shadow: 0 35px 90px rgba(2, 44, 34, 0.48);
  background: rgba(255, 255, 255, 0.16);
}

.hero-poster img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-poster:hover img {
  transform: scale(1.05);
}

.hero-poster span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  border-radius: 18px;
  padding: 14px 16px;
  background: rgba(6, 78, 59, 0.78);
  backdrop-filter: blur(14px);
  font-weight: 800;
}

.hero-dots {
  position: absolute;
  left: 0;
  bottom: 92px;
  display: flex;
  gap: 8px;
}

.hero-dots button {
  width: 36px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
}

.hero-dots button.is-active {
  background: var(--white);
}

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 82px;
}

.hero-wave svg {
  width: 100%;
  height: 100%;
}

.hero-wave path {
  fill: #f8fafc;
}

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

.soft-section {
  background: linear-gradient(135deg, #ecfdf5, #f0fdf4 50%, #ecfeff);
}

.section-heading {
  margin-bottom: 32px;
}

.section-heading h2,
.page-hero h1,
.detail-title-block h1 {
  margin: 12px 0 10px;
  color: var(--gray-900);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.12;
}

.section-heading p,
.page-hero p {
  max-width: 740px;
  margin: 0;
  color: var(--gray-600);
}

.centered {
  text-align: center;
}

.centered .section-kicker,
.centered p {
  margin-left: auto;
  margin-right: auto;
}

.split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.split a {
  color: var(--green-700);
  font-weight: 800;
}

.tight {
  margin-bottom: 22px;
}

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

.category-card {
  position: relative;
  overflow: hidden;
  min-height: 168px;
  border-radius: var(--radius-lg);
  padding: 24px;
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover {
  box-shadow: 0 24px 55px rgba(5, 150, 105, 0.22);
}

.category-glow {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.96), rgba(16, 185, 129, 0.96));
  transition: opacity 0.2s ease;
}

.category-card:hover .category-glow {
  opacity: 1;
}

.category-card strong,
.category-card p,
.category-card em {
  position: relative;
  z-index: 1;
}

.category-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--gray-900);
  font-size: 22px;
}

.category-card p {
  margin: 0 0 16px;
  color: var(--gray-600);
  font-size: 14px;
}

.category-card em {
  color: var(--green-700);
  font-style: normal;
  font-weight: 800;
}

.category-card:hover strong,
.category-card:hover p,
.category-card:hover em {
  color: var(--white);
}

.movie-grid {
  display: grid;
  gap: 22px;
}

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

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

.movie-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.movie-card:hover {
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.16);
}

.movie-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #d1fae5;
}

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

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

.movie-type,
.rank-badge {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.movie-type {
  right: 10px;
  top: 10px;
  background: rgba(4, 120, 87, 0.88);
}

.rank-badge {
  left: 10px;
  top: 10px;
  min-width: 34px;
  text-align: center;
  background: linear-gradient(135deg, #ef4444, #f97316);
}

.movie-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
}

.chip {
  width: fit-content;
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--green-700);
  background: var(--lime-100);
  font-size: 12px;
  font-weight: 800;
}

.chip-strong {
  color: var(--white);
  background: var(--green-500);
}

.movie-card h3 {
  display: -webkit-box;
  min-height: 2.8em;
  margin: 0;
  overflow: hidden;
  color: var(--gray-900);
  font-size: 18px;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.movie-card p {
  display: -webkit-box;
  min-height: 3.1em;
  margin: 0;
  overflow: hidden;
  color: var(--gray-600);
  font-size: 14px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.tag-row span {
  color: var(--green-700);
  background: #f0fdf4;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  color: var(--gray-500);
  font-size: 13px;
}

.movie-meta-light {
  color: #e5e7eb;
}

.movie-card-horizontal {
  flex-direction: row;
  min-height: 146px;
}

.movie-card-horizontal .movie-thumb {
  width: 210px;
  flex: 0 0 210px;
  aspect-ratio: auto;
}

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

.movie-card-large {
  min-height: 100%;
}

.movie-large-poster {
  position: relative;
  min-height: 430px;
  overflow: hidden;
}

.movie-large-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 26px;
  color: var(--white);
  background: linear-gradient(0deg, rgba(6, 78, 59, 0.95), rgba(6, 78, 59, 0.22), transparent);
}

.movie-large-overlay h3 {
  color: var(--white);
  font-size: 26px;
}

.movie-large-overlay p {
  color: #f0fdf4;
}

.hot-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 24px;
}

.hot-list,
.side-list {
  display: grid;
  gap: 16px;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 260px);
  gap: 14px;
  margin-bottom: 26px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  border-color: var(--gray-200);
  color: var(--gray-800);
  background: #f9fafb;
}

.page-hero {
  padding: 74px 0 62px;
  color: var(--white);
  background: radial-gradient(circle at 15% 30%, rgba(134, 239, 172, 0.34), transparent 32%), linear-gradient(135deg, var(--green-800), var(--green-500));
}

.page-hero h1,
.page-hero p {
  color: var(--white);
}

.category-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 36px;
  align-items: center;
}

.compact-actions {
  margin-top: 22px;
}

.category-cover-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  transform: rotate(-2deg);
}

.category-cover-stack a {
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(6, 78, 59, 0.24);
}

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

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

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

.detail-hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  color: var(--white);
  background: var(--gray-950);
}

.detail-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0.34;
  filter: blur(3px);
}

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

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 78, 59, 0.92), rgba(6, 78, 59, 0.72), rgba(15, 23, 42, 0.78));
}

.detail-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  padding: 58px 0;
}

.detail-poster {
  overflow: hidden;
  border: 6px solid rgba(255, 255, 255, 0.24);
  border-radius: 28px;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.35);
}

.detail-poster img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.breadcrumbs a:hover {
  color: var(--white);
}

.detail-title-block h1,
.detail-title-block p {
  color: var(--white);
}

.detail-title-block p {
  max-width: 820px;
  font-size: 20px;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}

.detail-meta span {
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.14);
}

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

.detail-main {
  display: grid;
  gap: 24px;
}

.player-card,
.content-card,
.side-card {
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.player-card {
  overflow: hidden;
}

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

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

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 16px;
  border: 0;
  color: var(--white);
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.76), rgba(2, 6, 23, 0.22));
  cursor: pointer;
}

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

.play-circle {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border-radius: 999px;
  padding-left: 5px;
  color: var(--green-700);
  background: var(--white);
  font-size: 34px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
}

.player-overlay strong {
  max-width: 80%;
  font-size: 24px;
  text-align: center;
}

.player-status {
  min-height: 24px;
  padding: 10px 16px;
  color: var(--gray-600);
  font-size: 14px;
}

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

.content-card h2,
.side-card h2 {
  margin: 0 0 14px;
  color: var(--gray-900);
  font-size: 24px;
}

.content-card p {
  margin: 0;
  color: var(--gray-700);
  font-size: 16px;
}

.info-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.info-list div {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-200);
}

.info-list dt {
  color: var(--gray-500);
  font-weight: 800;
}

.info-list dd {
  margin: 0;
  color: var(--gray-800);
}

.info-list a {
  color: var(--green-700);
  font-weight: 800;
}

.detail-side {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 20px;
}

.wide {
  width: 100%;
}

.side-meta {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  color: var(--gray-600);
}

.side-card .movie-card-horizontal {
  min-height: 98px;
  box-shadow: none;
  border: 1px solid var(--gray-200);
}

.side-card .movie-card-horizontal .movie-thumb {
  width: 112px;
  flex-basis: 112px;
}

.side-card .movie-card-horizontal p,
.side-card .movie-card-horizontal .tag-row,
.side-card .movie-card-horizontal .movie-meta span:nth-child(n+2),
.side-card .movie-card-horizontal .chip {
  display: none;
}

.side-card .movie-card-horizontal h3 {
  min-height: auto;
  font-size: 14px;
}

.search-page-form {
  max-width: 760px;
  margin-top: 26px;
  padding: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.search-page-form input {
  flex: 1;
  border-color: transparent;
  color: var(--gray-900);
  background: var(--white);
}

.search-page-form .primary-button {
  border: 0;
  cursor: pointer;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.85fr 0.85fr 1fr;
  gap: 30px;
  padding: 54px 0;
}

.footer-brand .brand-icon {
  color: var(--white);
  background: var(--green-600);
}

.site-footer h3 {
  margin: 0 0 14px;
  color: var(--white);
}

.site-footer p {
  margin: 0;
  color: #cbd5e1;
}

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

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

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

.footer-bottom p {
  margin: 0;
  color: #94a3b8;
}

@media (max-width: 1120px) {
  .desktop-nav,
  .top-search {
    display: none;
  }

  .mobile-toggle {
    display: block;
    margin-left: auto;
  }

  .hero-slide,
  .detail-hero-inner,
  .detail-layout,
  .category-hero-inner,
  .hot-layout {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: 860px;
  }

  .hero-slide {
    gap: 28px;
    align-content: center;
  }

  .hero-poster {
    min-height: 360px;
  }

  .hero-poster img {
    min-height: 360px;
  }

  .hero-dots {
    bottom: 64px;
  }

  .detail-side {
    position: static;
  }

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

  .rank-lead-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .header-inner {
    min-height: 68px;
  }

  .brand-copy strong {
    font-size: 20px;
  }

  .hero {
    min-height: 760px;
  }

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

  .hero-slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero-poster,
  .hero-poster img {
    min-height: 260px;
  }

  .hero-actions,
  .split,
  .filter-panel,
  .search-page-form {
    align-items: stretch;
    flex-direction: column;
  }

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

  .primary-button,
  .ghost-button {
    width: 100%;
  }

  .category-grid,
  .four-cols,
  .all-grid,
  .two-cols,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .movie-card-horizontal {
    flex-direction: column;
  }

  .movie-card-horizontal .movie-thumb {
    width: 100%;
    flex-basis: auto;
    aspect-ratio: 16 / 10;
  }

  .detail-hero-inner {
    padding: 38px 0;
  }

  .detail-poster img {
    height: 360px;
  }

  .detail-title-block p {
    font-size: 17px;
  }

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

  .info-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .player-overlay strong {
    font-size: 18px;
  }

  .play-circle {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }
}
