:root {
  --teal: #0d9488;
  --teal-dark: #0f766e;
  --cyan: #0891b2;
  --blue-soft: #eff6ff;
  --text: #111827;
  --muted: #64748b;
  --line: #e5e7eb;
  --paper: #ffffff;
  --soft: #f8fafc;
  --dark: #0f172a;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

[hidden] {
  display: none !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
}

.nav-shell {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 20px;
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr) auto;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.brand-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #ffffff;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  box-shadow: 0 14px 28px rgba(8, 145, 178, 0.25);
}

.brand-name {
  display: block;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-tagline {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.global-search {
  max-width: 420px;
  justify-self: center;
  width: 100%;
}

.global-search-input,
.search-input,
.filter-select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  padding: 12px 18px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.global-search-input:focus,
.search-input:focus,
.filter-select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.12);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: flex-end;
}

.nav-link {
  color: #334155;
  font-weight: 650;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

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

.mobile-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: #f1f5f9;
  cursor: pointer;
}

.mobile-menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: #0f172a;
  border-radius: 2px;
}

.hero-shell {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  padding: 72px 20px 90px;
  background: linear-gradient(135deg, #ecfeff 0%, #f0fdfa 48%, #eff6ff 100%);
}

.hero-bg {
  position: absolute;
  border-radius: 999px;
  filter: blur(16px);
  opacity: 0.18;
  pointer-events: none;
}

.hero-bg-one {
  top: 80px;
  left: 4%;
  width: 360px;
  height: 360px;
  background: var(--teal);
}

.hero-bg-two {
  right: 2%;
  bottom: 70px;
  width: 440px;
  height: 440px;
  background: var(--cyan);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
}

.hero-slide {
  display: none;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  align-items: center;
  gap: 64px;
}

.hero-slide.is-active {
  display: grid;
  animation: heroFade 0.55s ease both;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 18px 0 12px;
  max-width: 760px;
  font-size: clamp(38px, 6vw, 66px);
  line-height: 1.08;
  letter-spacing: -0.06em;
}

.hero-copy h2 {
  margin: 0 0 18px;
  color: var(--teal-dark);
  font-size: clamp(26px, 3vw, 40px);
}

.hero-copy p {
  max-width: 720px;
  color: #334155;
  font-size: 20px;
}

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

.hero-tags span,
.tag-row span {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(13, 148, 136, 0.09);
  border: 1px solid rgba(13, 148, 136, 0.18);
  font-size: 13px;
  font-weight: 700;
}

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

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

.primary-button {
  color: #ffffff;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  box-shadow: 0 18px 38px rgba(13, 148, 136, 0.24);
}

.secondary-button {
  color: var(--teal-dark);
  background: #ffffff;
  border: 1px solid rgba(13, 148, 136, 0.22);
}

.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.14);
}

.hero-poster {
  position: relative;
  display: block;
  min-height: 520px;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow);
  transform: rotate(1deg);
  background: linear-gradient(135deg, #0f766e, #0891b2);
}

.hero-poster img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.hero-poster:hover img {
  transform: scale(1.06);
}

.hero-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.08), transparent);
}

.hero-play {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: rgba(13, 148, 136, 0.94);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
}

.hero-caption {
  position: absolute;
  z-index: 2;
  left: 26px;
  right: 26px;
  bottom: 26px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
}

.hero-dots {
  display: flex;
  gap: 10px;
  margin-top: 34px;
}

.hero-dot {
  width: 36px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(13, 148, 136, 0.25);
  cursor: pointer;
}

.hero-dot.is-active {
  width: 54px;
  background: var(--teal);
}

.feature-strip {
  max-width: 1180px;
  margin: -46px auto 0;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 0 20px;
}

.feature-item {
  min-height: 116px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 24px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.1);
}

.feature-item strong {
  font-size: 20px;
}

.feature-item span {
  color: var(--muted);
}

.section-shell,
.home-category-block {
  max-width: 1240px;
  margin: 0 auto;
  padding: 76px 20px;
}

