:root {
  --primary: #2563eb;
  --secondary: #06b6d4;
  --accent: #14b8a6;
  --ink: #0f172a;
  --muted: #64748b;
  --soft: #f8fafc;
  --line: #e2e8f0;
  --card: #ffffff;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
  --shadow-strong: 0 28px 80px rgba(37, 99, 235, 0.20);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f8fbff 0%, #eef9ff 48%, #ffffff 100%);
}

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: linear-gradient(90deg, rgba(239, 246, 255, 0.96), rgba(236, 254, 255, 0.96), rgba(240, 253, 250, 0.96));
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.30);
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong,
.footer-brand {
  font-size: 22px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-text em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link,
.dropdown-toggle {
  border: 0;
  background: transparent;
  color: #334155;
  font-weight: 700;
  cursor: pointer;
  padding: 8px 0;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.dropdown-toggle:hover {
  color: var(--primary);
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  display: grid;
  width: 210px;
  padding: 10px;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  padding: 10px 12px;
  border-radius: 10px;
  color: #475569;
  font-size: 14px;
}

.dropdown-menu a:hover {
  color: var(--primary);
  background: #eff6ff;
}

.top-search {
  display: flex;
  align-items: center;
  width: min(300px, 28vw);
  padding: 4px;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  background: #fff;
}

.top-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  padding: 9px 12px;
  border-radius: 999px;
}

.top-search button {
  border: 0;
  border-radius: 999px;
  padding: 9px 14px;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  cursor: pointer;
}

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.10);
  cursor: pointer;
}

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

.mobile-panel {
  display: none;
  border-top: 1px solid rgba(226, 232, 240, 0.85);
  background: #fff;
}

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

.mobile-panel nav {
  display: grid;
  gap: 6px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 12px 0 18px;
}

.mobile-nav-link {
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 700;
  color: #334155;
}

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

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 64px 0 58px;
  background: linear-gradient(135deg, #eff6ff 0%, #ecfeff 45%, #f0fdfa 100%);
}

.hero-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  opacity: 0.45;
  filter: blur(70px);
  pointer-events: none;
}

.hero-glow-left {
  top: 20px;
  left: -80px;
  background: #93c5fd;
}

.hero-glow-right {
  right: -90px;
  bottom: 20px;
  background: #67e8f9;
}

.hero-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 28px;
  align-items: stretch;
}

.hero-slider {
  position: relative;
  min-height: 520px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  background: #0f172a;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
  gap: 28px;
  align-items: center;
  padding: 52px;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.62), rgba(15, 23, 42, 0.30)), var(--hero-image);
  background-size: cover;
  background-position: center;
  filter: saturate(1.04);
}

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

.hero-copy,
.hero-poster {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: max-content;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #0e7490;
  background: rgba(207, 250, 254, 0.92);
  font-weight: 800;
  font-size: 13px;
}

.hero-copy h1 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

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

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

.hero-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #0369a1;
  background: #e0f2fe;
  font-size: 12px;
  font-weight: 700;
}

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

.primary-button,
.secondary-button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  box-shadow: 0 16px 35px rgba(37, 99, 235, 0.32);
}

.primary-button:hover,
.secondary-button:hover,
.text-link:hover {
  transform: translateY(-2px);
}

.secondary-button {
  color: #075985;
  background: #fff;
  border: 1px solid rgba(14, 165, 233, 0.25);
}

.hero-poster {
  min-height: 360px;
  border: 4px solid rgba(255, 255, 255, 0.72);
  border-radius: 30px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.35);
}

.hero-dots {
  position: absolute;
  left: 52px;
  bottom: 28px;
  z-index: 4;
  display: flex;
  gap: 10px;
}

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

.hero-dot.active {
  background: #fff;
}

.hero-side,
.rank-panel,
.detail-main-card,
.category-overview-block {
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.hero-side {
  padding: 26px;
}

.hero-side h2,
.rank-head h2,
.section-head h2,
.category-overview-head h2,
.detail-main-card h1,
.detail-main-card h2 {
  margin: 0;
  letter-spacing: -0.03em;
}

.hero-side p,
.section-head p,
.category-overview-head p,
.page-hero p,
.detail-main-card p,
.site-footer p {
  color: var(--muted);
  line-height: 1.8;
}

.hero-side-grid {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.stat-strip {
  border-top: 1px solid rgba(226, 232, 240, 0.9);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  background: #fff;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 32px 0;
}

.stat-grid div {
  display: grid;
  gap: 8px;
  text-align: center;
}

.stat-grid strong {
  font-size: 28px;
  color: var(--primary);
}

.stat-grid span {
  color: var(--muted);
}

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

.white-section {
  background: #fff;
}

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

.section-head h2 {
  font-size: clamp(28px, 4vw, 38px);
}

.section-head a,
.text-link,
.rank-head a {
  color: var(--primary);
  font-weight: 800;
}

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

.category-card {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 172px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: auto -30px -60px auto;
  width: 130px;
  height: 130px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(6, 182, 212, 0.14));
}

.category-card:hover,
.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.12);
}

.category-icon {
  font-size: 36px;
}

.category-card strong {
  font-size: 18px;
}

.category-card em {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  font-style: normal;
}

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

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

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

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

