:root {
  color-scheme: light;
  --bg: #f0fbff;
  --bg-strong: #e8f4ff;
  --paper: #ffffff;
  --paper-soft: rgba(255, 255, 255, 0.76);
  --text: #111827;
  --muted: #64748b;
  --cyan: #06b6d4;
  --cyan-dark: #0891b2;
  --blue: #2563eb;
  --indigo: #4f46e5;
  --line: rgba(15, 23, 42, 0.09);
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.11);
  --shadow-soft: 0 12px 30px rgba(15, 23, 42, 0.08);
  --radius: 22px;
  --radius-lg: 30px;
  font-family: Inter, 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;
  color: var(--text);
  background: linear-gradient(135deg, #ecfeff 0%, #eff6ff 48%, #eef2ff 100%);
  min-height: 100vh;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
}

.top-nav {
  width: min(1180px, calc(100% - 32px));
  height: 70px;
  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: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #fff;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.24);
  font-size: 14px;
}

.brand-text {
  font-size: 22px;
  background: linear-gradient(135deg, var(--cyan-dark), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.nav-link,
.mobile-link {
  color: #334155;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 999px;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
  color: var(--cyan-dark);
  background: rgba(6, 182, 212, 0.10);
}

.nav-link:hover {
  transform: translateY(-1px);
}

.mobile-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: #f1f5f9;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-button span {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: #334155;
}

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

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

.hero-slider {
  position: relative;
  overflow: hidden;
  background: #020617;
}

.hero-stage {
  position: relative;
  min-height: clamp(560px, 72vh, 780px);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease;
}

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

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

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 30%, rgba(6, 182, 212, 0.24), transparent 34%),
    linear-gradient(90deg, rgba(2, 6, 23, 0.88) 0%, rgba(2, 6, 23, 0.58) 48%, rgba(2, 6, 23, 0.20) 100%),
    linear-gradient(0deg, rgba(2, 6, 23, 0.72), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: clamp(560px, 72vh, 780px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 70px 0 160px;
  max-width: 1180px;
}

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

.hero-kicker span,
.hero-tags span,
.detail-tags span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-weight: 800;
}

.hero-kicker span {
  padding: 8px 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.hero-kicker span:first-child {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.hero-content h1 {
  margin: 22px 0 16px;
  width: min(760px, 100%);
  color: #fff;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.06em;
  font-weight: 950;
}

.hero-content p {
  width: min(680px, 100%);
  margin: 0 0 24px;
  color: rgba(241, 245, 249, 0.92);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.8;
}

.hero-tags span {
  padding: 7px 13px;
  color: #cffafe;
  background: rgba(8, 145, 178, 0.26);
  border: 1px solid rgba(165, 243, 252, 0.26);
}

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

.primary-button,
.ghost-button,
.section-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.primary-button {
  padding: 15px 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 18px 35px rgba(37, 99, 235, 0.28);
}

.primary-button.small {
  padding: 11px 18px;
  font-size: 14px;
}

.ghost-button {
  padding: 14px 23px;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(12px);
}

.primary-button:hover,
.ghost-button:hover,
.section-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(37, 99, 235, 0.26);
}

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

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

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

.hero-bottom {
  position: relative;
  z-index: 8;
  width: min(1180px, calc(100% - 32px));
  margin: -116px auto 0;
  padding-bottom: 34px;
}

.hero-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 12px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.76);
}

.hero-search input,
.filter-bar input,
.filter-bar select {
  width: 100%;
  border: 1px solid var(--line);
  color: var(--text);
  background: #fff;
  outline: none;
}

.hero-search input {
  min-height: 54px;
  border-radius: 17px;
  padding: 0 18px;
  font-size: 16px;
}

