
:root {
  color-scheme: dark;
  --bg: #0f172a;
  --bg-soft: #111827;
  --panel: rgba(15, 23, 42, 0.78);
  --panel-strong: rgba(30, 41, 59, 0.88);
  --line: rgba(255, 255, 255, 0.1);
  --muted: #94a3b8;
  --text: #f8fafc;
  --gold: #facc15;
  --gold-deep: #f59e0b;
  --orange: #f97316;
  --blue: #38bdf8;
  --radius: 1.25rem;
  --shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background: radial-gradient(circle at top left, rgba(250, 204, 21, 0.08), transparent 30%),
    linear-gradient(180deg, #0f172a 0%, #1e293b 45%, #0f172a 100%);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

button,
input {
  font: inherit;
}

main {
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1200px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.logo-mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: #111827;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  box-shadow: 0 10px 28px rgba(250, 204, 21, 0.3);
}

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

.desktop-nav a,
.mobile-nav a {
  color: #e2e8f0;
  transition: color 0.25s ease, background 0.25s ease;
}

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

.nav-search {
  width: 220px;
}

.nav-search input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  outline: none;
  padding: 10px 14px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-search input:focus {
  border-color: rgba(250, 204, 21, 0.65);
  box-shadow: 0 0 0 4px rgba(250, 204, 21, 0.12);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #ffffff;
}

.mobile-nav {
  display: none;
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.96);
}

.mobile-nav.open {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.mobile-nav a {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
}

.hero-section {
  position: relative;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 20% 25%, rgba(250, 204, 21, 0.18), transparent 28%),
    radial-gradient(circle at 80% 22%, rgba(56, 189, 248, 0.12), transparent 25%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.1), #0f172a 92%);
}

.hero-slider {
  position: relative;
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0 76px;
}

.hero-slide {
  display: none;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  align-items: center;
  gap: 48px;
}

.hero-slide.active {
  display: grid;
  animation: heroFade 0.75s ease both;
}

@keyframes heroFade {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 8px 14px;
  border: 1px solid rgba(250, 204, 21, 0.3);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(250, 204, 21, 0.1);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-copy h1,
.sub-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2.6rem, 6vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  text-shadow: 0 16px 40px rgba(0, 0, 0, 0.38);
}

.hero-copy h2 {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: clamp(1.6rem, 3vw, 3rem);
  line-height: 1.05;
}

.hero-copy p,
.sub-hero p {
  max-width: 720px;
  margin: 0 0 30px;
  color: #cbd5e1;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.8;
}

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

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

.primary-button {
  color: #111827;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  box-shadow: 0 20px 38px rgba(250, 204, 21, 0.25);
}

.ghost-button,
.section-link {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

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

.hero-poster {
  position: relative;
  display: block;
  width: min(390px, 100%);
  margin-left: auto;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.hero-poster.slim {
  width: min(320px, 100%);
}

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

.hero-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 15%, rgba(0, 0, 0, 0.72));
}

.hero-poster span {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #111827;
  background: rgba(250, 204, 21, 0.92);
  transform: translate(-50%, -50%);
}

.hero-poster:hover img {
  transform: scale(1.08);
}

.hero-dots {
  position: absolute;
  left: 0;
  bottom: 38px;
  display: flex;
  gap: 10px;
}

.hero-dots button {
  width: 38px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.2);
}

.hero-dots button.active {
  background: linear-gradient(135deg, var(--gold), var(--orange));
}

.content-section {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}

.soft-section {
  width: 100%;
  padding-left: max(16px, calc((100vw - 1200px) / 2));
  padding-right: max(16px, calc((100vw - 1200px) / 2));
  background: linear-gradient(90deg, rgba(30, 41, 59, 0.5), rgba(15, 23, 42, 0.5));
}

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