.soft-section {
  max-width: none;
  padding-left: max(20px, calc((100vw - 1240px) / 2 + 20px));
  padding-right: max(20px, calc((100vw - 1240px) / 2 + 20px));
  background: linear-gradient(135deg, #f8fafc, #eef9fb);
}

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

.section-heading h2 {
  margin: 6px 0 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.section-heading a {
  color: var(--teal-dark);
  font-weight: 800;
}

.compact-heading h2 {
  font-size: clamp(24px, 3vw, 34px);
}

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

.category-tile {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 230px;
  padding: 18px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.category-covers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  height: 96px;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(135deg, #ccfbf1, #cffafe);
}

.category-covers img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-tile strong {
  font-size: 20px;
}

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

.filter-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(360px, 1.2fr);
  gap: 22px;
  align-items: center;
  padding: 24px;
  margin-bottom: 30px;
  border: 1px solid rgba(13, 148, 136, 0.16);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(240, 253, 250, 0.9), rgba(236, 254, 255, 0.72));
}

.filter-panel h2 {
  margin: 0 0 4px;
  font-size: 24px;
}

.filter-panel p {
  margin: 0;
  color: var(--muted);
}

.filter-controls {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr;
  gap: 12px;
}

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

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

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

.movie-card {
  overflow: hidden;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, #0f766e, #0891b2);
}

.poster-frame {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #0f766e, #0891b2);
}

.movie-card-compact .poster-frame,
.all-grid .poster-frame {
  aspect-ratio: 3 / 4;
}

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

.image-missing {
  opacity: 0;
}

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

.year-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(13, 148, 136, 0.94);
  font-size: 12px;
  font-weight: 800;
}

.play-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: rgba(13, 148, 136, 0.92);
  border-radius: 999px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.88);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.poster-link:hover .play-badge {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.card-body {
  padding: 18px;
}

.card-meta,
.rank-meta,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.card-meta span,
.rank-meta span,
.detail-meta span,
.detail-meta strong {
  padding: 3px 9px;
  border-radius: 999px;
  background: #f1f5f9;
}

.card-meta span:last-child,
.rank-meta strong,
.detail-meta strong {
  color: #b45309;
  background: #fffbeb;
}

.movie-card h3 {
  margin: 12px 0 8px;
  min-height: 2.8em;
  font-size: 18px;
  line-height: 1.35;
}

.movie-card h3 a:hover,
.rank-copy h3 a:hover,
.side-link-list a:hover {
  color: var(--teal-dark);
}

.movie-card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
}

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

.movie-card-compact p {
  font-size: 13px;
}

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

.rank-list-home {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rank-item {
  display: grid;
  grid-template-columns: 96px 54px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 14px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
}

.rank-cover {
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(135deg, #0f766e, #0891b2);
}

.rank-cover img {
  width: 96px;
  height: 118px;
  object-fit: cover;
  transition: transform 0.3s ease, opacity 0.2s ease;
}

.rank-number {
  color: var(--teal-dark);
  font-size: 30px;
  font-weight: 900;
  text-align: center;
}

.rank-copy h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.rank-copy p {
  margin: 0 0 10px;
  color: var(--muted);
}

.full-rank-list .rank-item {
  grid-template-columns: 110px 70px minmax(0, 1fr);
}

.full-rank-list .rank-cover img {
  width: 110px;
  height: 138px;
}

.page-hero,
.detail-top {
  background: radial-gradient(circle at 15% 15%, rgba(20, 184, 166, 0.25), transparent 28%), linear-gradient(135deg, #0f172a, #111827 52%, #0f766e);
  color: #ffffff;
}

.page-hero-inner,
.detail-shell {
  max-width: 1240px;
  margin: 0 auto;
  padding: 62px 20px;
}

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

.page-hero p {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.breadcrumb,
.breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
}

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

.hero-inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-inline-links a {
  padding: 8px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

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

.category-overview-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 310px;
  padding: 22px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.category-overview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #ffffff;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
}

.category-overview-head span {
  font-size: 22px;
  font-weight: 900;
}

.category-overview-card p {
  margin: 0;
  color: var(--muted);
}

.category-sample-links,
.side-link-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.category-sample-links a,
.side-link-list a {
  color: #334155;
  font-weight: 650;
}

.detail-shell {
  padding-top: 28px;
}

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

.player-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #000000;
  aspect-ratio: 16 / 9;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
}

.movie-player {
  width: 100%;
  height: 100%;
  display: block;
  background: #000000;
  object-fit: contain;
  cursor: pointer;
}

.player-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  color: #ffffff;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.58));
  cursor: pointer;
}

.player-cover span {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(13, 148, 136, 0.92);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.35);
  font-size: 30px;
}

