* {
  box-sizing: border-box;
}

:root {
  --bg: #f9fafb;
  --surface: #ffffff;
  --surface-soft: #f3f7fb;
  --text: #111827;
  --muted: #667085;
  --line: #e5e7eb;
  --sky: #0284c7;
  --blue: #2563eb;
  --blue-deep: #1d4ed8;
  --shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 10px 28px rgba(15, 23, 42, 0.07);
  --radius: 24px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.14), transparent 32rem), var(--bg);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

img,
video {
  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);
  border-bottom: 1px solid rgba(229, 231, 235, 0.82);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(1280px, calc(100% - 32px));
  height: 68px;
  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: 800;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border-radius: 13px;
  background: linear-gradient(135deg, #38bdf8, #2563eb);
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.22);
}

.brand-text,
.footer-brand span:last-child {
  font-size: 1.16rem;
  color: transparent;
  background: linear-gradient(90deg, #0284c7, #2563eb);
  -webkit-background-clip: text;
  background-clip: text;
}

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

.nav-link {
  position: relative;
  color: #374151;
  font-weight: 650;
  transition: color 0.22s ease;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 3px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, #38bdf8, #2563eb);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--sky);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: #f3f4f6;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: #111827;
}

.mobile-panel {
  display: none;
  padding: 0 16px 16px;
  border-top: 1px solid var(--line);
}

.mobile-panel.is-open {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  animation: fadeIn 0.25s ease-out;
}

.mobile-link {
  padding: 12px 14px;
  color: #374151;
  border-radius: 14px;
  background: #f9fafb;
  font-weight: 650;
}

.mobile-link.is-active,
.mobile-link:hover {
  color: var(--sky);
  background: #eff6ff;
}

main {
  overflow: hidden;
}

.hero-carousel {
  position: relative;
  width: min(1280px, calc(100% - 32px));
  margin: 28px auto 0;
}

.hero-stage {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  border-radius: 34px;
  background: #0f172a;
  box-shadow: var(--shadow);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.72s ease, visibility 0.72s ease;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
}

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

.hero-bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.62), rgba(15, 23, 42, 0.18)),
    linear-gradient(0deg, rgba(15, 23, 42, 0.72), transparent 48%);
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 50px;
  padding: 72px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--sky);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 760px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  line-height: 1.04;
  letter-spacing: -0.06em;
}

.hero-desc {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 2vw, 1.26rem);
}

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

.hero-tags {
  margin-top: 24px;
}

.hero-tags span,
.tag-row span,
.detail-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 650;
}

.hero-actions,
.detail-info .primary-btn {
  margin-top: 32px;
}

.primary-btn,
.ghost-btn,
.section-more,
.hero-search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.primary-btn {
  min-height: 48px;
  padding: 0 24px;
  color: #ffffff;
  background: linear-gradient(135deg, #38bdf8, #2563eb);
  box-shadow: 0 18px 34px rgba(37, 99, 235, 0.28);
}

.ghost-btn {
  min-height: 48px;
  margin-left: 12px;
  padding: 0 22px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.primary-btn:hover,
.ghost-btn:hover,
.section-more:hover,
.hero-search button:hover {
  transform: translateY(-2px);
}

.hero-poster {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
  transform: rotate(2deg);
  transition: transform 0.3s ease;
}

.hero-poster:hover {
  transform: rotate(0deg) translateY(-6px);
}

.hero-poster img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-50%);
}

.hero-prev {
  left: 20px;
}

.hero-next {
  right: 20px;
}

.hero-dots {
  position: absolute;
  right: 42px;
  bottom: 34px;
  z-index: 6;
  display: flex;
  gap: 10px;
}

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

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

