:root {
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
  --shadow-soft: 0 20px 45px rgba(31, 41, 55, 0.12);
  --shadow-card: 0 16px 32px rgba(217, 119, 6, 0.16);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  color: var(--gray-800);
  background: linear-gradient(180deg, var(--amber-50), #fff7ed 48%, #ffffff);
  line-height: 1.6;
}

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, var(--amber-500), var(--orange-500), var(--amber-600));
  box-shadow: 0 12px 30px rgba(217, 119, 6, 0.28);
}

.header-inner {
  width: min(100% - 32px, var(--max-width));
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.brand {
  color: var(--white);
  font-size: 20px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-600);
  background: var(--white);
  box-shadow: 0 8px 18px rgba(255, 255, 255, 0.2);
  transition: transform 0.25s ease;
}

.brand:hover .brand-mark {
  transform: scale(1.08);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--white);
  font-weight: 600;
}

.main-nav a,
.mobile-nav a {
  opacity: 0.88;
  transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active,
.mobile-nav a:hover,
.mobile-nav a.active {
  opacity: 1;
  color: var(--amber-100);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

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

.mobile-nav {
  display: none;
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
  padding: 0 0 18px;
  color: var(--white);
}

.mobile-nav a {
  display: block;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 600;
}

.hero-carousel {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(120deg, #d97706, #f97316 48%, #fbbf24);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.36) 0, rgba(255, 255, 255, 0.36) 2px, transparent 2px), radial-gradient(circle at 80% 40%, rgba(255, 255, 255, 0.24) 0, rgba(255, 255, 255, 0.24) 3px, transparent 3px);
  background-size: 48px 48px, 70px 70px;
}

.hero-title-block {
  position: relative;
  z-index: 4;
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
  padding-top: 58px;
  text-align: center;
}

.hero-title-block p,
.eyebrow,
.page-hero p {
  margin: 0 0 12px;
  color: #fff7d6;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-title-block h1 {
  margin: 0;
  font-size: clamp(34px, 6vw, 66px);
  line-height: 1.05;
  font-weight: 900;
  text-shadow: 0 10px 28px rgba(17, 24, 39, 0.22);
}

.hero-stage {
  position: relative;
  z-index: 3;
  width: min(100% - 32px, var(--max-width));
  height: 430px;
  margin: 38px auto 0;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(120, 53, 15, 0.36);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  background-image: linear-gradient(90deg, rgba(17, 24, 39, 0.88), rgba(17, 24, 39, 0.4), rgba(249, 115, 22, 0.18)), var(--poster-image);
  background-size: cover;
  background-position: center;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.hero-overlay,
.detail-shade {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 68% 35%, rgba(251, 191, 36, 0.2), transparent 36%), linear-gradient(180deg, transparent, rgba(17, 24, 39, 0.72));
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(620px, 88%);
  margin-left: clamp(24px, 7vw, 78px);
}

.hero-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.05;
  font-weight: 900;
}

.hero-summary {
  max-width: 620px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
}

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

.hero-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.hero-tags span {
  padding: 7px 13px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

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

.primary-btn,
.ghost-btn,
.section-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.primary-btn {
  min-height: 48px;
  padding: 0 26px;
  color: var(--amber-600);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(255, 255, 255, 0.24);
}

.ghost-btn {
  min-height: 48px;
  padding: 0 22px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

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

.hero-dots {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 22px 0 48px;
}

.hero-dots button {
  width: 12px;
  height: 12px;
  border: 0;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dots button.is-active {
  width: 36px;
  background: var(--white);
}

.content-section {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
  padding: 66px 0;
}

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.2;
  color: var(--gray-800);
}

.section-heading p {
  margin: 8px 0 0;
  color: var(--gray-600);
}

.section-link {
  flex-shrink: 0;
  min-height: 42px;
  padding: 0 18px;
  color: var(--amber-600);
  background: var(--amber-100);
}

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

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

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

.movie-item[hidden] {
  display: none;
}

.movie-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.movie-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 45px rgba(217, 119, 6, 0.22);
}

.movie-poster,
.ranking-thumb {
  display: block;
  background-image: linear-gradient(145deg, rgba(17, 24, 39, 0.1), rgba(249, 115, 22, 0.18)), var(--poster-image);
  background-size: cover;
  background-position: center;
}

.movie-poster {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.movie-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
}

.movie-card:hover .movie-poster::after {
  background: rgba(0, 0, 0, 0.28);
}

.poster-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--white);
  background: var(--amber-500);
  font-size: 12px;
  font-weight: 800;
}

.poster-play {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 2;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.22);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.86);
  backdrop-filter: blur(8px);
  transition: opacity 0.26s ease, transform 0.26s ease;
}

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

