:root {
  --amber-50: #fff7ed;
  --amber-100: #ffedd5;
  --amber-200: #fed7aa;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --amber-700: #b45309;
  --amber-800: #92400e;
  --amber-900: #78350f;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
  --shadow-soft: 0 14px 40px rgba(120, 53, 15, .12);
  --shadow-card: 0 12px 26px rgba(17, 24, 39, .12);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--gray-900);
  background: linear-gradient(135deg, #fff7ed 0%, #fffbeb 44%, #ffedd5 100%);
  min-height: 100vh;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--white);
  background: linear-gradient(90deg, var(--amber-900), var(--amber-700), var(--amber-900));
  box-shadow: 0 12px 30px rgba(120, 53, 15, .25);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-title {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: .04em;
}

.brand-subtitle {
  color: var(--amber-100);
  font-size: 12px;
  margin-top: 4px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.desktop-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .88);
  transition: background .2s ease, color .2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  background: rgba(255, 255, 255, .13);
  color: var(--white);
}

.header-search-wrap {
  position: relative;
  width: 260px;
  flex: 0 0 auto;
}

.header-search,
.wide-search {
  display: flex;
  gap: 8px;
  align-items: center;
}

.header-search input,
.wide-search input,
.filter-bar input,
.filter-bar select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 999px;
  outline: none;
  padding: 11px 14px;
  color: var(--gray-900);
  background: rgba(255, 255, 255, .95);
}

.header-search button,
.wide-search button {
  border: 0;
  border-radius: 999px;
  padding: 11px 16px;
  color: var(--white);
  background: var(--amber-600);
  cursor: pointer;
}

.search-results {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(420px, calc(100vw - 24px));
  max-height: 520px;
  overflow: auto;
  padding: 10px;
  border-radius: 18px;
  background: var(--white);
  color: var(--gray-900);
  box-shadow: var(--shadow-card);
}

.search-results.open {
  display: block;
}

.search-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  padding: 10px;
  border-radius: 14px;
  transition: background .2s ease;
}

.search-item:hover {
  background: var(--amber-50);
}

.search-item img {
  width: 64px;
  height: 82px;
  border-radius: 10px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--amber-100), var(--amber-700));
}

.search-item span {
  min-width: 0;
}

.search-item strong,
.search-item em,
.search-item small {
  display: block;
}

.search-item strong {
  font-size: 15px;
  line-height: 1.35;
}

.search-item em {
  margin: 5px 0;
  color: var(--amber-700);
  font-style: normal;
  font-size: 12px;
}

.search-item small {
  color: var(--gray-500);
  line-height: 1.45;
}

.empty-result {
  padding: 18px;
  color: var(--gray-500);
  text-align: center;
}

.menu-toggle {
  display: none;
  border: 0;
  background: rgba(255, 255, 255, .12);
  border-radius: 12px;
  padding: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.mobile-menu {
  display: none;
  padding: 0 16px 18px;
}

.mobile-menu.open {
  display: grid;
  gap: 8px;
}

.mobile-menu a,
.mobile-menu-title {
  padding: 11px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .1);
}

.mobile-menu-title {
  color: var(--amber-100);
  font-size: 13px;
}

.hero-carousel {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: var(--gray-900);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  background-size: cover;
  background-position: center;
  transition: opacity .65s ease, visibility .65s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-content {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: center;
  gap: 70px;
  color: var(--white);
}

.hero-copy {
  max-width: 720px;
}

.hero-kicker,
.section-kicker,
.page-hero span,
.ranking-hero span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--amber-100);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 18px 0;
  font-size: clamp(42px, 8vw, 76px);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: -.04em;
}

.hero-copy p {
  margin: 0;
  color: rgba(255, 247, 237, .92);
  font-size: 20px;
  line-height: 1.8;
}

.hero-tags,
.detail-tags,
.movie-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags {
  margin: 28px 0;
}