.section-heading h2 {
  margin: 0 0 8px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

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

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

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

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

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

.movie-card {
  min-width: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(15, 23, 42, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(250, 204, 21, 0.48);
  box-shadow: 0 24px 55px rgba(250, 204, 21, 0.12);
}

.movie-link {
  display: block;
  height: 100%;
}

.poster-frame {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.featured-grid .poster-frame {
  aspect-ratio: 4 / 5;
}

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

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

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.84));
}

.quality-badge,
.rank-badge {
  position: absolute;
  top: 12px;
  z-index: 2;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.quality-badge {
  right: 12px;
  color: #111827;
  background: var(--gold);
}

.rank-badge {
  left: 12px;
  color: #ffffff;
  background: rgba(239, 68, 68, 0.9);
}

.play-hover {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #111827;
  opacity: 0;
  background: rgba(250, 204, 21, 0.94);
  transform: translate(-50%, -50%) scale(0.88);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

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

.movie-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.82rem;
}

.movie-card h3 {
  margin: 0 0 10px;
  display: -webkit-box;
  overflow: hidden;
  font-size: 1rem;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.featured-grid .movie-card h3 {
  font-size: 1.35rem;
}

.movie-card p {
  margin: 0 0 14px;
  min-height: 42px;
  display: -webkit-box;
  overflow: hidden;
  color: #cbd5e1;
  font-size: 0.9rem;
  line-height: 1.55;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

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

.movie-tags span,
.detail-tags span,
.genre-pills span {
  padding: 5px 9px;
  border-radius: 999px;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
}

.stats-strip {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 24px 0 38px;
}

.stats-strip div {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.1));
}

.stats-strip strong {
  display: block;
  color: #ffffff;
  font-size: clamp(1.4rem, 3vw, 2.5rem);
}

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

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

.category-tile a {
  display: block;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(15, 23, 42, 0.62);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.category-tile a:hover {
  transform: translateY(-5px);
  border-color: rgba(250, 204, 21, 0.5);
}

.category-covers {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  height: 118px;
  overflow: hidden;
}

.category-covers img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-copy {
  padding: 18px;
}

.category-copy h2 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.category-copy p {
  min-height: 46px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.category-copy span {
  color: var(--gold);
  font-weight: 800;
}

.two-column-section {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: start;
}

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

.rank-row a {
  display: grid;
  grid-template-columns: auto 78px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.58);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.rank-row a:hover {
  transform: translateX(4px);
  border-color: rgba(250, 204, 21, 0.5);
}

.rank-row .number {
  width: 34px;
  color: var(--gold);
  font-size: 1.25rem;
  font-weight: 900;
  text-align: center;
}

.rank-row img {
  width: 78px;
  height: 102px;
  object-fit: cover;
  border-radius: 12px;
}

.rank-row h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.rank-row p {
  margin: 0 0 8px;
  display: -webkit-box;
  overflow: hidden;
  color: #cbd5e1;
  line-height: 1.5;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.rank-row span {
  color: var(--muted);
  font-size: 0.86rem;
}

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

.side-panel,
.article-card,
.info-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.62);
  box-shadow: var(--shadow);
}

.side-panel {
  position: sticky;
  top: 96px;
  padding: 28px;
}

.side-panel h2,
.article-card h2,
.info-card h2 {
  margin: 0 0 14px;
}

.side-panel p {
  margin: 0 0 20px;
  color: #cbd5e1;
  line-height: 1.8;
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quick-links a,
.category-tabs a {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.06);
}

.quick-links a:hover,
.category-tabs a:hover,
.category-tabs a.active {
  border-color: rgba(250, 204, 21, 0.55);
  color: var(--gold);
}

.sub-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: radial-gradient(circle at top, rgba(250, 204, 21, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.75));
}

.sub-hero-inner {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0 76px;
  position: relative;
  z-index: 1;
}

.sub-hero-inner.split,
.detail-layout,
.detail-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
  gap: 36px;
  align-items: center;
}

.focus-stack,
.ranking-focus {
  display: grid;
  gap: 12px;
}

.mini-focus,
.ranking-focus a {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
}