.hero-search-card {
  position: relative;
  z-index: 3;
  width: min(1120px, calc(100% - 48px));
  margin: -64px auto 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-search {
  display: flex;
  gap: 12px;
}

.hero-search input,
.filter-search input,
.filter-select {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 16px;
  outline: none;
  background: #ffffff;
  color: var(--text);
}

.hero-search input,
.filter-search input {
  padding: 0 18px;
}

.hero-search input:focus,
.filter-search input:focus,
.filter-select:focus {
  border-color: #38bdf8;
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.16);
}

.hero-search button {
  min-width: 116px;
  color: #ffffff;
  background: linear-gradient(135deg, #38bdf8, #2563eb);
}

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

.hero-thumb {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 8px;
  color: #374151;
  border-radius: 16px;
  background: #f8fafc;
  transition: transform 0.22s ease, background 0.22s ease;
}

.hero-thumb:hover {
  background: #eff6ff;
  transform: translateY(-2px);
}

.hero-thumb img {
  width: 44px;
  height: 58px;
  border-radius: 12px;
  object-fit: cover;
}

.hero-thumb span {
  overflow: hidden;
  font-size: 0.9rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.content-section,
.filter-panel,
.breadcrumb,
.detail-hero,
.player-section,
.page-hero {
  width: min(1280px, calc(100% - 32px));
  margin: 72px auto 0;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.section-heading h2,
.page-hero h1,
.detail-info h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.section-heading p,
.page-hero p,
.detail-line,
.article-card p,
.category-card p,
.site-footer p,
.movie-line {
  color: var(--muted);
}

.section-heading p {
  margin: 8px 0 0;
}

.section-more {
  min-height: 42px;
  padding: 0 18px;
  color: var(--sky);
  background: #e0f2fe;
}

.category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.category-chips a,
.footer-tags a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  color: #475467;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  font-weight: 700;
  transition: color 0.22s ease, background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.category-chips a:hover,
.footer-tags a:hover {
  color: var(--sky);
  border-color: #bae6fd;
  background: #f0f9ff;
  transform: translateY(-2px);
}

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.movie-card:hover {
  border-color: #bae6fd;
  box-shadow: var(--shadow-soft);
  transform: translateY(-6px);
}

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: #e5e7eb;
}

.poster-link img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.movie-badge,
.score-pill,
.rank-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.movie-badge {
  top: 10px;
  left: 10px;
  background: rgba(2, 132, 199, 0.88);
}

.score-pill {
  right: 10px;
  bottom: 10px;
  background: rgba(15, 23, 42, 0.78);
}

.rank-badge {
  top: 10px;
  right: 10px;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
}

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

.movie-card-body h2 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.35;
}

.movie-card-body h2 a:hover {
  color: var(--sky);
}

.movie-meta,
.movie-line {
  margin: 8px 0 0;
  font-size: 0.86rem;
}

.movie-line {
  display: -webkit-box;
  min-height: 44px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.tag-row {
  margin-top: 12px;
}

.tag-row span {
  min-height: 26px;
  padding: 3px 9px;
  color: #475467;
  border-color: #e5e7eb;
  background: #f8fafc;
  font-size: 0.76rem;
}

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

.movie-card-compact {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
}

.movie-card-compact .poster-link img {
  height: 100%;
  min-height: 164px;
  aspect-ratio: auto;
}

.movie-card-compact .movie-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.mini-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 58px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(224, 242, 254, 0.9), rgba(255, 255, 255, 0.92)),
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.2), transparent 28rem);
  box-shadow: var(--shadow-soft);
}

.page-hero h1 {
  margin-bottom: 14px;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  font-size: 1.08rem;
}

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

.category-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.05);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.category-card:hover {
  border-color: #bae6fd;
  box-shadow: var(--shadow-soft);
  transform: translateY(-5px);
}

.category-cover-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  height: 152px;
  overflow: hidden;
  background: #e5e7eb;
}

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

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

