:root {
  --bg-950: #020617;
  --bg-900: #0f172a;
  --bg-800: #1e293b;
  --bg-700: #334155;
  --text: #f8fafc;
  --muted: #94a3b8;
  --soft: #cbd5e1;
  --line: rgba(148, 163, 184, 0.18);
  --emerald: #10b981;
  --emerald-dark: #059669;
  --cyan: #22d3ee;
  --glass: rgba(15, 23, 42, 0.72);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius: 1.25rem;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: radial-gradient(circle at 15% 0%, rgba(16, 185, 129, 0.16), transparent 34%), linear-gradient(180deg, var(--bg-950), var(--bg-900) 42%, var(--bg-950));
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

img {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.18), rgba(34, 211, 238, 0.12));
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(15, 23, 42, 0.94), rgba(2, 6, 23, 0.96));
  border-bottom: 1px solid var(--line);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.nav-shell {
  height: 72px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-name {
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  background: linear-gradient(90deg, #34d399, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--emerald), var(--cyan));
  color: white;
  font-size: 0.9rem;
  box-shadow: 0 0 26px rgba(16, 185, 129, 0.45);
}

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

.nav-link,
.desktop-nav > a,
.nav-dropdown > a {
  color: var(--soft);
  padding: 10px 12px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.desktop-nav > a:hover,
.nav-dropdown:hover > a {
  color: #6ee7b7;
  background: rgba(16, 185, 129, 0.1);
}

.nav-dropdown {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: 220px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.dropdown-panel a {
  display: block;
  padding: 10px 12px;
  color: var(--soft);
  border-radius: 10px;
}

.dropdown-panel a:hover {
  background: rgba(51, 65, 85, 0.75);
  color: white;
}

.nav-dropdown:hover .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.header-search input,
.toolbar input,
.toolbar select {
  height: 42px;
  border-radius: 999px;
  background: rgba(51, 65, 85, 0.72);
  border: 1px solid transparent;
  color: white;
  padding: 0 16px;
  outline: none;
  min-width: 210px;
  transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-search input:focus,
.toolbar input:focus,
.toolbar select:focus {
  border-color: rgba(16, 185, 129, 0.65);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.13);
  background: rgba(30, 41, 59, 0.94);
}

.header-search button,
.primary-btn,
.ghost-btn,
.section-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, border 0.2s ease, color 0.2s ease;
}

.header-search button,
.primary-btn {
  color: white;
  padding: 0 18px;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.28);
}

.header-search button:hover,
.primary-btn:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #34d399, var(--emerald));
}

.ghost-btn,
.section-link {
  color: #6ee7b7;
  padding: 0 18px;
  border: 1px solid rgba(16, 185, 129, 0.3);
  background: rgba(15, 23, 42, 0.45);
}

.ghost-btn:hover,
.section-link:hover {
  color: white;
  border-color: rgba(34, 211, 238, 0.45);
  background: rgba(16, 185, 129, 0.15);
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(51, 65, 85, 0.7);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: white;
  border-radius: 999px;
}

.mobile-panel {
  display: none;
  padding: 10px 16px 18px;
  background: rgba(15, 23, 42, 0.98);
  border-top: 1px solid var(--line);
}

.mobile-panel a {
  display: block;
  color: var(--soft);
  padding: 12px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.08);
}

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

.hero-carousel {
  position: relative;
  height: clamp(560px, 80vh, 780px);
  overflow: hidden;
  background: var(--bg-950);
}

.hero-slide {
  position: absolute;
  inset: 0;
  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;
  transform: scale(1.04);
  transition: transform 6s ease;
}

.hero-slide.is-active img {
  transform: scale(1.0);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, var(--bg-950) 0%, rgba(2, 6, 23, 0.78) 32%, rgba(15, 23, 42, 0.28) 100%), radial-gradient(circle at 20% 55%, rgba(16, 185, 129, 0.24), transparent 38%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding-bottom: clamp(96px, 16vh, 150px);
}

.hero-kicker,
.page-hero span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.88);
  color: white;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.hero-content h1 {
  max-width: 860px;
  margin-top: 18px;
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
  font-weight: 900;
  text-shadow: 0 14px 44px rgba(0, 0, 0, 0.55);
}

.hero-content p {
  max-width: 680px;
  margin-top: 22px;
  color: #dbeafe;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.75;
}

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

.hero-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  color: white;
  font-size: 2.5rem;
  line-height: 1;
  background: rgba(2, 6, 23, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(15, 23, 42, 0.85);
  transform: translateY(-50%) scale(1.04);
}

.hero-prev {
  left: max(18px, calc((100vw - 1180px) / 2));
}

