:root {
  --bg: #f8fafc;
  --paper: #ffffff;
  --paper-soft: rgba(255, 255, 255, 0.78);
  --text: #0f172a;
  --muted: #64748b;
  --line: rgba(8, 145, 178, 0.16);
  --cyan: #06b6d4;
  --cyan-dark: #0891b2;
  --blue: #2563eb;
  --blue-soft: #dbeafe;
  --shadow: 0 20px 60px rgba(8, 145, 178, 0.14);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(135deg, #f8fafc 0%, #ecfeff 45%, #eff6ff 100%);
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

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

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

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

.logo-icon {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 12px 32px rgba(6, 182, 212, 0.28);
  font-size: 15px;
}

.logo-text,
.footer-logo span:last-child {
  font-size: 24px;
  background: linear-gradient(90deg, var(--cyan-dark), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.nav-link {
  color: #334155;
  font-weight: 700;
  transition: color 0.25s ease;
}

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: rgba(236, 254, 255, 0.85);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: #334155;
}

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

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

.mobile-link {
  padding: 12px 6px;
  color: #334155;
  font-weight: 700;
}

.hero-section {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  padding: 128px 0 70px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(207, 250, 254, 0.62), rgba(255, 255, 255, 0.2), rgba(219, 234, 254, 0.7));
}

.blob {
  position: absolute;
  border-radius: 999px;
  filter: blur(48px);
  opacity: 0.75;
  animation: blobPulse 5s ease-in-out infinite alternate;
}

.blob-one {
  top: 110px;
  left: 5vw;
  width: 270px;
  height: 270px;
  background: rgba(103, 232, 249, 0.42);
}

.blob-two {
  right: 5vw;
  bottom: 52px;
  width: 360px;
  height: 360px;
  background: rgba(147, 197, 253, 0.42);
  animation-delay: 1.2s;
}

@keyframes blobPulse {
  from {
    transform: scale(0.95) translateY(0);
  }

  to {
    transform: scale(1.08) translateY(14px);
  }
}

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

.hero-copy {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: #334155;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(8, 145, 178, 0.1);
}

.hero-copy h1 {
  margin: 22px 0 18px;
  font-size: clamp(44px, 8vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.07em;
  background: linear-gradient(90deg, var(--cyan-dark), var(--blue), var(--cyan-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy p {
  margin: 0 auto 32px;
  max-width: 720px;
  color: #475569;
  font-size: 20px;
}

.search-panel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 740px;
  margin: 0 auto;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.search-icon {
  width: 42px;
  color: #94a3b8;
  font-size: 24px;
  text-align: center;
}

.search-panel input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  padding: 12px 4px;
}

.search-panel button {
  border: 0;
  border-radius: 14px;
  padding: 12px 22px;
  color: #ffffff;
  font-weight: 800;
  cursor: pointer;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.22);
}

.hero-carousel {
  position: relative;
  max-width: 980px;
  margin: 46px auto 0;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 30px 90px rgba(8, 145, 178, 0.22);
}

.hero-slides {
  position: relative;
  aspect-ratio: 16 / 7;
  min-height: 360px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.55s ease, transform 0.55s ease;
  pointer-events: none;
}

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

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

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.76), rgba(15, 23, 42, 0.2), rgba(8, 145, 178, 0.18));
}

.hero-caption {
  position: absolute;
  left: clamp(24px, 5vw, 58px);
  bottom: clamp(24px, 5vw, 48px);
  max-width: 560px;
  color: #ffffff;
}

.hero-caption strong {
  display: block;
  font-size: clamp(26px, 4vw, 48px);
  line-height: 1.1;
  margin-bottom: 12px;
}

.hero-caption em {
  display: block;
  color: rgba(255, 255, 255, 0.86);
  font-style: normal;
  margin-bottom: 18px;
}

.hero-caption span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 10px 18px;
  color: #0f172a;
  font-weight: 800;
  background: #ffffff;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.34);
  backdrop-filter: blur(8px);
  cursor: pointer;
  font-size: 32px;
  line-height: 1;
}