.movie-card-body {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 18px;
}

.movie-card-body strong {
  font-size: 18px;
  line-height: 1.28;
  color: var(--gray-800);
  transition: color 0.2s ease;
}

.movie-card:hover .movie-card-body strong {
  color: var(--amber-600);
}

.movie-line {
  min-height: 44px;
  color: var(--gray-600);
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-meta {
  color: var(--gray-500);
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tag-row span {
  padding: 5px 10px;
  color: var(--amber-600);
  background: var(--amber-100);
}

.warm-band {
  background: linear-gradient(90deg, rgba(255, 237, 213, 0.9), rgba(254, 243, 199, 0.92));
}

.band-inner {
  padding-top: 60px;
  padding-bottom: 60px;
}

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

.category-tile {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.25), transparent 36%), linear-gradient(135deg, var(--amber-500), var(--orange-500));
  box-shadow: var(--shadow-card);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.category-tile:nth-child(even) {
  background: radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.25), transparent 38%), linear-gradient(135deg, var(--orange-500), var(--amber-600));
}

.category-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 42px rgba(217, 119, 6, 0.24);
}

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

.category-tile span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.9);
}

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

.ranking-panel,
.editor-panel,
.text-card,
.player-card {
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.ranking-panel,
.editor-panel {
  padding: 28px;
}

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

.movie-item.compact .movie-poster {
  aspect-ratio: 2 / 3;
}

.ranking-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ranking-row {
  display: grid;
  grid-template-columns: auto 62px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: 16px;
  background: var(--gray-50);
  transition: background 0.22s ease, transform 0.22s ease;
}

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

.rank-num {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--amber-400), var(--orange-500));
  font-weight: 900;
}

.ranking-thumb {
  width: 62px;
  height: 62px;
  border-radius: 14px;
}

.ranking-info {
  min-width: 0;
}

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

.ranking-info strong {
  color: var(--gray-800);
}

.ranking-info em {
  margin-top: 3px;
  color: var(--gray-500);
  font-size: 13px;
  font-style: normal;
}

.ranking-score {
  color: var(--amber-600);
  font-weight: 900;
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(120deg, var(--amber-500), var(--orange-500));
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image: radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.6), transparent 18%), radial-gradient(circle at 75% 65%, rgba(255, 255, 255, 0.34), transparent 22%);
}

.page-hero > div {
  position: relative;
  z-index: 2;
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
  padding: 76px 0;
}

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

.page-hero span {
  display: block;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
}

.compact-hero > div {
  padding: 58px 0;
}

.filter-panel {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 28px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.filter-panel label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: var(--gray-600);
  font-size: 13px;
  font-weight: 700;
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  height: 46px;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 0 14px;
  color: var(--gray-800);
  background: var(--gray-50);
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--amber-500);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.14);
}

.detail-hero {
  position: relative;
  background-image: linear-gradient(90deg, rgba(17, 24, 39, 0.96), rgba(17, 24, 39, 0.62)), var(--poster-image);
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.detail-wrap {
  position: relative;
  z-index: 2;
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
  padding: 34px 0 66px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

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

.breadcrumb em {
  font-style: normal;
  color: var(--white);
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(320px, 1fr);
  gap: 28px;
  align-items: stretch;
}

.player-card {
  overflow: hidden;
  background: #050505;
}

.video-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000000;
  cursor: pointer;
}

.movie-video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000000;
  object-fit: cover;
}