.hero-next {
  right: max(18px, calc((100vw - 1180px) / 2));
}

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

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

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

.site-section {
  padding: clamp(40px, 6vw, 76px) 0;
}

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

.section-heading h2,
.page-hero h1,
.detail-card h1,
.detail-card h2,
.detail-aside h2,
.rank-column h2 {
  font-weight: 900;
  letter-spacing: -0.04em;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.section-heading p,
.page-hero p {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.75;
}

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

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

.movie-card,
.movie-list-card,
.category-card,
.detail-card,
.detail-aside,
.rank-card,
.toolbar,
.search-status,
.rank-column {
  background: rgba(30, 41, 59, 0.48);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.movie-card,
.movie-list-card,
.category-card,
.rank-card {
  overflow: hidden;
  transition: transform 0.24s ease, background 0.24s ease, border 0.24s ease, box-shadow 0.24s ease;
}

.movie-card:hover,
.movie-list-card:hover,
.category-card:hover,
.rank-card:hover {
  transform: translateY(-4px);
  background: rgba(30, 41, 59, 0.78);
  border-color: rgba(16, 185, 129, 0.38);
  box-shadow: var(--shadow);
}

.movie-card a,
.movie-list-card a,
.category-card a,
.rank-card a {
  color: inherit;
  display: block;
  height: 100%;
}

.poster-wrap {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
}

.poster-wrap img,
.list-poster img,
.rank-poster img,
.player-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.year-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  color: white;
  background: rgba(2, 6, 23, 0.72);
  font-size: 0.8rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.35rem;
  background: rgba(2, 6, 23, 0.38);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.movie-card:hover .play-icon,
.movie-list-card:hover .play-icon,
.rank-card:hover .play-icon {
  opacity: 1;
}

.movie-card-body {
  padding: 16px;
}

.movie-card h3,
.movie-list-card h3,
.rank-card h2 {
  color: white;
  font-weight: 800;
  line-height: 1.35;
  transition: color 0.2s ease;
}

.movie-card:hover h3,
.movie-list-card:hover h3,
.rank-card:hover h2 {
  color: #6ee7b7;
}

.movie-card h3 {
  font-size: 1.02rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-card p,
.movie-list-card p,
.rank-card p {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.62;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.86rem;
}

.meta-row span {
  display: inline-flex;
  align-items: center;
}

.tag-row,
.detail-tags,
.footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.tag-row span,
.detail-tags span,
.footer-tags a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: #a7f3d0;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.18);
  font-size: 0.8rem;
}

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

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

.movie-list-card a {
  display: flex;
  gap: 16px;
}

.list-poster {
  position: relative;
  flex: 0 0 180px;
  min-height: 118px;
  overflow: hidden;
}

.list-content {
  flex: 1;
  min-width: 0;
  padding: 16px 16px 16px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.highlight-section {
  padding: 34px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(6, 78, 59, 0.22), rgba(8, 47, 73, 0.2));
  border: 1px solid rgba(16, 185, 129, 0.16);
}

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

.category-card a {
  padding: 22px;
}

.category-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 900;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.96), rgba(34, 211, 238, 0.88));
  box-shadow: 0 18px 40px rgba(16, 185, 129, 0.24);
}

.category-card h2 {
  margin-top: 16px;
  color: white;
  font-size: 1.2rem;
  font-weight: 900;
}

.category-card p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.68;
  min-height: 82px;
}

.category-mini-links {
  display: grid;
  gap: 6px;
  margin-top: 14px;
}

.category-mini-links a {
  padding: 0;
  color: #6ee7b7;
  font-size: 0.88rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-hero {
  padding: 96px 0 70px;
  background: radial-gradient(circle at 18% 30%, rgba(16, 185, 129, 0.28), transparent 30%), linear-gradient(135deg, rgba(6, 78, 59, 0.18), rgba(8, 47, 73, 0.12));
  border-bottom: 1px solid var(--line);
}

.page-hero.compact {
  padding: 70px 0 56px;
}

.page-hero h1 {
  margin-top: 18px;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
}

.page-hero p {
  max-width: 760px;
  font-size: 1.08rem;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  margin-bottom: 20px;
}

.breadcrumbs a:hover {
  color: #6ee7b7;
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: end;
  padding: 18px;
  margin-bottom: 28px;
}

.toolbar label {
  display: grid;
  gap: 8px;
  color: var(--soft);
  font-size: 0.9rem;
}

.toolbar label.wide {
  flex: 1 1 280px;
}

.toolbar label.wide input {
  width: 100%;
}

.toolbar select {
  min-width: 160px;
  border-radius: 14px;
}

.search-status {
  margin-bottom: 22px;
  padding: 14px 18px;
  color: var(--soft);
}

.empty-state {
  padding: 42px;
  text-align: center;
  color: var(--muted);
  background: rgba(30, 41, 59, 0.45);
  border: 1px solid var(--line);
  border-radius: 24px;
}

.detail-page {
  padding: 34px 0 76px;
}

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

.detail-main {
  display: grid;
  gap: 22px;
}

.player-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 28px;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: var(--shadow);
}

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

