:root {
  color-scheme: light;
  --bg: #f8fafc;
  --panel: #ffffff;
  --text: #111827;
  --muted: #64748b;
  --line: #e5e7eb;
  --blue: #2563eb;
  --blue-dark: #1e3a8a;
  --blue-soft: #dbeafe;
  --orange: #f97316;
  --red: #dc2626;
  --shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
  --radius: 18px;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: linear-gradient(135deg, #1d4ed8, #1e3a8a 55%, #172554);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.18);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 22px;
  letter-spacing: 0.02em;
}

.brand-text small {
  margin-top: 5px;
  color: #bfdbfe;
  font-size: 12px;
}

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

.nav-link {
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
}

.nav-dropdown {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  left: -18px;
  top: 42px;
  width: 176px;
  padding: 8px;
  border-radius: 14px;
  background: #ffffff;
  color: #334155;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s ease;
}

.nav-dropdown:hover .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-panel a {
  display: block;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 14px;
}

.dropdown-panel a:hover {
  background: #eff6ff;
  color: #1d4ed8;
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 270px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.header-search input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  color: #ffffff;
  padding: 8px 10px 8px 14px;
  background: transparent;
}

.header-search input::placeholder {
  color: #bfdbfe;
}

.header-search button,
.big-search button {
  border: 0;
  border-radius: 999px;
  padding: 8px 14px;
  background: #ffffff;
  color: #1d4ed8;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.header-search button:hover,
.big-search button:hover {
  transform: translateY(-1px);
  background: #eff6ff;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  border-radius: 12px;
  width: 42px;
  height: 42px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

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

.mobile-menu a {
  display: block;
  padding: 11px 12px;
  border-radius: 12px;
  color: #dbeafe;
}

.mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.hero-section {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background: radial-gradient(circle at top left, #3b82f6, transparent 34%), linear-gradient(135deg, #172554, #1e3a8a 56%, #2563eb);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.17;
  background-image: radial-gradient(circle at 20px 20px, rgba(255, 255, 255, 0.22) 0 2px, transparent 3px);
  background-size: 60px 60px;
}

.hero-container {
  position: relative;
  z-index: 2;
}

.hero-slide {
  display: none;
  align-items: center;
  gap: 60px;
  min-height: 540px;
}

.hero-slide.active {
  display: grid;
  grid-template-columns: 1fr 360px;
  animation: fadeIn 0.5s ease both;
}

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

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #dbeafe;
  font-weight: 700;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero-copy p {
  max-width: 700px;
  margin: 22px 0 0;
  color: #dbeafe;
  font-size: clamp(18px, 2.4vw, 24px);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-tags span,
.tag-cloud span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 14px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.2s ease;
}

.btn-primary {
  background: #ffffff;
  color: #1d4ed8;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
}

.btn-ghost {
  border: 2px solid rgba(255, 255, 255, 0.84);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.btn:hover {
  transform: translateY(-2px) scale(1.01);
}

.hero-poster {
  position: relative;
  display: block;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.36);
  transform: rotate(2deg);
}

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

.hero-poster span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(220, 38, 38, 0.92);
  font-size: 13px;
  font-weight: 800;
}

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

.hero-dot {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
  cursor: pointer;
}

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

.search-entrance {
  margin-top: -48px;
  position: relative;
  z-index: 5;
}

.search-panel {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
  align-items: center;
  border-radius: 24px;
  padding: 28px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.search-panel h2,
.search-panel p {
  margin: 0;
}

.search-panel p {
  color: var(--muted);
  margin-top: 6px;
}

.big-search {
  display: flex;
  gap: 10px;
  border-radius: 999px;
  padding: 6px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
}

.big-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 12px 16px;
}

.big-search button {
  background: #2563eb;
  color: #ffffff;
  padding: 10px 22px;
}

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

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

.section-heading h2,
.center-heading h2,
.side-heading h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.2;
}

.section-heading p,
.center-heading p {
  margin: 8px 0 0;
  color: var(--muted);
}

.section-heading a,
.side-heading a {
  color: #2563eb;
  font-weight: 800;
}

.center-heading {
  max-width: 680px;
  margin: 0 auto 32px;
  text-align: center;
}

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

.movie-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 45px rgba(15, 23, 42, 0.16);
}

.poster-frame {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #dbeafe;
}

.compact .poster-frame,
.landscape-grid .poster-frame {
  aspect-ratio: 16 / 9;
}

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

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

.card-badge,
.card-type {
  position: absolute;
  display: inline-flex;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
}

.card-badge {
  top: 12px;
  right: 12px;
  padding: 5px 9px;
  background: rgba(220, 38, 38, 0.92);
}

.card-type {
  left: 12px;
  bottom: 12px;
  padding: 5px 9px;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(6px);
}

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

.movie-card h3 {
  min-height: 48px;
  display: -webkit-box;
  margin: 0 0 8px;
  overflow: hidden;
  color: #111827;
  font-size: 16px;
  line-height: 1.45;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-card p {
  min-height: 44px;
  display: -webkit-box;
  margin: 0 0 12px;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: #64748b;
  font-size: 12px;
}

.card-meta span:last-child {
  max-width: 58%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #1d4ed8;
  background: #dbeafe;
  border-radius: 999px;
  padding: 2px 8px;
}

.warm-section {
  background: linear-gradient(135deg, #fff7ed, #fff1f2);
}

.category-section {
  background: linear-gradient(135deg, #eff6ff, #ecfeff);
}

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

.category-card {
  min-height: 188px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 22px;
  padding: 24px;
  color: #ffffff;
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.13);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 24px 45px rgba(15, 23, 42, 0.18);
}

.category-card span {
  font-size: 40px;
  margin-bottom: 14px;
}

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

.category-card small {
  color: rgba(255, 255, 255, 0.82);
}

.tone-blue { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.tone-green { background: linear-gradient(135deg, #22c55e, #15803d); }
.tone-purple { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }
.tone-orange { background: linear-gradient(135deg, #f97316, #c2410c); }
.tone-rose { background: linear-gradient(135deg, #f43f5e, #be123c); }
.tone-yellow { background: linear-gradient(135deg, #f59e0b, #b45309); }
.tone-red { background: linear-gradient(135deg, #ef4444, #b91c1c); }
.tone-cyan { background: linear-gradient(135deg, #06b6d4, #0e7490); }
.tone-violet { background: linear-gradient(135deg, #7c3aed, #4c1d95); }
.tone-teal { background: linear-gradient(135deg, #14b8a6, #0f766e); }
.tone-slate { background: linear-gradient(135deg, #64748b, #334155); }
.tone-indigo { background: linear-gradient(135deg, #6366f1, #3730a3); }

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

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

.ranking-preview {
  position: sticky;
  top: 98px;
}

.side-card,
.article-card,
.info-card,
.player-card {
  border-radius: 22px;
  padding: 24px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.rank-item a {
  display: grid;
  grid-template-columns: 38px 60px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.rank-item:last-child a {
  border-bottom: 0;
}

.rank-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f97316, #dc2626);
  color: #ffffff;
  font-weight: 900;
}

.rank-item img {
  width: 60px;
  height: 80px;
  border-radius: 10px;
  object-fit: cover;
}

.rank-info strong {
  display: -webkit-box;
  overflow: hidden;
  color: #111827;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.rank-info small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.page-hero {
  padding: 82px 0;
  color: #ffffff;
}

.page-hero span {
  display: inline-flex;
  margin-bottom: 14px;
  border-radius: 999px;
  padding: 7px 13px;
  background: rgba(255, 255, 255, 0.14);
  font-weight: 800;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(42px, 5vw, 62px);
  line-height: 1.1;
}

.page-hero p {
  max-width: 720px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
}

.blue-hero {
  background: linear-gradient(135deg, #1d4ed8, #1e3a8a);
}

.orange-hero {
  background: linear-gradient(135deg, #f97316, #b91c1c);
}

.tone-hero {
  background-size: cover;
}

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

.filter-panel {
  display: grid;
  gap: 16px;
  margin-bottom: 28px;
  border-radius: 22px;
  padding: 22px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
}

.filter-panel input {
  width: 100%;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  outline: 0;
  padding: 13px 18px;
  background: #eff6ff;
}

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

.filter-pill {
  border: 0;
  border-radius: 999px;
  padding: 8px 14px;
  color: #1d4ed8;
  background: #dbeafe;
  cursor: pointer;
}

.filter-pill.active,
.filter-pill:hover {
  color: #ffffff;
  background: #2563eb;
}

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

.ranking-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 28px;
}

.ranking-page-grid .rank-item {
  border-radius: 18px;
  padding: 0 18px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.07);
}

.detail-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: #0f172a;
}

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

.detail-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 34px;
  align-items: center;
  min-height: 430px;
  padding: 54px 0;
}

.detail-poster {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.32);
}

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

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: #bfdbfe;
  font-size: 14px;
}

.breadcrumb a:hover {
  color: #ffffff;
}

.detail-title-block h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.06;
}

.detail-title-block p {
  max-width: 780px;
  margin: 16px 0 0;
  color: #dbeafe;
  font-size: 19px;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.detail-meta span {
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 14px;
}

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

.player-box {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #020617;
  aspect-ratio: 16 / 9;
}

.movie-player {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #020617;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.18), rgba(15, 23, 42, 0.66));
  cursor: pointer;
}

.play-overlay span {
  width: 82px;
  height: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #1d4ed8;
  font-size: 34px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

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

.player-title-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-top: 22px;
}

.player-title-row h2 {
  margin: 0;
  font-size: 28px;
}

.player-title-row a {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 8px 14px;
  color: #1d4ed8;
  background: #dbeafe;
  font-weight: 800;
}

.player-summary {
  margin: 14px 0 0;
  color: var(--muted);
}

.info-list {
  margin: 0;
}

.info-list div {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.info-list div:last-child {
  border-bottom: 0;
}

.info-list dt {
  color: var(--muted);
}

.info-list dd {
  margin: 0;
  color: #111827;
  font-weight: 700;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tag-cloud span {
  color: #1d4ed8;
  background: #dbeafe;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.article-card h2,
.info-card h2,
.side-card h2 {
  margin: 0 0 14px;
  font-size: 24px;
}

.article-card p,
.info-card p {
  margin: 0;
  color: #334155;
  font-size: 17px;
}

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

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

.page-search-form {
  max-width: 760px;
  margin-top: 26px;
}

.site-footer {
  color: #cbd5e1;
  background: linear-gradient(135deg, #111827, #0f172a);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  padding: 54px 0 34px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 20px;
}

.footer-brand p {
  max-width: 420px;
  color: #94a3b8;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: #ffffff;
}

.site-footer a {
  display: block;
  margin: 8px 0;
  color: #cbd5e1;
}

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

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

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

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

  .ranking-preview {
    position: static;
  }
}

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

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

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

  .hero-section {
    min-height: auto;
    padding: 56px 0 80px;
  }

  .hero-slide.active {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-poster {
    max-width: 320px;
    transform: none;
  }

  .search-panel,
  .detail-hero-inner,
  .content-grid,
  .info-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .ranking-page-grid {
    grid-template-columns: 1fr;
  }
}

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

  .brand-text strong {
    font-size: 19px;
  }

  .hero-copy h1,
  .page-hero h1,
  .detail-title-block h1 {
    font-size: 36px;
  }

  .hero-copy p,
  .page-hero p,
  .detail-title-block p {
    font-size: 16px;
  }

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

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

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

  .movie-card h3 {
    font-size: 15px;
  }

  .big-search,
  .section-heading,
  .side-heading,
  .player-title-row {
    display: grid;
  }

  .big-search button {
    width: 100%;
  }

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

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

  .rank-item a {
    grid-template-columns: 32px 54px 1fr;
  }
}
