:root {
  --bg: #020617;
  --panel: rgba(15, 23, 42, 0.78);
  --panel-strong: rgba(15, 23, 42, 0.94);
  --line: rgba(148, 163, 184, 0.18);
  --line-strong: rgba(45, 212, 191, 0.45);
  --text: #e2e8f0;
  --muted: #94a3b8;
  --soft: #cbd5e1;
  --accent: #2dd4bf;
  --accent-strong: #06b6d4;
  --hot: #f59e0b;
  --danger: #f43f5e;
  --radius: 22px;
  --shadow: 0 24px 60px rgba(2, 6, 23, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 0%, rgba(20, 184, 166, 0.16), transparent 30%),
    radial-gradient(circle at 82% 12%, rgba(14, 165, 233, 0.14), transparent 34%),
    linear-gradient(180deg, #020617 0%, #0f172a 52%, #020617 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input {
  font: inherit;
}

main {
  width: 100%;
}

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

.header-inner {
  width: min(1220px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: inline-grid;
  place-items: center;
  color: #001f1d;
  background: linear-gradient(135deg, var(--accent), #67e8f9);
  box-shadow: 0 14px 34px rgba(45, 212, 191, 0.26);
}

.brand-text {
  font-size: 22px;
  background: linear-gradient(90deg, #5eead4, #67e8f9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

.nav-link {
  color: var(--soft);
  font-size: 15px;
  font-weight: 650;
  transition: color 0.2s ease;
}

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

.header-search,
.mobile-search,
.quick-search-panel form,
.inline-filter,
.search-page-form {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-search input,
.mobile-search input,
.quick-search-panel input,
.inline-filter input,
.search-page-form input {
  width: 100%;
  color: var(--text);
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 999px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-search input {
  width: 220px;
  padding: 10px 16px;
}

.header-search input:focus,
.mobile-search input:focus,
.quick-search-panel input:focus,
.inline-filter input:focus,
.search-page-form input:focus {
  border-color: var(--line-strong);
  box-shadow: 0 0 0 4px rgba(45, 212, 191, 0.09);
  background: rgba(15, 23, 42, 0.94);
}

.header-search button,
.mobile-search button,
.quick-search-panel button,
.inline-filter button,
.search-page-form button {
  border: 0;
  border-radius: 999px;
  color: #042f2e;
  background: linear-gradient(135deg, var(--accent), #67e8f9);
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(45, 212, 191, 0.18);
}

.header-search button {
  padding: 10px 16px;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--text);
  background: rgba(15, 23, 42, 0.72);
}

.mobile-panel {
  display: none;
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 18px;
}

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

.mobile-link {
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--soft);
  background: rgba(15, 23, 42, 0.45);
}

.mobile-link.active {
  color: var(--accent);
  background: rgba(20, 184, 166, 0.12);
}

.hero-carousel {
  width: min(1220px, calc(100% - 32px));
  margin: 34px auto 0;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(15, 23, 42, 0.64);
  box-shadow: var(--shadow);
}

.hero-slides {
  position: relative;
  min-height: 620px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.1fr 0.62fr;
  align-items: center;
  gap: 36px;
  padding: clamp(28px, 5vw, 68px);
  background-position: center;
  background-size: cover;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.025);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 7px 13px;
  border: 1px solid rgba(45, 212, 191, 0.36);
  border-radius: 999px;
  color: #99f6e4;
  background: rgba(20, 184, 166, 0.12);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.hero-copy h1,
.page-hero h1,
.detail-info h1 {
  margin: 0;
  color: #ffffff;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.hero-copy h1 {
  font-size: clamp(42px, 6vw, 78px);
  max-width: 760px;
}

.hero-copy p {
  max-width: 650px;
  margin: 22px 0 0;
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.8;
}

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

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

.hero-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 999px;
  color: #bae6fd;
  background: rgba(15, 23, 42, 0.68);
  font-size: 12px;
  font-weight: 700;
}

.tag-row.large span {
  min-height: 34px;
  padding: 7px 12px;
  font-size: 13px;
}

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

.primary-btn,
.ghost-btn,
.section-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 850;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.primary-btn {
  padding: 13px 22px;
  color: #042f2e;
  background: linear-gradient(135deg, #2dd4bf, #67e8f9);
  box-shadow: 0 18px 38px rgba(45, 212, 191, 0.24);
}

.ghost-btn,
.section-link {
  padding: 12px 18px;
  color: #dbeafe;
  border: 1px solid rgba(148, 163, 184, 0.26);
  background: rgba(15, 23, 42, 0.58);
}

.primary-btn:hover,
.ghost-btn:hover,
.section-link:hover {
  transform: translateY(-2px);
}

.ghost-btn:hover,
.section-link:hover {
  border-color: rgba(45, 212, 191, 0.55);
  color: #99f6e4;
}

.hero-cover {
  position: relative;
  display: block;
  min-height: 420px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(45, 212, 191, 0.28);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(20, 184, 166, 0.18));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

.hero-cover img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.hero-dots {
  position: absolute;
  left: 68px;
  bottom: 34px;
  display: flex;
  gap: 10px;
  z-index: 3;
}

.hero-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(226, 232, 240, 0.32);
  cursor: pointer;
}

.hero-dot.active {
  width: 34px;
  background: var(--accent);
}

.quick-search-panel,
.content-section,
.split-section,
.page-hero,
.detail-layout,
.player-section {
  width: min(1220px, calc(100% - 32px));
  margin: 28px auto 0;
}

.quick-search-panel {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  align-items: center;
  gap: 24px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.62);
  box-shadow: 0 14px 40px rgba(2, 6, 23, 0.22);
}

.quick-search-panel h2 {
  margin: 0 0 8px;
  font-size: 25px;
  color: #ffffff;
}

.quick-search-panel p,
.section-head p,
.page-hero p,
.site-footer p,
.detail-one-line,
.detail-content p,
.ranking-content p {
  color: var(--muted);
  line-height: 1.75;
}

.quick-search-panel input,
.search-page-form input {
  padding: 14px 18px;
}

.quick-search-panel button,
.search-page-form button {
  padding: 14px 22px;
  white-space: nowrap;
}

.category-chips {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-chips a {
  padding: 9px 13px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
  color: var(--soft);
  background: rgba(15, 23, 42, 0.7);
  font-size: 14px;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.category-chips a:hover {
  color: var(--accent);
  border-color: rgba(45, 212, 191, 0.45);
  transform: translateY(-1px);
}

.content-section {
  padding: 20px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin: 22px 0 20px;
}

.section-head.compact {
  align-items: center;
}

.section-head h2,
.site-footer h2,
.detail-content h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.18;
}

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.55));
  box-shadow: 0 14px 38px rgba(2, 6, 23, 0.24);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  border-color: rgba(45, 212, 191, 0.45);
  box-shadow: 0 24px 54px rgba(2, 6, 23, 0.34);
}

.movie-poster,
.ranking-poster {
  position: relative;
  display: block;
}

.poster-shell,
.thumb-shell {
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(45, 212, 191, 0.28), transparent 38%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.78));
}