.play-toggle {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 5;
  width: 78px;
  height: 78px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--amber-500), var(--orange-500));
  box-shadow: 0 20px 40px rgba(249, 115, 22, 0.38);
  transform: translate(-50%, -50%);
  transition: transform 0.22s ease, opacity 0.22s ease;
  cursor: pointer;
}

.play-toggle:hover {
  transform: translate(-50%, -50%) scale(1.08);
}

.video-shell.is-playing .play-toggle {
  opacity: 0;
}

.video-shell.is-playing:hover .play-toggle,
.video-shell.is-paused .play-toggle {
  opacity: 1;
}

.play-icon {
  display: inline-block;
  font-size: 28px;
  margin-left: 4px;
}

.player-error {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: none;
  padding: 10px 14px;
  border-radius: 14px;
  color: var(--white);
  background: rgba(220, 38, 38, 0.84);
  font-size: 14px;
}

.video-shell.has-error .player-error {
  display: block;
}

.detail-info {
  padding: 28px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
}

.detail-info h1 {
  margin: 0 0 16px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.12;
}

.detail-one-line {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
}

.detail-tags {
  margin-bottom: 24px;
}

.movie-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
}

.movie-facts div {
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
}

.movie-facts dt {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.movie-facts dd {
  margin: 5px 0 0;
  font-weight: 800;
}

.detail-content {
  padding-bottom: 28px;
}

.text-card {
  padding: clamp(24px, 5vw, 44px);
}

.text-card h2 {
  margin: 0 0 14px;
  color: var(--gray-800);
  font-size: 26px;
}

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

.text-card p {
  margin: 0;
  color: var(--gray-700);
  font-size: 17px;
}

.full-ranking .ranking-row {
  grid-template-columns: 52px 74px 1fr auto;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(31, 41, 55, 0.08);
}

.site-footer {
  color: var(--white);
  background: linear-gradient(180deg, var(--gray-800), var(--gray-900));
}

.footer-grid {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
  padding: 52px 0;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 28px;
}

.footer-grid h2 {
  margin: 0 0 14px;
  color: var(--amber-400);
  font-size: 18px;
}

.footer-grid p,
.footer-grid a {
  display: block;
  margin: 0 0 9px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.footer-grid a:hover {
  color: var(--amber-400);
}

.footer-logo {
  margin-bottom: 16px;
  font-size: 20px;
}

.footer-logo .brand-mark {
  width: 34px;
  height: 34px;
  color: var(--white);
  background: var(--amber-500);
}

.footer-bottom {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
  padding: 20px 0 26px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.56);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
}

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

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

  .split-section,
  .detail-grid {
    grid-template-columns: 1fr;
  }

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

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

  .nav-toggle {
    display: inline-flex;
  }

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

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

  .hero-carousel {
    min-height: auto;
  }

  .hero-stage {
    height: 520px;
    border-radius: 24px;
  }

  .hero-slide {
    align-items: flex-end;
    background-image: linear-gradient(180deg, rgba(17, 24, 39, 0.28), rgba(17, 24, 39, 0.92)), var(--poster-image);
  }

  .hero-copy {
    width: auto;
    margin: 0;
    padding: 26px;
  }

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

  .primary-btn,
  .ghost-btn {
    width: 100%;
  }

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

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

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

  .detail-wrap {
    padding-bottom: 36px;
  }

  .detail-info {
    padding: 22px;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .header-inner {
    height: 64px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .hero-title-block {
    padding-top: 42px;
  }

  .hero-stage {
    height: 560px;
    width: min(100% - 22px, var(--max-width));
  }

  .content-section {
    width: min(100% - 22px, var(--max-width));
    padding: 46px 0;
  }

  .movie-grid,
  .featured-grid,
  .catalog-grid,
  .editor-grid,
  .category-grid,
  .overview-grid {
    grid-template-columns: 1fr;
  }

  .ranking-row,
  .full-ranking .ranking-row {
    grid-template-columns: 40px 54px 1fr;
  }

  .ranking-score {
    display: none;
  }

  .movie-facts {
    grid-template-columns: 1fr;
  }

  .play-toggle {
    width: 64px;
    height: 64px;
  }
}
