:root {
  --bg: #020617;
  --bg-soft: #0f172a;
  --panel: rgba(15, 23, 42, 0.82);
  --panel-solid: #111827;
  --text: #f8fafc;
  --muted: #cbd5e1;
  --subtle: #94a3b8;
  --line: rgba(148, 163, 184, 0.18);
  --cyan: #06b6d4;
  --blue: #2563eb;
  --green: #22c55e;
  --card: #0b1220;
  --shadow: 0 24px 80px rgba(2, 6, 23, 0.48);
}

* {
  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 15% 0%, rgba(6, 182, 212, 0.16), transparent 32rem),
    radial-gradient(circle at 85% 10%, rgba(37, 99, 235, 0.22), transparent 34rem),
    var(--bg);
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(2, 6, 23, 0.82);
  backdrop-filter: blur(18px);
}

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

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 12px 30px rgba(6, 182, 212, 0.25);
}

.brand-text {
  font-size: 21px;
}

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

.nav-link,
.mobile-link {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  transition: 0.24s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
  color: #fff;
  background: rgba(6, 182, 212, 0.15);
}

.menu-button {
  width: 44px;
  height: 44px;
  display: none;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: currentColor;
}

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

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

.mobile-panel a {
  display: block;
}

.mobile-cats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.mobile-cats a {
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--subtle);
  background: rgba(255, 255, 255, 0.04);
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(2, 6, 23, 0.72) 46%, rgba(2, 6, 23, 0.26)),
    linear-gradient(0deg, #020617 0%, transparent 45%);
}

.hero-content {
  position: absolute;
  left: max(24px, calc((100vw - 1200px) / 2));
  bottom: 92px;
  width: min(720px, calc(100% - 48px));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: #67e8f9;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.96;
  font-weight: 950;
  letter-spacing: -0.05em;
}

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

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

.hero-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 12px;
  border: 1px solid rgba(103, 232, 249, 0.22);
  border-radius: 999px;
  color: #e0f2fe;
  background: rgba(8, 145, 178, 0.14);
  font-size: 12px;
  font-weight: 700;
}

.hero-actions,
.section-title-row,
.detail-meta,
.footer-inner {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-actions {
  margin-top: 28px;
}

.primary-button,
.ghost-button,
.quick-search button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 14px;
  font-weight: 900;
  cursor: pointer;
  transition: 0.25s ease;
}

.primary-button,
.quick-search button {
  color: #fff;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.28);
}

.primary-button:hover,
.quick-search button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(6, 182, 212, 0.32);
}

.ghost-button,
.text-link {
  border: 1px solid var(--line);
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.08);
}

.ghost-button:hover,
.text-link:hover {
  border-color: rgba(103, 232, 249, 0.46);
  color: #fff;
  background: rgba(6, 182, 212, 0.15);
}

.hero-control {
  position: absolute;
  top: 50%;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #fff;
  background: rgba(15, 23, 42, 0.52);
  backdrop-filter: blur(10px);
  cursor: pointer;
  font-size: 36px;
  line-height: 1;
  transform: translateY(-50%);
}

.hero-prev {
  left: 20px;
}

.hero-next {
  right: 20px;
}

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

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

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

.search-band,
.section-shell,
.category-shell,
.split-section,
.page-main,
.footer-inner,
.footer-bottom {
  width: min(1200px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.search-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
  margin-top: -52px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  position: relative;
  z-index: 2;
}

.search-band h2,
.section-title-row h2,
.panel-title h2,
.page-hero h1,
.detail-info h1,
.detail-content h2 {
  margin: 0;
  font-weight: 950;
  letter-spacing: -0.03em;
}

.search-band h2 {
  font-size: clamp(26px, 3.4vw, 44px);
}

.search-band p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.quick-search,
.filter-panel {
  display: flex;
  gap: 12px;
}

.quick-search input,
.filter-panel input {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 16px;
  outline: none;
  color: var(--text);
  background: rgba(2, 6, 23, 0.62);
  padding: 0 16px;
}

.quick-search input:focus,
.filter-panel input:focus {
  border-color: rgba(103, 232, 249, 0.52);
  box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.12);
}

.section-shell,
.category-shell,
.split-section {
  margin-top: 74px;
}

.section-title-row {
  justify-content: space-between;
  margin-bottom: 24px;
}

.section-title-row h2,
.panel-title h2 {
  font-size: clamp(26px, 3vw, 36px);
}