.hero-tags span,
.detail-tags span,
.movie-tags span {
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, .14);
  color: var(--white);
  font-size: 13px;
}

.movie-tags span,
.detail-tags span {
  background: var(--gray-100);
  color: var(--gray-700);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--amber-500), var(--amber-700));
  box-shadow: 0 12px 28px rgba(217, 119, 6, .38);
}

.btn.ghost {
  color: var(--white);
  background: rgba(255, 255, 255, .14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .2);
}

.btn.text {
  color: var(--amber-100);
}

.hero-poster {
  position: relative;
  display: block;
  border-radius: 30px;
  overflow: hidden;
  transform: rotate(2deg);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .42);
}

.hero-poster img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--amber-100), var(--amber-800));
}

.hero-poster span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(0, 0, 0, .55);
  backdrop-filter: blur(10px);
}

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

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

.hero-dot.active {
  background: var(--amber-500);
}

.home-search-band {
  margin-top: -46px;
  position: relative;
  z-index: 8;
}

.search-band-inner {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .95);
  box-shadow: var(--shadow-card);
}

.search-band-inner > div:first-child span,
.rank-panel-head span {
  display: block;
  color: var(--amber-700);
  font-size: 13px;
  font-weight: 800;
}

.search-band-inner > div:first-child strong {
  display: block;
  margin-top: 6px;
  font-size: 18px;
}

.search-results-wide {
  grid-column: 2;
  top: calc(100% + 8px);
  left: 300px;
  right: auto;
}

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

.section-head {
  margin-bottom: 28px;
}

.section-kicker {
  color: var(--amber-700);
  font-size: 13px;
}

.section-head h2 {
  margin: 8px 0 0;
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1.12;
}

.section-head p {
  max-width: 720px;
  margin: 10px 0 0;
  color: var(--gray-500);
  font-size: 16px;
  line-height: 1.7;
}

.grid {
  display: grid;
  gap: 24px;
}

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

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

.movie-card {
  min-width: 0;
}

.movie-card-link {
  display: block;
  height: 100%;
  overflow: hidden;
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform .28s ease, box-shadow .28s ease;
}

.movie-card-link:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(120, 53, 15, .22);
}

.movie-cover {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--amber-100), var(--amber-800));
}

.movie-card.large .movie-cover {
  height: 360px;
}

.movie-card.small .movie-cover {
  height: 210px;
}

.movie-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

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

.movie-badge,
.movie-duration {
  position: absolute;
  top: 14px;
  z-index: 2;
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.movie-badge {
  left: 14px;
  background: var(--amber-600);
}

.movie-duration {
  right: 14px;
  background: rgba(0, 0, 0, .55);
  backdrop-filter: blur(8px);
}

.movie-hover {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 18px;
  padding: 18px;
  opacity: 0;
  color: var(--white);
  background: linear-gradient(0deg, rgba(0, 0, 0, .78), rgba(0, 0, 0, .08));
  transition: opacity .25s ease;
}

.movie-card-link:hover .movie-hover {
  opacity: 1;
}

.movie-hover p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.play-circle {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--amber-600);
  box-shadow: 0 10px 24px rgba(217, 119, 6, .45);
}

.movie-info {
  padding: 18px;
}

.movie-info h3 {
  margin: 0 0 10px;
  min-height: 2.7em;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 850;
  transition: color .2s ease;
}

.movie-card-link:hover .movie-info h3 {
  color: var(--amber-700);
}

.movie-info p {
  margin: 0 0 14px;
  min-height: 3.1em;
  color: var(--gray-500);
  line-height: 1.55;
  font-size: 14px;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--gray-500);
  font-size: 13px;
  margin-bottom: 12px;
}

.movie-tags {
  gap: 6px;
}

.movie-tags span {
  padding: 5px 9px;
  font-size: 12px;
}

