* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --orange: #f97316;
  --orange-dark: #ea580c;
  --pink: #ec4899;
  --slate: #0f172a;
  --slate-soft: #1e293b;
  --muted: #64748b;
  --line: #fed7aa;
  --surface: #ffffff;
  --soft: #fff7ed;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  --radius: 24px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: #1f2937;
  background: linear-gradient(180deg, #fff7ed 0%, #ffffff 34%, #f8fafc 100%);
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid #ffedd5;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 78px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-mark,
.footer-brand span {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--pink));
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.32);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 24px;
  background: linear-gradient(90deg, var(--orange), var(--pink));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.brand-text small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
}

.desktop-nav a,
.mobile-panel a {
  color: #374151;
  font-weight: 650;
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.mobile-panel a:hover {
  color: var(--orange);
}

.top-search,
.mobile-search {
  position: relative;
  display: flex;
  align-items: center;
}

.top-search input,
.mobile-search input,
.filter-bar input {
  border: 1px solid #fdba74;
  border-radius: 999px;
  padding: 10px 92px 10px 18px;
  outline: none;
  background: #fff;
  color: #111827;
  min-width: 240px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.top-search input:focus,
.mobile-search input:focus,
.filter-bar input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.15);
}

.top-search button,
.mobile-search button {
  position: absolute;
  right: 4px;
  height: calc(100% - 8px);
  border: 0;
  border-radius: 999px;
  padding: 0 16px;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(90deg, var(--orange), var(--pink));
}

.menu-toggle {
  display: none;
  border: 0;
  color: #374151;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
}

.mobile-panel {
  display: none;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 20px;
}

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

.mobile-panel nav {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

main {
  min-height: 70vh;
}

.hero-slider {
  position: relative;
  height: 620px;
  overflow: hidden;
  background: var(--slate);
}

.hero-track,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
}

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

.hero-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 35%, rgba(249, 115, 22, 0.38), transparent 32%),
    linear-gradient(90deg, rgba(2, 6, 23, 0.92) 0%, rgba(15, 23, 42, 0.64) 45%, rgba(15, 23, 42, 0.08) 100%),
    linear-gradient(0deg, rgba(2, 6, 23, 0.92) 0%, transparent 42%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 14px;
  border-radius: 999px;
  color: #fed7aa;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: rgba(249, 115, 22, 0.18);
  border: 1px solid rgba(253, 186, 116, 0.34);
}

.hero-copy h1,
.hero-copy h2,
.page-hero h1,
.detail-copy h1 {
  margin: 0;
  max-width: 840px;
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  font-size: clamp(40px, 6vw, 70px);
}

.hero-copy h2 {
  font-size: clamp(38px, 5.4vw, 66px);
}

.hero-movie-title {
  margin-top: 12px !important;
  color: #fed7aa;
  font-size: clamp(30px, 4vw, 48px) !important;
}