.poster-shell {
  aspect-ratio: 2 / 3;
}

.thumb-shell {
  width: 82px;
  height: 112px;
  flex: 0 0 82px;
  border-radius: 14px;
}

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

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

.poster-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #042f2e;
  background: rgba(94, 234, 212, 0.92);
  font-size: 12px;
  font-weight: 850;
}

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

.movie-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
}

.movie-card h2 {
  margin: 10px 0 8px;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.35;
}

.movie-card h2 a:hover,
.ranking-content h2 a:hover {
  color: var(--accent);
}

.movie-card p {
  min-height: 56px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
}

.split-section > div,
.category-overview-card,
.ranking-card,
.detail-content article,
.player-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.62);
  box-shadow: 0 14px 40px rgba(2, 6, 23, 0.18);
}

.split-section > div {
  padding: 22px;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 10px 12px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 16px;
  background: rgba(2, 6, 23, 0.28);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.rank-row:hover {
  transform: translateX(3px);
  border-color: rgba(45, 212, 191, 0.42);
}

.rank-num {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  color: #042f2e;
  background: linear-gradient(135deg, #2dd4bf, #67e8f9);
  font-weight: 900;
}

.rank-title {
  color: #ffffff;
  font-weight: 750;
}

.rank-meta {
  color: var(--muted);
  font-size: 13px;
}

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

.category-card {
  min-height: 126px;
  padding: 18px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 20px;
  background:
    radial-gradient(circle at 90% 15%, rgba(45, 212, 191, 0.18), transparent 34%),
    rgba(2, 6, 23, 0.28);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.category-card:hover {
  border-color: rgba(45, 212, 191, 0.48);
  transform: translateY(-3px);
}

.category-card span {
  display: block;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
}

.category-card strong {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 500;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 7vw, 72px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 10%, rgba(45, 212, 191, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(2, 6, 23, 0.72));
  box-shadow: var(--shadow);
}

.page-hero.small h1 {
  font-size: clamp(34px, 5vw, 56px);
}

.page-hero p {
  max-width: 760px;
  margin: 16px 0 0;
  font-size: 17px;
}

.inline-filter,
.search-page-form {
  max-width: 760px;
  margin-top: 24px;
}

.inline-filter input {
  padding: 13px 17px;
}

.inline-filter button {
  padding: 13px 20px;
}

.category-overview-list {
  width: min(1220px, calc(100% - 32px));
  margin: 28px auto 0;
  display: grid;
  gap: 18px;
}

.category-overview-card {
  padding: 22px;
}

.category-overview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.category-overview-head h2 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 26px;
}

.category-overview-head p {
  margin: 0;
  color: var(--muted);
}

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

.small-card {
  display: flex;
  gap: 12px;
  align-items: center;
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 18px;
  background: rgba(2, 6, 23, 0.25);
}

.small-card strong,
.small-card em {
  display: block;
}

.small-card strong {
  color: #ffffff;
  line-height: 1.35;
}

.small-card em {
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

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

.ranking-card {
  display: grid;
  grid-template-columns: 98px 1fr;
  gap: 16px;
  padding: 14px;
}

.ranking-card .thumb-shell {
  width: 98px;
  height: 136px;
  border-radius: 16px;
}

.ranking-content h2 {
  margin: 8px 0 8px;
  color: #ffffff;
  font-size: 22px;
}

.ranking-content p {
  margin: 0 0 12px;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  padding: 34px 0 42px;
}

.detail-backdrop {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.05);
  opacity: 0.9;
}

.detail-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 320px 1fr;
  align-items: center;
  gap: clamp(28px, 5vw, 58px);
}

.detail-cover {
  border: 1px solid rgba(45, 212, 191, 0.28);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.detail-info h1 {
  max-width: 820px;
  font-size: clamp(38px, 6vw, 74px);
}

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

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

.detail-one-line {
  max-width: 780px;
  margin: 18px 0 0;
  font-size: 18px;
}

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

.detail-meta span {
  padding: 8px 12px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 999px;
  color: var(--soft);
  background: rgba(15, 23, 42, 0.68);
}

.detail-info .primary-btn {
  margin-top: 28px;
}

.player-section {
  scroll-margin-top: 90px;
}

.player-box {
  position: relative;
  overflow: hidden;
  background: #000000;
  aspect-ratio: 16 / 9;
}

.movie-video {
  width: 100%;
  height: 100%;
  background: #000000;
  display: block;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  color: #042f2e;
  background: radial-gradient(circle at center, rgba(15, 23, 42, 0.05), rgba(2, 6, 23, 0.45));
  cursor: pointer;
}

.play-overlay span {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  padding-left: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2dd4bf, #67e8f9);
  box-shadow: 0 22px 52px rgba(45, 212, 191, 0.28);
  font-size: 34px;
}

.play-overlay.is-hidden {
  display: none;
}

.detail-text-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.detail-content article {
  padding: 24px;
}

.detail-content p {
  margin: 14px 0 0;
  font-size: 16px;
}

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

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

.footer-grid {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 36px 0;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.8fr;
  gap: 28px;
}

.footer-brand {
  color: #ffffff;
  font-size: 20px;
}

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

.site-footer h2 {
  font-size: 18px;
  margin-bottom: 14px;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 28px;
  color: var(--muted);
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  font-size: 14px;
}

.is-filter-hidden {
  display: none !important;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(15, 23, 42, 0.62);
  text-align: center;
}

@media (max-width: 1080px) {
  .header-search {
    display: none;
  }

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

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

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

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

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

  .hero-slides {
    min-height: 760px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    align-items: end;
    gap: 24px;
    padding: 28px;
  }

  .hero-cover {
    min-height: 280px;
    order: -1;
  }

  .hero-cover img {
    min-height: 280px;
  }

  .hero-dots {
    left: 28px;
    bottom: 24px;
  }

  .quick-search-panel,
  .split-section,
  .detail-text-grid,
  .footer-grid,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .detail-layout {
    align-items: start;
  }

  .detail-cover {
    max-width: 320px;
  }

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

@media (max-width: 640px) {
  .header-inner,
  .mobile-panel,
  .hero-carousel,
  .quick-search-panel,
  .content-section,
  .split-section,
  .page-hero,
  .detail-layout,
  .player-section,
  .category-overview-list,
  .footer-grid,
  .footer-bottom {
    width: min(100% - 24px, 1220px);
  }

  .hero-slides {
    min-height: 720px;
  }

  .hero-copy h1 {
    font-size: 38px;
  }

  .hero-copy p,
  .detail-one-line {
    font-size: 16px;
  }

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

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

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

  .movie-card h2 {
    font-size: 16px;
  }

  .movie-card p {
    display: none;
  }

  .rank-row {
    grid-template-columns: 42px 1fr;
  }

  .rank-meta {
    grid-column: 2;
  }

  .category-overview-head,
  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .small-card-grid {
    grid-template-columns: 1fr;
  }

  .ranking-card {
    grid-template-columns: 82px 1fr;
  }

  .ranking-card .thumb-shell {
    width: 82px;
    height: 112px;
  }

  .ranking-content h2 {
    font-size: 18px;
  }

  .ranking-content p {
    display: none;
  }

  .detail-hero {
    min-height: auto;
  }

  .detail-info h1 {
    font-size: 36px;
  }

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