.hero-prev {
  left: 18px;
}

.hero-next {
  right: 18px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

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

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

.page-section {
  padding: 42px 0;
}

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

.section-head h2 {
  margin: 8px 0 6px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.1;
}

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

.section-line {
  display: inline-block;
  width: 6px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--cyan), var(--blue));
}

.section-more,
.text-link {
  color: var(--cyan-dark);
  font-weight: 800;
}

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

.movie-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.movie-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(8, 145, 178, 0.22);
}

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

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

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

.card-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0), rgba(15, 23, 42, 0.58));
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.card-chip,
.card-score,
.rank-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.card-chip {
  top: 12px;
  left: 12px;
  background: rgba(6, 182, 212, 0.88);
}

.card-score {
  top: 12px;
  right: 12px;
  background: rgba(15, 23, 42, 0.58);
}

.rank-badge {
  left: 12px;
  bottom: 12px;
  background: linear-gradient(90deg, #f59e0b, #ef4444);
}

.card-body {
  padding: 18px;
}

.card-body h3 {
  margin: 0 0 8px;
  overflow: hidden;
  color: #0f172a;
  font-size: 18px;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.movie-card:hover h3 {
  color: var(--cyan-dark);
}

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

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid #eef2f7;
  color: #64748b;
  font-size: 13px;
}

.card-meta span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.5fr);
  gap: 30px;
  align-items: start;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 42px 72px minmax(0, 1fr) 52px;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.rank-row:hover {
  transform: translateX(6px);
  box-shadow: 0 16px 38px rgba(8, 145, 178, 0.13);
}

.rank-row img {
  width: 72px;
  height: 54px;
  object-fit: cover;
  border-radius: 12px;
}

.rank-num {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
}

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

.rank-info em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.rank-score {
  color: #f59e0b;
  font-weight: 900;
  text-align: right;
}

.glass-panel,
.cta-panel,
.content-card,
.player-side,
.overview-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.glass-panel {
  position: sticky;
  top: 96px;
  padding: 30px;
}

.glass-panel h2,
.cta-panel h2,
.content-card h2,
.player-side h2 {
  margin-top: 0;
}

.primary-link,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 14px;
  font-weight: 900;
}

.primary-link {
  color: #ffffff;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.2);
}

.secondary-link {
  margin-left: 8px;
  color: var(--cyan-dark);
  background: rgba(236, 254, 255, 0.9);
}

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

.category-tile {
  display: block;
  min-height: 168px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(236, 254, 255, 0.72));
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(8, 145, 178, 0.16);
}

.category-tile span {
  font-size: 20px;
  font-weight: 900;
}

.category-tile p {
  color: var(--muted);
  font-size: 14px;
}

.category-tile em {
  color: var(--cyan-dark);
  font-style: normal;
  font-weight: 900;
}

.cta-panel {
  padding: 54px 32px;
  color: #ffffff;
  text-align: center;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.86);
}

.cta-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 26px;
}

.cta-cards a {
  min-width: 160px;
  padding: 18px 22px;
  border-radius: 18px;
  color: #ffffff;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.sub-hero {
  position: relative;
  padding: 128px 0 58px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(207, 250, 254, 0.72), rgba(239, 246, 255, 0.84));
}

