:root {
  --blue: #3b82f6;
  --cyan: #22d3ee;
  --deep-blue: #1d4ed8;
  --text: #111827;
  --muted: #6b7280;
  --line: #dbeafe;
  --soft: #eff6ff;
  --card: #ffffff;
  --shadow: 0 20px 45px rgba(37, 99, 235, 0.14);
  --strong-shadow: 0 28px 70px rgba(15, 23, 42, 0.22);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: linear-gradient(180deg, rgba(239, 246, 255, 0.48), #ffffff 28%, rgba(239, 246, 255, 0.6));
  min-height: 100vh;
}

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: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(219, 234, 254, 0.95);
  backdrop-filter: blur(18px);
}

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

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

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 12px 26px rgba(34, 211, 238, 0.28);
}

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

.brand-text strong,
.footer-brand {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, #60a5fa, #06b6d4);
  -webkit-background-clip: text;
  color: transparent;
}

.brand-text em {
  margin-top: 3px;
  color: #64748b;
  font-size: 12px;
  font-style: normal;
}

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

.nav-link {
  color: #374151;
  font-weight: 700;
  font-size: 15px;
  transition: color 0.2s ease;
}

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

.header-search {
  width: 268px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
}

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

.header-search button,
.primary-button,
.ghost-button,
.panel-link,
.large-search button {
  border: 0;
  color: #ffffff;
  font-weight: 800;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  box-shadow: 0 14px 30px rgba(59, 130, 246, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-search button {
  padding: 8px 14px;
}

.primary-button,
.ghost-button,
.panel-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
}

.primary-button:hover,
.ghost-button:hover,
.panel-link:hover,
.large-search button:hover,
.header-search button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(59, 130, 246, 0.32);
}

.ghost-button {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--blue);
  background: #ffffff;
}

.mobile-nav {
  display: none;
  padding: 0 16px 18px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
}

.mobile-nav a {
  display: block;
  padding: 13px 8px;
  color: #374151;
  font-weight: 800;
  border-bottom: 1px solid rgba(219, 234, 254, 0.8);
}

.hero {
  position: relative;
  height: 620px;
  overflow: hidden;
  background: #020617;
}

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

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

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

.hero-shade,
.detail-bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.82), rgba(15, 23, 42, 0.42) 48%, rgba(2, 6, 23, 0.32)),
    linear-gradient(0deg, rgba(2, 6, 23, 0.78), rgba(2, 6, 23, 0) 52%);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding-bottom: 118px;
}

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

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