.player-cover {
  position: absolute;
  inset: 0;
  cursor: pointer;
  background: #000;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.78), rgba(2, 6, 23, 0.18));
}

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

.big-play {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: 86px;
  height: 86px;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  background: rgba(16, 185, 129, 0.9);
  color: white;
  font-size: 2.4rem;
  padding-left: 7px;
  box-shadow: 0 18px 50px rgba(16, 185, 129, 0.38);
  transition: transform 0.2s ease, background 0.2s ease;
}

.big-play:hover {
  background: var(--emerald);
  transform: translate(-50%, -50%) scale(1.08);
}

.player-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  color: white;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.76), transparent);
  pointer-events: none;
}

.small-play {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: white;
  background: var(--emerald);
  pointer-events: auto;
}

.detail-card {
  padding: 26px;
}

.detail-card h1 {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
}

.detail-card h2,
.detail-aside h2 {
  font-size: 1.45rem;
  margin-bottom: 16px;
}

.detail-card h2:not(:first-child) {
  margin-top: 24px;
}

.detail-card p {
  color: var(--soft);
  line-height: 1.9;
  margin-top: 12px;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  color: var(--muted);
}

.detail-meta span {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(51, 65, 85, 0.62);
}

.detail-aside {
  position: sticky;
  top: 96px;
  padding: 20px;
}

.related-more {
  padding-bottom: 0;
}

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

.rank-card a {
  display: grid;
  grid-template-columns: 70px 120px minmax(0, 1fr);
  align-items: stretch;
  gap: 18px;
  padding: 14px;
}

.rank-number {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.95), rgba(34, 211, 238, 0.82));
  color: white;
  font-size: 1.6rem;
  font-weight: 900;
}

.rank-poster {
  position: relative;
  height: 150px;
  overflow: hidden;
  border-radius: 16px;
}

.rank-info {
  padding: 8px 8px 8px 0;
}

.rank-info h2 {
  font-size: 1.25rem;
}

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

.rank-column {
  padding: 22px;
}

.rank-column h2 {
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.site-footer {
  margin-top: 30px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.6), rgba(2, 6, 23, 0.98));
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 34px;
  padding: 54px 0;
}

.footer-brand {
  font-size: 1.3rem;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: var(--muted);
  line-height: 1.8;
}

.site-footer h2 {
  color: white;
  font-weight: 800;
  margin-bottom: 16px;
}

.site-footer a:hover {
  color: #6ee7b7;
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  padding: 20px 16px;
  text-align: center;
  color: var(--muted);
}

[hidden] {
  display: none !important;
}

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

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

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

  .detail-aside {
    position: static;
  }

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

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

  .mobile-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-shell {
    height: 64px;
  }

  .hero-carousel {
    height: 620px;
  }

  .hero-arrow {
    display: none;
  }

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

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

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

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

  .list-stack.two-columns,
  .rank-columns {
    grid-template-columns: 1fr;
  }

  .movie-list-card a {
    flex-direction: column;
  }

  .list-poster {
    flex-basis: auto;
    height: 220px;
  }

  .list-content {
    padding: 0 16px 16px;
  }

  .rank-card a {
    grid-template-columns: 54px 92px minmax(0, 1fr);
    gap: 12px;
  }

  .rank-poster {
    height: 118px;
  }
}

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

  .brand-name {
    font-size: 1.08rem;
  }

  .hero-carousel {
    height: 560px;
  }

  .hero-content h1 {
    font-size: 2.6rem;
  }

  .hero-actions,
  .page-actions {
    width: 100%;
  }

  .hero-actions a,
  .page-actions a {
    flex: 1 1 100%;
  }

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

  .highlight-section {
    padding: 22px;
  }

  .page-hero {
    padding: 58px 0 42px;
  }

  .toolbar {
    display: grid;
  }

  .toolbar input,
  .toolbar select {
    width: 100%;
    min-width: 0;
  }

  .rank-card a {
    grid-template-columns: 46px 78px minmax(0, 1fr);
  }

  .rank-number {
    font-size: 1.1rem;
  }

  .rank-poster {
    height: 104px;
  }

  .detail-card,
  .detail-aside {
    padding: 18px;
  }

  .big-play {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }

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