.soft-panel {
  background: linear-gradient(90deg, rgba(255, 237, 213, .84), rgba(254, 243, 199, .58));
}

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

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

.category-tile {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border-radius: 24px;
  padding: 20px;
  color: var(--white);
  background: var(--gray-900);
  box-shadow: var(--shadow-soft);
}

.category-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .55;
  transition: transform .35s ease;
}

.category-tile:hover img {
  transform: scale(1.08);
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, .78), rgba(0, 0, 0, .05));
}

.category-tile span,
.category-tile strong {
  position: relative;
  z-index: 2;
  display: block;
}

.category-tile span {
  margin-top: 88px;
  font-size: 24px;
  font-weight: 900;
}

.category-tile strong {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(255, 255, 255, .86);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 32px;
  align-items: start;
}

.rank-panel,
.side-panel,
.poster-card,
.detail-card {
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.rank-panel {
  position: sticky;
  top: 98px;
  padding: 22px;
}

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

.rank-panel-head a {
  color: var(--amber-700);
  font-weight: 800;
}

.rank-list,
.side-related,
.ranking-grid {
  display: grid;
  gap: 12px;
}

.compact-card {
  display: grid;
  grid-template-columns: auto 76px 1fr;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 16px;
  background: var(--gray-50);
  transition: background .2s ease, transform .2s ease;
}

.compact-card:hover {
  background: var(--amber-50);
  transform: translateX(4px);
}

.compact-card img {
  width: 76px;
  height: 54px;
  border-radius: 12px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--amber-100), var(--amber-800));
}

.compact-card strong,
.compact-card em {
  display: block;
}

.compact-card strong {
  font-size: 14px;
  line-height: 1.35;
}

.compact-card em {
  margin-top: 5px;
  color: var(--gray-500);
  font-size: 12px;
  font-style: normal;
}

.rank-number {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  background: linear-gradient(135deg, var(--amber-500), var(--amber-800));
  font-weight: 900;
}

.horizontal-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 280px;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 12px;
}

.page-hero,
.ranking-hero {
  color: var(--white);
  background: linear-gradient(135deg, var(--amber-900), var(--amber-700), var(--amber-900));
}

.page-hero .container {
  padding: 78px 0;
}

.page-hero h1,
.ranking-hero h1 {
  margin: 12px 0;
  font-size: clamp(36px, 7vw, 62px);
  line-height: 1.08;
}

.page-hero p,
.ranking-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--amber-100);
  font-size: 18px;
  line-height: 1.8;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 22px;
  color: rgba(255, 255, 255, .82);
}

.breadcrumb a:hover {
  color: var(--white);
}

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

.category-overview-card a {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  height: 100%;
  padding: 22px;
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease;
}

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

.category-cover-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.category-cover-stack img {
  height: 118px;
  width: 100%;
  object-fit: cover;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--amber-100), var(--amber-800));
}

.category-overview-body span {
  color: var(--amber-700);
  font-weight: 800;
}

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

.category-overview-body p {
  color: var(--gray-500);
  line-height: 1.75;
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 180px 180px;
  gap: 14px;
  margin-bottom: 30px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .82);
  box-shadow: var(--shadow-soft);
}

.wide-filter {
  grid-template-columns: minmax(220px, 1fr) 180px 160px 180px;
}

.filter-bar input,
.filter-bar select {
  border-color: var(--gray-200);
}

.ranking-hero {
  background-size: cover;
  background-position: center;
}

.ranking-hero-inner {
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 60px;
  align-items: center;
}

.ranking-hero img {
  width: 260px;
  height: 350px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .35);
}

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

.detail-breadcrumb {
  padding: 16px 0;
  background: var(--gray-900);
  color: rgba(255, 255, 255, .78);
}

.detail-breadcrumb .breadcrumb {
  margin-top: 0;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 30px;
  padding: 34px 0 0;
}