.hero-badges span,
.hero-tags span,
.tag-row span,
.detail-tags a,
.quick-tags button {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.hero-badges span {
  padding: 7px 12px;
  color: #ffffff;
  background: rgba(59, 130, 246, 0.92);
  backdrop-filter: blur(14px);
}

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

.hero-copy p {
  max-width: 680px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.8;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.hero-tags span {
  padding: 7px 12px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

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

.hero-controls {
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 28px;
  pointer-events: none;
}

.hero-dots,
.hero-thumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: auto;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
}

.hero-dot.active {
  width: 34px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.hero-thumb {
  position: relative;
  width: 116px;
  height: 70px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  box-shadow: var(--strong-shadow);
}

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

.hero-thumb span {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 6px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  text-shadow: 0 2px 8px #000000;
}

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

.intro-block {
  padding-bottom: 22px;
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading p {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-heading h2,
.article-panel h2,
.info-panel h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.with-action {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.with-action > a,
.result-text {
  color: var(--blue);
  font-weight: 900;
}

.intro-text {
  max-width: 860px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(219, 234, 254, 0.95);
  border-radius: 22px;
  background: var(--card);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.movie-card:hover {
  transform: translateY(-8px);
  border-color: rgba(59, 130, 246, 0.36);
  box-shadow: var(--shadow);
}

.card-cover {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #dbeafe;
}

.card-cover::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.62), rgba(2, 6, 23, 0) 56%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.movie-card:hover .card-cover::after {
  opacity: 1;
}

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

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

.card-cover b,
.card-cover i {
  position: absolute;
  z-index: 2;
  top: 12px;
  padding: 5px 8px;
  color: #ffffff;
  font-size: 12px;
  font-style: normal;
  border-radius: 9px;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(12px);
}

.card-cover b {
  right: 12px;
}

.card-cover i {
  left: 12px;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.card-body {
  padding: 18px;
}

.compact-card .card-body {
  padding: 14px;
}

.tag-row span {
  padding: 4px 8px;
  color: var(--blue);
  background: #dbeafe;
}

.card-body h2 {
  display: -webkit-box;
  min-height: 48px;
  margin: 12px 0 8px;
  overflow: hidden;
  color: #111827;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 900;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.compact-card .card-body h2 {
  min-height: 42px;
  font-size: 15px;
}

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

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

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

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

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

.category-card,
.category-overview {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card {
  padding: 24px;
}

.category-card::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(34, 211, 238, 0.1));
  transition: opacity 0.25s ease;
}

.category-card:hover,
.category-overview:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.category-card:hover::before {
  opacity: 1;
}

.category-card span,
.category-overview span {
  position: relative;
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--blue);
  font-weight: 900;
}

.category-card strong,
.category-overview h2 {
  position: relative;
  display: block;
  margin: 0 0 10px;
  color: #111827;
  font-size: 22px;
  font-weight: 900;
}

.category-card p,
.category-overview p {
  position: relative;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.ranking-panel,
.article-panel,
.info-panel {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

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

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

.rank-item {
  display: grid;
  grid-template-columns: 36px 58px minmax(0, 1fr) 42px;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 16px;
  background: #f8fbff;
  transition: background 0.2s ease, transform 0.2s ease;
}

.rank-item:hover {
  background: #eff6ff;
  transform: translateX(4px);
}

.rank-item span {
  color: var(--blue);
  font-weight: 900;
}

.rank-item img {
  width: 58px;
  height: 42px;
  object-fit: cover;
  border-radius: 12px;
}

.rank-item strong {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rank-item em {
  color: #f97316;
  font-style: normal;
  font-weight: 900;
}

.panel-link {
  width: 100%;
  margin-top: 20px;
}

.site-footer {
  margin-top: 40px;
  color: #475569;
  background: #f8fbff;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding: 42px 0;
}

.site-footer p {
  max-width: 520px;
  line-height: 1.8;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: #111827;
  font-size: 16px;
}

.site-footer a:not(.footer-brand) {
  display: block;
  margin: 8px 0;
  color: #475569;
}

.footer-bottom {
  padding: 18px 0 28px;
  color: #64748b;
  border-top: 1px solid var(--line);
}

.page-hero {
  position: relative;
  padding: 78px 0 70px;
  color: #ffffff;
  overflow: hidden;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
}

.soft-hero {
  background: linear-gradient(135deg, #3b82f6, #22d3ee);
}

.category-hero {
  background: linear-gradient(135deg, #1d4ed8, #06b6d4 70%, #67e8f9);
}

.rank-hero {
  background: linear-gradient(135deg, #1e3a8a, #2563eb 45%, #22d3ee);
}

.search-hero {
  background: linear-gradient(135deg, #2563eb, #14b8a6);
}

.page-hero::after {
  position: absolute;
  right: -90px;
  top: -90px;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  content: "";
  background: rgba(255, 255, 255, 0.18);
}

.breadcrumb {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.breadcrumb a::after {
  margin-left: 10px;
  content: "/";
  color: rgba(255, 255, 255, 0.52);
}

.page-hero h1 {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 0 16px;
  font-size: clamp(42px, 7vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.page-hero p {
  position: relative;
  z-index: 2;
  max-width: 740px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.8;
}

.filter-bar {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.filter-bar button,
.quick-tags button {
  border: 0;
  cursor: pointer;
}

.filter-bar button {
  padding: 10px 16px;
  color: #ffffff;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.filter-bar button.active,
.filter-bar button:hover {
  color: var(--blue);
  background: #ffffff;
}

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

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

.category-overview {
  min-height: 260px;
}

.category-overview img {
  width: 100%;
  height: 155px;
  object-fit: cover;
}

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

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

.lead-rank-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border-radius: 28px;
  color: #ffffff;
  background: #020617;
  box-shadow: var(--strong-shadow);
}

.lead-rank-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  opacity: 0.72;
  transition: transform 0.5s ease;
}

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

.lead-rank-card span,
.lead-rank-card div {
  position: absolute;
  z-index: 2;
}

.lead-rank-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.9), rgba(2, 6, 23, 0.05));
}

.lead-rank-card span {
  top: 18px;
  left: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.88);
  font-weight: 900;
}

.lead-rank-card div {
  left: 22px;
  right: 22px;
  bottom: 22px;
}

.lead-rank-card h2 {
  margin: 0 0 10px;
  font-size: 26px;
}

.lead-rank-card p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.7;
}

.lead-rank-card em {
  color: #fde68a;
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
}

.large-search {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  max-width: 760px;
  margin-top: 30px;
  padding: 7px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: var(--strong-shadow);
}

.large-search input {
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 15px 18px;
  color: #111827;
  background: transparent;
}

.large-search button {
  padding: 13px 24px;
}

.quick-tags {
  position: relative;
  z-index: 2;
  margin-top: 18px;
}

.quick-tags button {
  padding: 8px 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

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

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

.detail-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: blur(2px);
  transform: scale(1.03);
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
  padding: 48px 0 70px;
}

.detail-intro {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 36px;
  align-items: end;
}

.detail-poster {
  width: 310px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  box-shadow: var(--strong-shadow);
}

.detail-copy h1 {
  margin: 18px 0 16px;
  font-size: clamp(40px, 6vw, 66px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.detail-copy p {
  max-width: 780px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.8;
}

.score-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 22px;
}

.score-row strong {
  color: #fde68a;
  font-size: 36px;
  line-height: 1;
}

.score-row span {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.detail-tags a {
  padding: 8px 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.player-section {
  padding-bottom: 28px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #000000;
  box-shadow: var(--strong-shadow);
}

.player-shell video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  color: #ffffff;
  background: rgba(2, 6, 23, 0.18);
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-overlay span {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  padding-left: 5px;
  font-size: 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 24px 55px rgba(59, 130, 246, 0.42);
}

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

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

.article-panel,
.info-panel {
  padding: 30px;
}

.article-panel h2,
.info-panel h2 {
  margin: 0 0 16px;
  font-size: 28px;
}

.article-panel p {
  margin: 0 0 28px;
  color: #374151;
  font-size: 17px;
  line-height: 2;
}

.info-panel {
  position: sticky;
  top: 96px;
}

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

.info-panel dt {
  color: #64748b;
  font-size: 13px;
  font-weight: 900;
}

.info-panel dd {
  margin: -8px 0 0;
  color: #111827;
  font-weight: 800;
}

.info-panel a {
  color: var(--blue);
}

.hidden-by-search {
  display: none !important;
}

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

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

  .mobile-nav.open {
    display: block;
  }

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

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

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

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

@media (max-width: 820px) {
  .hero {
    height: 660px;
  }

  .hero-content {
    padding-bottom: 160px;
  }

  .hero-thumbs {
    display: none;
  }

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

  .movie-grid,
  .compact-grid,
  .category-grid,
  .overview-grid,
  .lead-rank-grid,
  .category-movie-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .detail-poster {
    width: min(300px, 100%);
  }

  .with-action {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

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

  .hero {
    height: 620px;
  }

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

  .movie-grid,
  .compact-grid,
  .category-grid,
  .overview-grid,
  .lead-rank-grid,
  .category-movie-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .large-search {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

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