.hero-copy p,
.page-hero p,
.detail-copy p {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-meta,
.card-meta,
.mini-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.hero-meta {
  margin: 26px 0 32px;
}

.hero-meta span,
.mini-meta span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 750;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

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

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

.primary-btn {
  color: #fff;
  background: linear-gradient(90deg, var(--orange), var(--pink));
  box-shadow: 0 16px 36px rgba(249, 115, 22, 0.35);
}

.ghost-btn {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(12px);
}

.primary-btn:hover,
.ghost-btn:hover {
  transform: translateY(-2px) scale(1.02);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  cursor: pointer;
  font-size: 38px;
  line-height: 1;
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.05);
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

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

.hero-dots button {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dots button.active {
  width: 34px;
  background: #fff;
}

.content-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 24px 0;
}

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

.section-heading h2,
.side-panel h2,
.detail-text h2 {
  margin: 0;
  color: #1f2937;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.section-heading p {
  margin: 6px 0 0;
  color: var(--muted);
}

.section-link {
  flex-shrink: 0;
  color: var(--orange);
  font-weight: 900;
}

.section-link span {
  margin-left: 4px;
  font-size: 22px;
}

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

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

.movie-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  border: 1px solid rgba(253, 186, 116, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #fed7aa, #fce7f3);
}

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

.movie-card:hover .poster-link img,
.category-card-large:hover img,
.horizontal-card:hover img,
.ranking-item:hover img {
  transform: scale(1.06);
}

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

.score-badge {
  left: 12px;
  background: linear-gradient(90deg, var(--orange), var(--pink));
}

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

.card-body {
  padding: 18px;
}

.card-body h3,
.horizontal-card h3,
.rank-info h3 {
  margin: 0 0 8px;
  color: #111827;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.3;
}

.card-body h3 a:hover,
.horizontal-card h3 a:hover,
.rank-info h3 a:hover {
  color: var(--orange);
}

.card-body p,
.horizontal-card p,
.rank-info p,
.detail-text p {
  margin: 0;
  color: var(--muted);
}

.card-meta {
  margin: 14px 0 12px;
  color: #6b7280;
  font-size: 13px;
}

.card-meta span:not(:last-child)::after {
  content: "·";
  margin-left: 10px;
  color: #f59e0b;
}

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

.tag-row span {
  border-radius: 999px;
  padding: 5px 10px;
  color: #9a3412;
  font-size: 12px;
  font-weight: 800;
  background: #ffedd5;
}

.large-tags span {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.highlight-panel,
.white-panel,
.side-panel,
.filter-panel {
  border-radius: 34px;
  padding: 40px;
  background: linear-gradient(135deg, #fff7ed, #fdf2f8);
  box-shadow: var(--shadow);
}

.white-panel,
.filter-panel {
  background: #fff;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.65fr);
  gap: 30px;
  align-items: start;
}

.side-panel {
  position: sticky;
  top: 106px;
}

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

.horizontal-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 15px;
  align-items: center;
  padding: 12px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.horizontal-card img,
.rank-poster img {
  width: 100%;
  height: 128px;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.35s ease;
}

.mini-meta {
  margin-top: 10px;
  gap: 6px;
}

.mini-meta span {
  color: #9a3412;
  background: #ffedd5;
  border: 0;
  padding: 4px 9px;
  font-size: 12px;
}

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

.ranking-item {
  display: grid;
  grid-template-columns: 54px 96px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 14px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(253, 186, 116, 0.28);
}

.rank-no {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 15px;
  color: #fff;
  font-weight: 950;
  background: linear-gradient(135deg, var(--orange), var(--pink));
}

.rank-poster {
  overflow: hidden;
  border-radius: 16px;
}

.wide-ranking {
  gap: 18px;
}

.category-grid,
.category-large-grid {
  display: grid;
  gap: 18px;
}

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

.category-tile {
  min-height: 132px;
  padding: 24px;
  border-radius: 24px;
  color: #1f2937;
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(253, 186, 116, 0.35);
  transition: transform 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.category-tile:hover {
  color: #fff;
  transform: translateY(-6px);
  background: linear-gradient(135deg, var(--orange), var(--pink));
}

.category-tile strong {
  display: block;
  font-size: 20px;
  font-weight: 950;
  margin-bottom: 8px;
}

.category-tile span {
  display: block;
  color: inherit;
  opacity: 0.82;
  font-size: 14px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  color: #fff;
  background:
    radial-gradient(circle at 20% 20%, rgba(236, 72, 153, 0.45), transparent 32%),
    radial-gradient(circle at 78% 18%, rgba(249, 115, 22, 0.38), transparent 28%),
    linear-gradient(135deg, #0f172a, #1e293b 58%, #431407);
}

.page-hero > div {
  max-width: 1280px;
  margin: 0 auto;
  padding: 90px 24px 74px;
}

.slim-hero {
  min-height: 310px;
}

.page-hero h1 {
  font-size: clamp(42px, 6vw, 72px);
}

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

.category-card-large {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-radius: 30px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  box-shadow: var(--shadow);
}

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

.category-card-large img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.category-card-large span,
.category-card-large p {
  position: relative;
  z-index: 1;
}

.category-card-large span {
  font-size: 30px;
  font-weight: 950;
}

.category-card-large p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.84);
}

.filter-bar {
  display: grid;
  gap: 16px;
  margin-bottom: 28px;
}

.filter-bar input {
  width: 100%;
  max-width: 520px;
  min-width: 0;
  padding-right: 18px;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-buttons button {
  border: 1px solid #fdba74;
  border-radius: 999px;
  padding: 8px 15px;
  color: #9a3412;
  background: #fff7ed;
  cursor: pointer;
  font-weight: 800;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.filter-buttons button.active,
.filter-buttons button:hover {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(90deg, var(--orange), var(--pink));
}

.movie-card.hidden,
.ranking-item.hidden,
.horizontal-card.hidden {
  display: none;
}

.detail-hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  color: #fff;
  background: var(--slate);
}

.detail-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(10px) saturate(1.08);
  transform: scale(1.05);
}

.detail-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 25%, rgba(249, 115, 22, 0.36), transparent 30%),
    linear-gradient(90deg, rgba(2, 6, 23, 0.9), rgba(15, 23, 42, 0.76)),
    linear-gradient(0deg, rgba(2, 6, 23, 0.95), transparent 60%);
}

.detail-head {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 34px 24px 72px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 44px;
  color: rgba(255, 255, 255, 0.76);
}

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

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

.detail-cover {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.detail-copy h1 {
  font-size: clamp(42px, 6vw, 76px);
}

.player-section {
  margin-top: -80px;
  position: relative;
  z-index: 2;
}

.player-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 30px;
  background: #020617;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.26);
}

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

.player-cover {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: #000;
}

.player-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.64;
}

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