.section-title-row > a {
  color: #67e8f9;
  font-weight: 900;
}

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

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

.movie-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.56));
  box-shadow: 0 14px 34px rgba(2, 6, 23, 0.28);
  transition: 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(103, 232, 249, 0.36);
  box-shadow: 0 22px 46px rgba(2, 6, 23, 0.45);
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: #0f172a;
}

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

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

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

.card-body {
  padding: 16px;
}

.card-title {
  display: -webkit-box;
  min-height: 52px;
  overflow: hidden;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.card-title:hover {
  color: #67e8f9;
}

.card-meta,
.card-line {
  color: var(--subtle);
  font-size: 13px;
  line-height: 1.65;
}

.card-meta {
  margin: 8px 0 6px;
}

.card-line {
  display: -webkit-box;
  min-height: 64px;
  margin: 0 0 12px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

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

.category-tile {
  display: block;
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 30% 0%, rgba(6, 182, 212, 0.22), transparent 14rem),
    linear-gradient(135deg, rgba(15, 23, 42, 0.94), rgba(30, 41, 59, 0.68));
  transition: 0.25s ease;
}

.category-tile:hover {
  transform: translateY(-5px);
  border-color: rgba(103, 232, 249, 0.34);
}

.category-tile span {
  display: block;
  margin-bottom: 12px;
  color: #fff;
  font-size: 22px;
  font-weight: 950;
}

.category-tile small {
  color: var(--muted);
  line-height: 1.7;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}

.ranking-panel,
.filter-panel,
.detail-content aside,
.detail-content article {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(15, 23, 42, 0.74);
  box-shadow: var(--shadow);
}

.ranking-panel {
  position: sticky;
  top: 96px;
  padding: 22px;
}

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

.ranking-item {
  display: grid;
  grid-template-columns: 34px 56px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  transition: 0.22s ease;
}

.ranking-item:hover {
  background: rgba(6, 182, 212, 0.12);
}

.rank-num {
  color: #67e8f9;
  font-weight: 950;
  text-align: center;
}

.ranking-item img {
  width: 56px;
  height: 76px;
  border-radius: 10px;
  object-fit: cover;
}

.rank-text {
  min-width: 0;
}

.rank-text strong,
.rank-text em {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-text strong {
  color: #fff;
  font-size: 14px;
}

.rank-text em {
  margin-top: 4px;
  color: var(--subtle);
  font-size: 12px;
  font-style: normal;
}

.page-main {
  padding-top: 42px;
}

.page-hero {
  min-height: 270px;
  margin-bottom: 28px;
  padding: 46px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    linear-gradient(120deg, rgba(6, 182, 212, 0.18), transparent 46%),
    radial-gradient(circle at 90% 20%, rgba(37, 99, 235, 0.24), transparent 22rem),
    rgba(15, 23, 42, 0.82);
  box-shadow: var(--shadow);
}

.page-hero h1 {
  font-size: clamp(36px, 5vw, 62px);
}

.page-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--subtle);
  font-size: 14px;
}

.breadcrumb a {
  color: #67e8f9;
}

.filter-panel {
  flex-direction: column;
  margin-bottom: 24px;
  padding: 18px;
}

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

.category-tabs a,
.category-tabs button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  font-weight: 800;
}

.category-tabs a:hover,
.category-tabs a.active,
.category-tabs button:hover,
.category-tabs button.active {
  color: #fff;
  border-color: rgba(103, 232, 249, 0.42);
  background: rgba(6, 182, 212, 0.16);
}

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

.empty-message {
  display: none;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  color: var(--muted);
  text-align: center;
  background: rgba(15, 23, 42, 0.72);
}

.empty-message.is-visible {
  display: block;
}

.category-list-page {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.category-card-large {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.75);
}

.category-covers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.category-covers img {
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: 12px;
  object-fit: cover;
}

.category-card-large h2 {
  margin: 0 0 10px;
  font-size: 26px;
  font-weight: 950;
}

.category-card-large p {
  color: var(--muted);
  line-height: 1.75;
}

.rank-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 28px;
}

.rank-hero-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 28px;
  background: #0f172a;
}

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

.rank-hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.94), transparent 62%);
}

.rank-hero-card span,
.rank-hero-card strong,
.rank-hero-card em {
  position: absolute;
  z-index: 1;
  left: 22px;
}

.rank-hero-card span {
  top: 20px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  font-weight: 950;
}