.movie-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 22px;
  background: var(--card);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.poster-link {
  position: relative;
  display: block;
  height: 268px;
  overflow: hidden;
  background: linear-gradient(135deg, #dbeafe, #cffafe);
}

.poster-bg,
.rank-thumb {
  display: block;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.32s ease;
}

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

.poster-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  max-width: calc(100% - 24px);
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(15, 23, 42, 0.72);
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.movie-card-body {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.movie-card h3,
.movie-card h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
}

.movie-card h3 a,
.movie-card h2 a {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

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

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #475569;
  font-size: 13px;
}

.movie-meta span {
  padding: 4px 8px;
  border-radius: 999px;
  background: #f1f5f9;
}

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

.rank-panel {
  padding: 20px;
}

.rank-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

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

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

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

.rank-number {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  font-weight: 900;
}

.rank-thumb {
  height: 74px;
  border-radius: 12px;
  background-color: #dbeafe;
}

.rank-info {
  display: grid;
  gap: 6px;
  min-width: 0;
}

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

.rank-info em {
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 74px 0;
  background: linear-gradient(135deg, #eff6ff, #ecfeff, #f0fdfa);
}

.simple-hero h1,
.category-hero h1,
.rank-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 5vw, 60px);
  letter-spacing: -0.05em;
}

.simple-hero p,
.category-hero p,
.rank-hero p {
  max-width: 740px;
  font-size: 18px;
}

.category-hero {
  background: radial-gradient(circle at top right, rgba(6, 182, 212, 0.24), transparent 34%), linear-gradient(135deg, #eff6ff, #f8fafc);
}

.rank-hero {
  color: #fff;
  background-image: linear-gradient(90deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.56)), var(--rank-image);
  background-size: cover;
  background-position: center;
}

.rank-hero p {
  color: rgba(255, 255, 255, 0.84);
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) repeat(3, minmax(150px, 0.25fr));
  gap: 12px;
  margin-bottom: 26px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.single-filter {
  grid-template-columns: minmax(240px, 1fr);
}

.filter-bar input,
.filter-bar select {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  outline: 0;
  padding: 12px 14px;
  background: #fff;
  color: #334155;
}

.filter-bar input:focus,
.filter-bar select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.empty-state {
  display: none;
  margin: 30px 0 0;
  padding: 22px;
  border-radius: 18px;
  color: var(--muted);
  text-align: center;
  background: #fff;
  border: 1px dashed #cbd5e1;
}

.empty-state.show {
  display: block;
}

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

.category-overview-block {
  padding: 24px;
}

.category-overview-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.category-overview-head h2 {
  display: inline-flex;
  margin-left: 8px;
  font-size: 28px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 26px 0 16px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--primary);
  font-weight: 800;
}

.detail-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 24px;
  align-items: stretch;
  padding-bottom: 28px;
}

.player-card {
  border-radius: 28px;
  overflow: hidden;
  background: #020617;
  box-shadow: var(--shadow-strong);
}

.video-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 320px;
  background: #000;
}

.movie-video {
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  object-fit: contain;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 12px;
  border: 0;
  color: #fff;
  background: radial-gradient(circle at center, rgba(15, 23, 42, 0.38), rgba(15, 23, 42, 0.76));
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-ring {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 999px;
  color: var(--primary);
  background: #fff;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  font-size: 34px;
}

.player-overlay strong {
  font-size: 18px;
  letter-spacing: 0.04em;
}

.detail-cover {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background-color: #dbeafe;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.detail-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.84), transparent 62%);
}

.detail-cover div {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  padding: 22px;
  color: #fff;
}

.detail-cover span {
  width: max-content;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  font-size: 12px;
  font-weight: 800;
}

.detail-cover strong {
  font-size: 24px;
  line-height: 1.25;
}

.detail-content {
  display: grid;
  gap: 24px;
}

.detail-main-card {
  padding: clamp(24px, 4vw, 42px);
}

.detail-main-card h1 {
  margin-bottom: 16px;
  font-size: clamp(32px, 5vw, 54px);
}

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

.detail-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  color: #075985;
  background: #e0f2fe;
  font-size: 14px;
  font-weight: 800;
}

.lead-text {
  font-size: 18px;
  color: #334155 !important;
}

.detail-main-card h2 {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 24px;
}

.detail-main-card p {
  font-size: 16px;
}

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

.related-section {
  padding-top: 44px;
}

.long-rank-list {
  max-height: 980px;
  overflow: auto;
  padding-right: 6px;
}

.sticky-rank {
  position: sticky;
  top: 96px;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 34px;
  padding: 46px 0;
}

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

.site-footer a:not(.footer-brand),
.site-footer button {
  display: block;
  margin: 10px 0;
  color: #cbd5e1;
}

.site-footer a:hover,
.site-footer button:hover {
  color: #38bdf8;
}

.back-top {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

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

  .top-search {
    width: min(360px, 42vw);
  }

  .mobile-menu-button {
    display: block;
  }

  .hero-wrap,
  .two-column-layout,
  .detail-top {
    grid-template-columns: 1fr;
  }

  .hero-slider {
    min-height: 560px;
  }

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

  .detail-cover {
    min-height: 430px;
  }

  .sticky-rank {
    position: static;
  }
}

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

  .hero-section {
    padding-top: 36px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .hero-poster {
    min-height: 260px;
  }

  .hero-dots {
    left: 30px;
  }

  .stat-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .category-grid,
  .movie-grid,
  .compact-grid,
  .mini-grid,
  .all-movies-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

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

  .brand-text em {
    display: none;
  }

  .hero-slider {
    min-height: 650px;
    border-radius: 24px;
  }

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

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

  .hero-actions,
  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .category-grid,
  .movie-grid,
  .compact-grid,
  .mini-grid,
  .all-movies-grid {
    grid-template-columns: 1fr;
  }

  .poster-link {
    height: 330px;
  }

  .video-shell {
    min-height: 220px;
  }

  .rank-row {
    grid-template-columns: 30px 52px minmax(0, 1fr);
  }
}