.sub-hero h1 {
  margin: 18px 0 12px;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.sub-hero p {
  max-width: 760px;
  color: #475569;
  font-size: 18px;
}

.sub-hero .search-panel {
  margin: 28px 0 0;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  color: #334155;
  background: #ffffff;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.filter-chip:hover,
.filter-chip.active {
  color: #ffffff;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  transform: translateY(-2px);
}

.empty-state {
  display: none;
  padding: 46px;
  text-align: center;
  color: var(--muted);
}

.empty-state.is-visible {
  display: block;
}

.overview-grid {
  display: grid;
  gap: 22px;
}

.overview-card {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  padding: 18px;
}

.overview-media {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  overflow: hidden;
  border-radius: 20px;
}

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

.overview-body {
  align-self: center;
}

.overview-body h2 {
  margin: 0 0 8px;
  font-size: 28px;
}

.overview-body p {
  color: var(--muted);
}

.detail-hero {
  position: relative;
  padding: 120px 0 60px;
  background: radial-gradient(circle at 12% 20%, rgba(103, 232, 249, 0.34), transparent 30%), linear-gradient(135deg, #ecfeff, #eff6ff);
}

.detail-hero-inner {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.detail-poster {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 28px 70px rgba(8, 145, 178, 0.24);
}

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

.detail-poster span {
  position: absolute;
  right: 18px;
  top: 18px;
  border-radius: 999px;
  padding: 8px 12px;
  color: #ffffff;
  font-weight: 900;
  background: rgba(15, 23, 42, 0.58);
  backdrop-filter: blur(8px);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: #64748b;
  font-size: 14px;
}

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

.breadcrumb em {
  font-style: normal;
}

.detail-intro h1 {
  margin: 18px 0;
  font-size: clamp(34px, 6vw, 66px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.detail-line {
  max-width: 820px;
  color: #475569;
  font-size: 20px;
}

.detail-meta,
.tag-list,
.side-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.detail-meta span,
.tag-list span,
.side-meta span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: #334155;
  background: rgba(255, 255, 255, 0.72);
}

.player-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 24px;
  align-items: start;
}

.player-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #020617;
  box-shadow: 0 30px 90px rgba(2, 6, 23, 0.32);
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 12px;
  border: 0;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.16), rgba(2, 6, 23, 0.72));
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-circle {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  padding-left: 5px;
  color: #0f172a;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(255, 255, 255, 0.25);
  font-size: 30px;
}

.player-overlay strong {
  font-size: 20px;
}

.player-side {
  padding: 26px;
}

.player-side p {
  color: var(--muted);
}

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

.content-card {
  padding: 28px;
}

.content-card p {
  margin-bottom: 0;
  color: #475569;
  font-size: 17px;
}

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

.compact-card .card-body p {
  min-height: 0;
}

.site-footer {
  margin-top: 40px;
  border-top: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.96), rgba(236, 254, 255, 0.8));
}

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

.footer-grid h2 {
  margin: 0 0 14px;
  font-size: 18px;
}

.footer-grid p,
.footer-grid a {
  color: #64748b;
}

.footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-grid li + li {
  margin-top: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 20px;
  border-top: 1px solid var(--line);
  color: #64748b;
  font-size: 14px;
}

@media (max-width: 1080px) {
  .movie-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .nav-toggle {
    display: block;
  }

  .hero-section {
    min-height: auto;
    padding-top: 116px;
  }

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

  .hero-slides {
    min-height: 320px;
    aspect-ratio: 4 / 4.5;
  }

  .hero-caption {
    right: 24px;
  }

  .section-head,
  .split-section,
  .detail-hero-inner,
  .player-layout,
  .detail-content,
  .footer-grid,
  .overview-card {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: start;
  }

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

  .glass-panel {
    position: static;
  }

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

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

  .overview-media img {
    height: 120px;
  }
}

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

  .logo-text {
    font-size: 20px;
  }

  .hero-copy h1,
  .sub-hero h1,
  .detail-intro h1 {
    letter-spacing: -0.04em;
  }

  .search-panel {
    display: grid;
    grid-template-columns: 40px 1fr;
  }

  .search-panel button {
    grid-column: 1 / -1;
  }

  .hero-carousel {
    border-radius: 22px;
  }

  .hero-arrow {
    display: none;
  }

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

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

  .rank-row img {
    width: 60px;
    height: 48px;
  }

  .rank-score {
    display: none;
  }

  .secondary-link {
    margin-left: 0;
    margin-top: 8px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
  }
}