.mini-focus img,
.ranking-focus img {
  width: 76px;
  height: 92px;
  object-fit: cover;
  border-radius: 12px;
}

.mini-focus span,
.ranking-focus span {
  font-weight: 800;
}

.category-tabs {
  width: min(1200px, calc(100% - 32px));
  margin: 24px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.detail-hero {
  position: relative;
  min-height: 620px;
  isolation: isolate;
  overflow: hidden;
}

.detail-backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.detail-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(22px) saturate(1.2);
  transform: scale(1.1);
  opacity: 0.45;
}

.detail-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.74), #0f172a 96%);
}

.detail-hero-inner {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 70px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
  color: #cbd5e1;
}

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

.detail-poster img {
  width: min(330px, 100%);
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
}

.detail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.detail-badges span {
  padding: 8px 12px;
  border-radius: 999px;
  color: #111827;
  background: var(--gold);
  font-weight: 900;
}

.detail-copy h1 {
  margin: 0 0 16px;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 1;
}

.detail-line {
  margin: 0 0 20px;
  color: #e2e8f0;
  font-size: 1.15rem;
  line-height: 1.8;
}

.player-section {
  padding-top: 32px;
}

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

.movie-player video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #020617;
}

.play-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-content: center;
  gap: 14px;
  border: 0;
  color: #ffffff;
  cursor: pointer;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.35), rgba(2, 6, 23, 0.75));
}

.play-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.play-icon {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  margin: 0 auto;
  border-radius: 999px;
  color: #111827;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  font-size: 2rem;
  box-shadow: 0 22px 48px rgba(250, 204, 21, 0.28);
}

.player-status {
  position: absolute;
  left: 18px;
  bottom: 14px;
  z-index: 5;
  margin: 0;
  color: #e2e8f0;
  font-size: 0.92rem;
}

.detail-main {
  align-items: start;
}

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

.article-card p {
  margin: 0 0 24px;
  color: #cbd5e1;
  line-height: 1.95;
  font-size: 1.05rem;
}

.info-card dl {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 12px;
  margin: 0 0 18px;
}

.info-card dt {
  color: var(--muted);
}

.info-card dd {
  margin: 0;
  color: #ffffff;
}

.search-empty {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: #fde68a;
  background: rgba(250, 204, 21, 0.08);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: linear-gradient(135deg, #0f172a, #1e293b, #0f172a);
}

.footer-grid {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding: 52px 0;
}

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

.site-footer h3 {
  margin: 0 0 16px;
}

.site-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

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

.footer-bottom {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 28px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  text-align: center;
}

.hidden-by-search {
  display: none !important;
}

@media (max-width: 1100px) {
  .small-grid,
  .full-grid,
  .category-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

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

  .hero-slide,
  .sub-hero-inner.split,
  .detail-layout,
  .detail-main,
  .two-column-section {
    grid-template-columns: 1fr;
  }

  .hero-poster {
    margin: 0;
  }

  .hero-dots {
    position: static;
    margin-top: 28px;
  }

  .stats-strip,
  .footer-grid,
  .large-rank-list {
    grid-template-columns: 1fr 1fr;
  }

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

  .side-panel {
    position: static;
  }
}

@media (max-width: 620px) {
  .nav-shell {
    min-height: 64px;
  }

  .site-logo span:last-child {
    max-width: 136px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .hero-slider,
  .sub-hero-inner,
  .detail-hero-inner {
    padding-top: 58px;
    padding-bottom: 54px;
  }

  .hero-copy h1,
  .sub-hero h1 {
    font-size: 2.5rem;
  }

  .hero-actions,
  .section-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .featured-grid,
  .small-grid,
  .full-grid,
  .category-grid,
  .stats-strip,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .rank-row a {
    grid-template-columns: auto 64px minmax(0, 1fr);
  }

  .rank-row img {
    width: 64px;
    height: 86px;
  }

  .article-card,
  .info-card {
    padding: 20px;
  }
}
