:root {
  --page-bg: #fffbeb;
  --surface: #ffffff;
  --surface-soft: #fff7ed;
  --text: #111827;
  --muted: #6b7280;
  --line: #fed7aa;
  --orange: #f97316;
  --orange-dark: #ea580c;
  --red: #ef4444;
  --amber: #f59e0b;
  --green: #16a34a;
  --black: #0f172a;
  --shadow: 0 12px 30px rgba(15, 23, 42, 0.10);
  --shadow-strong: 0 24px 60px rgba(15, 23, 42, 0.20);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page-bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 24px;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--orange), var(--red));
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.35);
  font-size: 14px;
}

.brand:hover .brand-text {
  color: var(--orange-dark);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #374151;
  font-weight: 600;
}

.nav-link {
  transition: color 0.2s ease;
}

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

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: #fff7ed;
  color: var(--text);
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  padding: 8px 16px 18px;
  border-top: 1px solid #ffedd5;
}

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

.mobile-link {
  padding: 12px 14px;
  border-radius: 12px;
  color: #374151;
  font-weight: 600;
}

.mobile-link:hover,
.mobile-link.is-active {
  background: #fff7ed;
  color: var(--orange);
}

.hero-carousel {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--orange), var(--red));
  color: #ffffff;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

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

.hero-slide > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 30%, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.16)),
    linear-gradient(0deg, rgba(15, 23, 42, 0.35), rgba(15, 23, 42, 0.15));
}

.hero-content {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(720px, 100%);
  padding: 68px 0 86px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.20);
  color: inherit;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  backdrop-filter: blur(12px);
}

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

.hero-copy p {
  max-width: 680px;
  margin: 0 0 24px;
  color: #ffedd5;
  font-size: clamp(18px, 2.5vw, 25px);
  line-height: 1.65;
}

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

.hero-tags span,
.tag-row span,
.detail-tags a,
.detail-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.20);
  color: inherit;
  font-size: 13px;
  font-weight: 700;
}

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

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

.primary-button {
  background: #ffffff;
  color: var(--orange-dark);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.primary-button.dark {
  background: var(--black);
  color: #ffffff;
}

.secondary-button {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(12px);
}

.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
}

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

.hero-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
}

.hero-dot.is-active {
  width: 34px;
  background: #ffffff;
}

.hero-strip {
  position: relative;
  z-index: 3;
  margin-top: -58px;
  padding: 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(20px);
}

.strip-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.strip-title strong {
  font-size: 22px;
}

.strip-title span {
  color: var(--muted);
}

.strip-cards,
.latest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.horizontal-card {
  display: flex;
  align-items: center;
  min-width: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.horizontal-card img {
  width: 92px;
  height: 74px;
  object-fit: cover;
  flex: 0 0 auto;
}

.horizontal-card span {
  min-width: 0;
  padding: 12px;
}

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

.horizontal-card strong {
  font-size: 15px;
}

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

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

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 900;
  letter-spacing: -0.03em;
}

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

.home-search {
  padding-top: 36px;
}

.global-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding: 20px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.global-search label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.global-search input {
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid #fed7aa;
  border-radius: 16px;
  outline: none;
  background: #fffaf3;
  color: var(--text);
}

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

.global-search button {
  align-self: end;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--orange), var(--red));
  color: #ffffff;
  font-weight: 900;
}

.filter-panel {
  padding: 20px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.filter-row {
  display: grid;
  grid-template-columns: minmax(260px, 1.6fr) repeat(3, minmax(150px, 1fr));
  gap: 14px;
}

.filter-row label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.filter-row input,
.filter-row select {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid #fed7aa;
  border-radius: 14px;
  outline: none;
  background: #fffaf3;
  color: var(--text);
}

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

.empty-state {
  display: none;
  margin: 16px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.empty-state.is-visible {
  display: block;
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.quick-links a {
  padding: 10px 14px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--orange-dark);
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

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

.featured-grid .movie-card:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.featured-grid .movie-card:first-child .poster {
  aspect-ratio: 1 / 1;
}

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

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

.card-hover {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

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

.movie-card {
  display: block;
  overflow: hidden;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

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

.poster {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, #f97316, #ef4444);
}

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

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

.poster-gradient {
  position: absolute;
  inset: auto 0 0;
  height: 54%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent);
}

.rating-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.82);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
}

.movie-info {
  display: grid;
  gap: 7px;
  padding: 15px;
}

.movie-info strong {
  display: -webkit-box;
  overflow: hidden;
  min-height: 44px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.3;
  font-weight: 900;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-card:hover .movie-info strong {
  color: var(--orange-dark);
}

.movie-meta,
.movie-desc {
  display: -webkit-box;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
}

.movie-meta {
  -webkit-line-clamp: 1;
}

.movie-desc {
  -webkit-line-clamp: 2;
}

.today-section {
  background: #ffffff;
}

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

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

.category-tile {
  display: grid;
  gap: 16px;
  overflow: hidden;
  padding: 16px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.category-poster-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 8px;
  height: 144px;
}

.category-poster-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.category-poster-row img:first-child {
  grid-row: span 2;
}

.category-copy {
  display: grid;
  gap: 8px;
}

.category-copy strong {
  font-size: 20px;
  font-weight: 900;
}

.category-copy em {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  font-style: normal;
}

.ranking-band,
.page-hero {
  background: linear-gradient(135deg, var(--orange), var(--red));
  color: #ffffff;
}

.ranking-band {
  padding: 64px 0;
}

.ranking-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 32px;
  align-items: start;
}

.ranking-copy h2,
.page-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.ranking-copy p,
.page-hero p {
  margin: 0 0 24px;
  color: #ffedd5;
  font-size: 18px;
  line-height: 1.7;
}

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

.rank-row,
.ranking-card {
  display: grid;
  align-items: center;
  grid-template-columns: 44px 72px 1fr auto;
  gap: 14px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.10);
}

.rank-num,
.ranking-index {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: #fff7ed;
  color: var(--orange-dark);
  font-weight: 900;
}

.rank-row img,
.ranking-card img {
  width: 72px;
  height: 88px;
  border-radius: 14px;
  object-fit: cover;
}

.rank-main,
.ranking-info {
  display: grid;
  min-width: 0;
  gap: 5px;
}

.rank-main strong,
.ranking-info strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 900;
}