.category-card h2 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.category-card p {
  margin: 0;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(229, 231, 235, 0.92);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.filter-search {
  position: relative;
}

.filter-search span {
  position: absolute;
  top: 50%;
  left: 16px;
  color: #94a3b8;
  transform: translateY(-50%);
}

.filter-search input {
  padding-left: 42px;
}

.filter-selects {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-select {
  min-width: 142px;
  padding: 0 14px;
}

.movie-list-section {
  margin-top: 32px;
}

.empty-state {
  display: none;
  padding: 30px;
  color: var(--muted);
  text-align: center;
  border-radius: var(--radius);
  background: #ffffff;
}

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

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #667085;
  font-size: 0.92rem;
}

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

.detail-hero {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  padding: 36px;
  border: 1px solid rgba(229, 231, 235, 0.92);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(240, 249, 255, 0.9)),
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.16), transparent 28rem);
  box-shadow: var(--shadow-soft);
}

.detail-poster {
  overflow: hidden;
  border-radius: 26px;
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.18);
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.detail-info .eyebrow {
  margin-bottom: 10px;
}

.detail-line {
  max-width: 850px;
  margin: 20px 0 0;
  font-size: 1.15rem;
}

.detail-meta {
  margin-top: 22px;
}

.detail-meta span {
  color: #334155;
  border-color: #dbeafe;
  background: #eff6ff;
}

.detail-tags span {
  background: #ffffff;
}

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

.player-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background: #020617;
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.22);
}

.movie-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #020617;
  cursor: pointer;
}

.play-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.12), rgba(2, 6, 23, 0.54));
  cursor: pointer;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.play-overlay span {
  width: 86px;
  height: 86px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, #38bdf8, #2563eb);
  box-shadow: 0 24px 60px rgba(37, 99, 235, 0.34);
  font-size: 2rem;
}

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

.detail-content {
  margin-top: 36px;
}

.article-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.article-card h2 {
  margin: 0 0 14px;
  font-size: 1.45rem;
}

.article-card h2:not(:first-child) {
  margin-top: 30px;
}

.article-card p {
  margin: 0;
  font-size: 1.04rem;
}

.site-footer {
  margin-top: 88px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff, #f3f4f6);
}

.footer-inner {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 32px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 42px;
}

.site-footer p {
  max-width: 430px;
  margin: 14px 0 0;
}

.site-footer h2 {
  margin: 0 0 14px;
  font-size: 1rem;
}

.footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-tags a {
  min-height: 34px;
  padding: 0 12px;
  font-size: 0.88rem;
}

.footer-bottom {
  padding: 18px;
  color: #667085;
  text-align: center;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.back-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, #38bdf8, #2563eb);
  box-shadow: 0 16px 30px rgba(37, 99, 235, 0.25);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.back-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.movie-card.is-hidden {
  display: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1180px) {
  .nav-links {
    gap: 16px;
  }

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

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

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

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

  .menu-toggle {
    display: block;
  }

  .hero-stage,
  .hero-content {
    min-height: 640px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding: 44px 28px 90px;
  }

  .hero-poster {
    display: none;
  }

  .hero-search-card {
    width: min(100%, calc(100% - 20px));
  }

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

  .filter-selects {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .detail-poster {
    max-width: 280px;
  }

  .footer-inner,
  .two-column-showcase {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .header-inner,
  .content-section,
  .filter-panel,
  .breadcrumb,
  .detail-hero,
  .player-section,
  .page-hero,
  .hero-carousel {
    width: min(100% - 20px, 1280px);
  }

  .hero-stage,
  .hero-content {
    min-height: 580px;
  }

  .hero-control {
    display: none;
  }

  .hero-dots {
    right: auto;
    left: 28px;
  }

  .hero-search,
  .hero-actions {
    flex-direction: column;
  }

  .ghost-btn {
    margin-left: 0;
    margin-top: 12px;
  }

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

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

  .movie-card-compact {
    grid-template-columns: 92px minmax(0, 1fr);
  }

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

  .movie-line,
  .tag-row {
    display: none;
  }

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

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

  .play-overlay span {
    width: 70px;
    height: 70px;
  }
}