.player-wrap.is-playing .player-cover {
  opacity: 0;
  pointer-events: none;
}

.player-controls {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.player-wrap:hover .player-controls,
.player-wrap:focus-within .player-controls {
  opacity: 1;
  transform: translateY(0);
}

.player-controls button {
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  padding: 10px 14px;
  cursor: pointer;
  backdrop-filter: blur(14px);
}

.player-controls button:hover {
  background: rgba(13, 148, 136, 0.84);
}

.detail-card,
.info-card,
.side-card {
  color: var(--text);
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.detail-card {
  margin-top: 24px;
  padding: 28px;
}

.detail-card h1 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.16;
}

.lead-text {
  color: #334155;
  font-size: 19px;
  font-weight: 650;
}

.detail-card section {
  margin-top: 26px;
}

.detail-card h2,
.side-card h2 {
  margin: 0 0 12px;
  font-size: 22px;
}

.detail-card p {
  color: #334155;
  font-size: 16px;
}

.detail-tags span {
  font-size: 14px;
}

.detail-sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 18px;
}

.info-card,
.side-card {
  padding: 18px;
}

.info-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 18px;
  background: linear-gradient(135deg, #0f766e, #0891b2);
}

.info-card dl {
  margin: 18px 0 0;
}

.info-card div {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #eef2f7;
}

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

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

.info-card dd {
  margin: 0;
  font-weight: 750;
}

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

.empty-state {
  margin: 28px 0 0;
  padding: 22px;
  text-align: center;
  color: var(--muted);
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid var(--line);
}

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

.footer-shell {
  max-width: 1240px;
  margin: 0 auto;
  padding: 54px 20px;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(360px, 1fr);
  gap: 42px;
}

.footer-logo {
  display: block;
  color: #ffffff;
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 12px;
}

.footer-brand p {
  max-width: 520px;
  margin: 0;
}

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

.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links strong {
  color: #ffffff;
  margin-bottom: 8px;
}

.footer-links a:hover {
  color: #5eead4;
}

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

@media (max-width: 1100px) {
  .nav-shell {
    grid-template-columns: auto auto;
  }

  .global-search {
    display: none;
  }

  .nav-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero-slide,
  .detail-grid,
  .filter-panel,
  .footer-shell {
    grid-template-columns: 1fr;
  }

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

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

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

  .detail-sidebar {
    position: static;
  }
}

@media (max-width: 760px) {
  .nav-shell {
    display: flex;
    flex-wrap: wrap;
  }

  .brand {
    flex: 1;
  }

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

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-link {
    padding: 10px 12px;
    border-radius: 12px;
    border-bottom: 0;
  }

  .nav-link.is-active {
    background: #ecfeff;
  }

  .hero-shell {
    min-height: auto;
    padding: 44px 18px 70px;
  }

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

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

  .hero-poster,
  .hero-poster img {
    min-height: 360px;
    height: 360px;
  }

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

  .section-shell,
  .home-category-block {
    padding: 48px 18px;
  }

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

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

  .category-grid,
  .category-overview-grid,
  .movie-grid,
  .compact-grid,
  .all-grid,
  .rank-list-home,
  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .rank-item,
  .full-rank-list .rank-item {
    grid-template-columns: 86px 48px minmax(0, 1fr);
  }

  .rank-cover img,
  .full-rank-list .rank-cover img {
    width: 86px;
    height: 110px;
  }

  .rank-copy p {
    display: none;
  }
}

@media (max-width: 520px) {
  .feature-strip,
  .category-grid,
  .category-overview-grid,
  .movie-grid,
  .compact-grid,
  .all-grid,
  .rank-list-home,
  .footer-links {
    grid-template-columns: 1fr;
  }

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

  .rank-number {
    font-size: 24px;
  }

  .hero-actions {
    flex-direction: column;
  }

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