.rank-main em,
.ranking-info em,
.ranking-info > span:not(.tag-row) {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.rank-score,
.ranking-rating {
  color: var(--orange-dark);
  font-weight: 900;
}

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

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 700;
}

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

.category-rows {
  display: grid;
  gap: 24px;
  padding-bottom: 64px;
}

.category-row-card {
  padding: 24px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.category-row-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.category-row-head h2 {
  margin: 0 0 8px;
  font-size: 26px;
}

.category-row-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.category-row-head a {
  flex: 0 0 auto;
  color: var(--orange-dark);
  font-weight: 900;
}

.category-movie-grid {
  margin-top: 26px;
}

.detail-main {
  background: #fffaf3;
}

.detail-hero {
  padding: 36px 0 52px;
  background:
    radial-gradient(circle at 82% 8%, rgba(249, 115, 22, 0.22), transparent 26%),
    linear-gradient(180deg, #111827 0%, #1f2937 56%, #fffaf3 56%, #fffaf3 100%);
}

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

.detail-player-card {
  color: #ffffff;
}

.detail-player-card .breadcrumb {
  color: rgba(255, 255, 255, 0.72);
}

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

.movie-video,
.player-poster,
.player-poster img,
.player-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.movie-video {
  object-fit: contain;
  z-index: 1;
}

.player-poster {
  z-index: 3;
  border: 0;
  padding: 0;
  background: #000000;
}

.player-poster img {
  object-fit: cover;
}

.player-shade {
  background:
    radial-gradient(circle, rgba(249, 115, 22, 0.28), transparent 28%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.16));
}

.play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--orange-dark);
  font-size: 32px;
  transform: translate(-50%, -50%);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
}

.player-poster.is-hidden {
  display: none;
  pointer-events: none;
}

.detail-player-card h1 {
  margin: 24px 0 14px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  font-weight: 900;
}

.detail-badges span {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.detail-one-line {
  max-width: 780px;
  margin: 18px 0 0;
  color: #ffedd5;
  font-size: 18px;
  line-height: 1.7;
}

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

.detail-cover {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: var(--shadow-strong);
}

.side-card,
.detail-article,
.detail-meta-card {
  border-radius: 26px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.side-card {
  padding: 18px;
}

.side-card h2,
.detail-article h2,
.detail-meta-card h2 {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 900;
}

.detail-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  padding: 46px 0;
}

.detail-article,
.detail-meta-card {
  padding: 28px;
}

.detail-article p {
  margin: 0 0 28px;
  color: #374151;
  font-size: 17px;
  line-height: 1.9;
}

.detail-tags a {
  background: #fff7ed;
  color: var(--orange-dark);
}

.detail-meta-card dl {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 12px 16px;
  margin: 0;
}

.detail-meta-card dt {
  color: var(--muted);
  font-weight: 800;
}

.detail-meta-card dd {
  margin: 0;
  font-weight: 700;
}

.detail-meta-card a {
  color: var(--orange-dark);
}

.site-footer {
  background: #111827;
  color: #d1d5db;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
  padding: 48px 0 36px;
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 14px;
  color: #ffffff;
}

.site-footer p,
.site-footer li {
  color: #9ca3af;
  line-height: 1.75;
}

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

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #9ca3af;
  font-size: 14px;
}

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

  .menu-button {
    display: block;
  }

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

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

  .global-search,
  .filter-row,
  .ranking-layout,
  .detail-layout,
  .detail-content-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .detail-side {
    grid-template-columns: 240px 1fr;
  }
}

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

  .brand {
    font-size: 20px;
  }

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

  .hero-copy {
    padding: 56px 0 78px;
  }

  .hero-strip {
    margin-top: -36px;
    border-radius: 22px;
  }

  .strip-title,
  .section-heading,
  .category-row-head,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .featured-grid .movie-card:first-child {
    grid-column: span 2;
    grid-row: auto;
  }

  .movie-info {
    padding: 12px;
  }

  .movie-info strong {
    min-height: 40px;
    font-size: 15px;
  }

  .movie-desc {
    display: none;
  }

  .ranking-card {
    grid-template-columns: 38px 62px 1fr;
  }

  .ranking-rating {
    grid-column: 2 / 4;
  }

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

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

  .play-button {
    width: 66px;
    height: 66px;
    font-size: 26px;
  }
}

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

  .featured-grid .movie-card:first-child {
    grid-column: auto;
  }

  .rank-row {
    grid-template-columns: 36px 60px 1fr;
  }

  .rank-score {
    display: none;
  }
}