.rank-hero-card strong {
  right: 22px;
  bottom: 72px;
  font-size: 26px;
  font-weight: 950;
}

.rank-hero-card em {
  right: 22px;
  bottom: 24px;
  display: -webkit-box;
  overflow: hidden;
  color: var(--muted);
  font-style: normal;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

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

.ranking-row {
  display: grid;
  grid-template-columns: 70px 90px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.76);
}

.ranking-row-num {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: rgba(6, 182, 212, 0.18);
  font-weight: 950;
}

.ranking-row-poster img {
  width: 90px;
  height: 122px;
  border-radius: 14px;
  object-fit: cover;
}

.ranking-row h2 {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 950;
}

.ranking-row p,
.ranking-row span {
  color: var(--muted);
  line-height: 1.7;
}

.detail-main {
  width: min(1200px, calc(100% - 32px));
}

.detail-hero {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    linear-gradient(120deg, rgba(6, 182, 212, 0.12), transparent 48%),
    rgba(15, 23, 42, 0.78);
  box-shadow: var(--shadow);
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: 26px;
  object-fit: cover;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.46);
}

.detail-info h1 {
  margin: 10px 0 16px;
  font-size: clamp(38px, 5.6vw, 72px);
  line-height: 1.02;
}

.detail-one-line {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.8;
}

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

.detail-meta span {
  padding: 8px 12px;
  border-radius: 12px;
  color: #dbeafe;
  background: rgba(37, 99, 235, 0.16);
  font-weight: 800;
}

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

.player-section {
  margin-top: 36px;
}

.video-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: #000;
  box-shadow: var(--shadow);
}

.movie-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  color: #fff;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.26), rgba(2, 6, 23, 0.56));
  cursor: pointer;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.player-overlay span {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 20px 50px rgba(6, 182, 212, 0.4);
  font-size: 34px;
  padding-left: 4px;
}

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

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

.detail-content article,
.detail-content aside {
  padding: 28px;
}

.detail-content h2 {
  margin-bottom: 14px;
  font-size: 25px;
}

.detail-content p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.detail-content dl {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 12px 14px;
  margin: 0;
}

.detail-content dt {
  color: var(--subtle);
}

.detail-content dd {
  margin: 0;
  color: #fff;
  font-weight: 800;
}

.related-section {
  width: 100%;
}

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

.footer-inner {
  justify-content: space-between;
  align-items: flex-start;
  padding: 42px 0 28px;
}

.footer-inner p {
  max-width: 560px;
  color: var(--subtle);
  line-height: 1.75;
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  max-width: 420px;
}

.footer-links a {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
}

.footer-links a:hover {
  color: #fff;
  background: rgba(6, 182, 212, 0.15);
}

.footer-bottom {
  padding: 22px 0 34px;
  color: var(--subtle);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

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

  .split-section,
  .detail-content {
    grid-template-columns: 1fr;
  }

  .ranking-panel {
    position: static;
  }

  .category-grid,
  .category-list-page {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .menu-button {
    display: block;
  }

  .hero {
    min-height: 620px;
    height: 78vh;
  }

  .hero-content {
    bottom: 86px;
  }

  .hero-control {
    display: none;
  }

  .search-band,
  .detail-hero,
  .footer-inner,
  .category-card-large,
  .ranking-row {
    grid-template-columns: 1fr;
  }

  .search-band {
    margin-top: 24px;
  }

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

  .detail-poster {
    max-width: 360px;
    margin: 0 auto;
  }
}

@media (max-width: 620px) {
  .nav-shell,
  .search-band,
  .section-shell,
  .category-shell,
  .split-section,
  .page-main,
  .footer-inner,
  .footer-bottom {
    width: min(100% - 24px, 1200px);
  }

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

  .hero-content {
    width: calc(100% - 28px);
    left: 14px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-actions,
  .quick-search,
  .section-title-row,
  .detail-meta,
  .footer-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .movie-grid,
  .compact-grid,
  .related-grid,
  .page-grid,
  .category-grid,
  .category-list-page {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .card-body {
    padding: 12px;
  }

  .card-title {
    min-height: 46px;
    font-size: 15px;
  }

  .card-line {
    min-height: 58px;
    font-size: 12px;
  }

  .page-hero,
  .detail-hero,
  .detail-content article,
  .detail-content aside {
    padding: 22px;
    border-radius: 24px;
  }

  .page-hero h1,
  .detail-info h1 {
    font-size: 34px;
  }
}