.play-circle {
  position: relative;
  z-index: 1;
  width: 92px;
  height: 92px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  font-size: 42px;
  text-indent: 6px;
  background: linear-gradient(135deg, var(--orange), var(--pink));
  box-shadow: 0 16px 40px rgba(249, 115, 22, 0.42);
}

.detail-text {
  display: grid;
  gap: 18px;
}

.detail-text p {
  font-size: 18px;
  line-height: 1.9;
}

.site-footer {
  margin-top: 70px;
  color: #e5e7eb;
  background: linear-gradient(135deg, #1e293b, #0f172a 55%, #1e1b4b);
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 54px 24px 34px;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 1fr;
  gap: 32px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 22px;
}

.site-footer p {
  margin: 0;
  color: #cbd5e1;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: #fff;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a {
  color: #cbd5e1;
}

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

.copyright {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 24px 28px;
  color: #94a3b8;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

  .top-search {
    margin-left: auto;
  }

  .menu-toggle {
    display: block;
  }

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

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

  .side-panel {
    position: static;
  }
}

@media (max-width: 820px) {
  .header-inner {
    height: 68px;
    padding: 0 16px;
  }

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

  .brand-text small,
  .top-search {
    display: none;
  }

  .mobile-panel {
    padding: 0 16px 18px;
  }

  .mobile-search input {
    width: 100%;
    min-width: 0;
  }

  .hero-slider {
    height: 560px;
  }

  .hero-copy {
    padding: 0 22px 32px;
    justify-content: flex-end;
  }

  .hero-copy h1,
  .hero-copy h2 {
    max-width: calc(100vw - 44px);
  }

  .hero-arrow {
    display: none;
  }

  .content-section {
    padding: 46px 16px 0;
  }

  .highlight-panel,
  .white-panel,
  .side-panel,
  .filter-panel {
    padding: 24px;
    border-radius: 24px;
  }

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

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

  .card-body {
    padding: 14px;
  }

  .card-body h3 {
    font-size: 16px;
  }

  .card-body p,
  .card-meta,
  .tag-row {
    display: none;
  }

  .ranking-item {
    grid-template-columns: 44px 76px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
  }

  .rank-no {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    font-size: 13px;
  }

  .rank-poster img,
  .horizontal-card img {
    height: 100px;
    border-radius: 14px;
  }

  .horizontal-card {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .page-hero > div {
    padding: 70px 16px 58px;
  }

  .category-card-large {
    min-height: 220px;
    padding: 20px;
  }

  .category-card-large span {
    font-size: 23px;
  }

  .detail-head {
    padding: 24px 16px 54px;
  }

  .detail-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .detail-cover {
    max-width: 260px;
  }

  .player-section {
    margin-top: -50px;
  }

  .player-shell {
    border-radius: 22px;
  }

  .play-circle {
    width: 72px;
    height: 72px;
    font-size: 34px;
  }
}

@media (max-width: 520px) {
  .movie-grid,
  .compact-grid,
  .minimal-grid,
  .category-grid,
  .category-large-grid {
    grid-template-columns: 1fr 1fr;
  }

  .poster-link {
    aspect-ratio: 0.72;
  }

  .hero-meta span:nth-child(n+4) {
    display: none;
  }

  .filter-buttons {
    max-height: 140px;
    overflow: auto;
  }
}