.player-shell {
  overflow: hidden;
  border-radius: 24px;
  background: #000;
  box-shadow: 0 30px 70px rgba(17, 24, 39, .35);
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.big-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 72px;
  height: 72px;
  border: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  background: linear-gradient(135deg, var(--amber-500), var(--amber-700));
  box-shadow: 0 18px 40px rgba(0, 0, 0, .35);
  cursor: pointer;
  font-size: 28px;
  z-index: 3;
}

.big-play.hidden {
  display: none;
}

.player-message {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 12px 16px;
  border-radius: 12px;
  color: var(--white);
  background: rgba(0, 0, 0, .66);
  z-index: 4;
}

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

.detail-category {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--white);
  background: var(--amber-600);
  font-weight: 800;
}

.detail-card h1 {
  margin: 0 0 18px;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.12;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--gray-500);
}

.detail-meta span {
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--gray-100);
}

.one-line {
  color: var(--amber-800);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.75;
}

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

.detail-card p {
  color: var(--gray-700);
  font-size: 16px;
  line-height: 1.9;
}

.detail-side {
  display: grid;
  gap: 22px;
  align-content: start;
}

.poster-card,
.side-panel {
  padding: 20px;
}

.poster-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--amber-100), var(--amber-800));
}

.side-panel h2 {
  margin: 0 0 16px;
}

.side-related .compact-card {
  grid-template-columns: 76px 1fr;
}

.side-related .rank-number {
  display: none;
}

.site-footer {
  margin-top: 70px;
  color: #d1d5db;
  background: linear-gradient(90deg, #111827, #1f2937, #111827);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) 1fr 1fr;
  gap: 36px;
  padding: 46px 0;
}

.footer-logo {
  color: var(--white);
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 12px;
}

.footer-main p {
  max-width: 560px;
  color: #9ca3af;
  line-height: 1.75;
}

.footer-note {
  color: var(--amber-200) !important;
}

.site-footer h3 {
  color: var(--white);
  margin: 0 0 14px;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.site-footer a {
  color: #d1d5db;
}

.site-footer a:hover {
  color: var(--amber-500);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 18px 0;
  color: #9ca3af;
}

[hidden] {
  display: none !important;
}

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

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .hero-content,
  .ranking-hero-inner,
  .detail-layout,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero-poster,
  .ranking-hero img,
  .detail-side {
    display: none;
  }

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

  .cards-large,
  .category-overview-grid {
    grid-template-columns: 1fr;
  }

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

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

  .brand-title {
    font-size: 20px;
  }

  .brand-subtitle {
    display: none;
  }

  .hero-carousel,
  .hero-content {
    min-height: 620px;
  }

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

  .hero-actions,
  .search-band-inner,
  .filter-bar,
  .wide-filter,
  .footer-grid,
  .category-overview-card a {
    grid-template-columns: 1fr;
  }

  .search-band-inner {
    gap: 16px;
  }

  .search-results-wide {
    left: 0;
    grid-column: 1;
  }

  .cards-regular,
  .cards-large,
  .category-grid,
  .ranking-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .movie-cover {
    height: 220px;
  }

  .movie-card.large .movie-cover {
    height: 260px;
  }

  .movie-info {
    padding: 14px;
  }

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

  .movie-info p,
  .movie-tags {
    display: none;
  }

  .category-tile {
    min-height: 180px;
  }

  .category-tile span {
    margin-top: 60px;
  }

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

  .category-cover-stack img {
    height: 92px;
  }

  .detail-card {
    padding: 20px;
  }

  .big-play {
    width: 58px;
    height: 58px;
    font-size: 23px;
  }
}

@media (max-width: 480px) {
  .cards-regular,
  .cards-large,
  .category-grid,
  .ranking-grid {
    grid-template-columns: 1fr;
  }

  .compact-card {
    grid-template-columns: auto 64px 1fr;
  }

  .compact-card img {
    width: 64px;
    height: 48px;
  }
}