.hero-search button {
  min-width: 118px;
  border: 0;
  border-radius: 17px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.hero-pills {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 18px 2px 12px;
  scrollbar-width: none;
}

.hero-pills::-webkit-scrollbar {
  display: none;
}

.hero-pills a {
  flex: 0 0 auto;
  padding: 10px 16px;
  border-radius: 999px;
  color: #0f172a;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  font-weight: 800;
}

.hero-pills a:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.hero-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.hero-rail-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hero-rail-card img {
  width: 72px;
  height: 54px;
  object-fit: cover;
  border-radius: 13px;
}

.hero-rail-card span {
  font-weight: 900;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.section-tint {
  background: rgba(255, 255, 255, 0.42);
}

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

.section-head h2 {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.section-more {
  flex: 0 0 auto;
  padding: 11px 16px;
  color: var(--cyan-dark);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

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

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

.movie-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.poster-frame {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, #cffafe, #dbeafe);
}

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

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

.card-year,
.card-type {
  position: absolute;
  top: 12px;
  border-radius: 999px;
  padding: 5px 9px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.card-year {
  left: 12px;
  background: rgba(6, 182, 212, 0.86);
}

.card-type {
  right: 12px;
  background: rgba(15, 23, 42, 0.72);
}

.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  padding: 15px;
}

.card-body strong {
  font-size: 16px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-desc {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-meta {
  margin-top: auto;
  color: var(--cyan-dark);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

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

.category-tile,
.ranking-panel,
.category-overview-card,
.movie-article,
.info-panel,
.player-card,
.leader-card {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.category-tile {
  padding: 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.category-tile span {
  display: block;
  margin-bottom: 10px;
  font-size: 21px;
  font-weight: 950;
}

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

.ranking-panel {
  padding: 24px;
  position: sticky;
  top: 94px;
}

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

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

.rank-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 16px;
  background: #f8fafc;
  transition: background 0.25s ease, transform 0.25s ease;
}

.rank-row:hover {
  background: #ecfeff;
  transform: translateX(3px);
}

.rank-num {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  font-weight: 950;
}

.rank-title {
  font-weight: 900;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-info {
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.page-hero {
  padding: 72px 0 42px;
  background:
    radial-gradient(circle at 75% 20%, rgba(6, 182, 212, 0.22), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.56), rgba(219, 234, 254, 0.68));
  border-bottom: 1px solid rgba(255, 255, 255, 0.70);
}

.simple-hero {
  text-align: left;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--cyan-dark);
  background: #cffafe;
  font-weight: 950;
}

.page-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(34px, 6vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.05em;
  font-weight: 950;
}

.page-hero p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
  font-size: 18px;
}

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

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

.category-overview-list {
  display: grid;
  gap: 24px;
}

.category-overview-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 24px;
  padding: 24px;
}

.category-overview-text h2 {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 950;
}

.category-overview-text p {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.8;
}

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

.mini-card .card-desc,
.mini-card .card-meta {
  display: none;
}

.mini-card .card-body {
  padding: 10px;
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 180px 180px;
  gap: 12px;
  margin-bottom: 28px;
  padding: 14px;
  border-radius: 24px;
  background: var(--paper-soft);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.search-wide {
  grid-template-columns: minmax(280px, 1fr) 180px 180px;
}

.filter-bar input,
.filter-bar select {
  min-height: 48px;
  border-radius: 15px;
  padding: 0 14px;
}

.empty-state {
  margin: 28px 0 0;
  padding: 26px;
  border-radius: 22px;
  text-align: center;
  color: var(--muted);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.leader-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 34px;
}

.leader-card {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: #fff;
}

.leader-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.88), rgba(2, 6, 23, 0.22));
}

.leader-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leader-card strong,
.leader-card p,
.leader-badge {
  position: relative;
  z-index: 2;
}

.leader-badge {
  width: max-content;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  font-weight: 950;
}

.leader-card strong {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 950;
}

.leader-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.7;
}

.detail-shell {
  padding: 34px 0 72px;
}

.detail-shell .breadcrumb {
  margin: 0 0 22px;
}

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

.player-card {
  padding: 12px;
  margin-bottom: 24px;
  background: #020617;
}

.player-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 18px;
  background: #000;
}

.movie-player {
  width: 100%;
  height: 100%;
  background: #000;
}

.player-cover {
  position: absolute;
  inset: 0;
  border: 0;
  color: #fff;
  background:
    radial-gradient(circle at 50% 38%, rgba(6, 182, 212, 0.28), transparent 28%),
    linear-gradient(0deg, rgba(2, 6, 23, 0.72), rgba(2, 6, 23, 0.18));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  padding: 24px;
}

.player-cover.is-hidden {
  display: none;
}

.play-circle {
  width: 76px;
  height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 20px 42px rgba(6, 182, 212, 0.32);
  font-size: 26px;
  padding-left: 4px;
}

.play-title {
  max-width: 80%;
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 950;
  line-height: 1.35;
}

.movie-article {
  padding: 28px;
}

.movie-article h1 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--muted);
}

.detail-meta span {
  padding: 7px 11px;
  border-radius: 999px;
  background: #f1f5f9;
  font-weight: 800;
}

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

.detail-tags span {
  padding: 8px 12px;
  color: var(--cyan-dark);
  background: #cffafe;
}

.movie-article h2 {
  margin: 26px 0 10px;
  font-size: 22px;
  font-weight: 950;
}

.movie-article p {
  margin: 0;
  color: #334155;
  line-height: 1.95;
  font-size: 16px;
}

.info-panel {
  position: sticky;
  top: 94px;
  padding: 18px;
}

.info-panel img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #cffafe, #dbeafe);
}

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

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

.info-panel dt {
  color: var(--muted);
  font-weight: 800;
}

.info-panel dd {
  margin: 0;
  font-weight: 900;
  line-height: 1.5;
}

.related-section {
  margin-top: 54px;
}

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

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

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

.footer-main p {
  max-width: 560px;
  margin: 0;
  color: #94a3b8;
  line-height: 1.8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.footer-links h2 {
  width: 100%;
  margin: 0 0 8px;
  text-align: right;
  color: #fff;
  font-size: 18px;
}

.footer-links a {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #dbeafe;
}

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

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

@media (max-width: 1120px) {
  .large-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

  .hero-rail {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .ranking-panel,
  .info-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  .top-nav {
    height: 64px;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-button {
    display: inline-flex;
  }

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

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

  .hero-content {
    padding: 54px 0 170px;
  }

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

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

  .hero-search button {
    min-height: 48px;
  }

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

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

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

  .card-body {
    padding: 12px;
  }

  .card-body strong {
    font-size: 14px;
  }

  .category-grid,
  .leader-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .filter-bar,
  .search-wide {
    grid-template-columns: 1fr;
  }

  .movie-article,
  .category-overview-card {
    padding: 20px;
  }

  .info-panel div {
    grid-template-columns: 58px 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-links h2 {
    text-align: left;
  }
}

@media (max-width: 430px) {
  .movie-grid,
  .large-grid,
  .mini-card-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-bottom {
    margin-top: -126px;
  }
}
