:root {
  --bg: #f8fafc;
  --panel: #ffffff;
  --ink: #111827;
  --muted: #64748b;
  --line: #e5e7eb;
  --amber: #f59e0b;
  --orange: #f97316;
  --red: #ef4444;
  --blue: #2563eb;
  --slate: #0f172a;
  --shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
  --soft-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.nav-shell {
  width: min(1220px, calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.35);
}

.brand-text {
  display: grid;
}

.brand-text strong {
  font-size: 20px;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, #d97706, #ea580c);
  -webkit-background-clip: text;
  color: transparent;
}

.brand-text small {
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link,
.mobile-link {
  border-radius: 12px;
  color: #334155;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link {
  padding: 10px 16px;
}

.nav-link:hover,
.mobile-link:hover {
  color: #0f172a;
  background: #f1f5f9;
}

.nav-link.active,
.mobile-link.active {
  color: #ffffff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 10px 22px rgba(249, 115, 22, 0.22);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  color: #0f172a;
  background: #f1f5f9;
}

.mobile-panel {
  display: none;
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto 14px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

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

.mobile-link {
  padding: 12px 14px;
}

.hero {
  position: relative;
  padding: 32px 0 52px;
  overflow: hidden;
  color: #ffffff;
  background: radial-gradient(circle at top left, rgba(245, 158, 11, 0.25), transparent 32%), linear-gradient(135deg, #0f172a, #111827 45%, #1f2937);
}

.hero-bg-glow {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(249, 115, 22, 0.18), transparent 28%), radial-gradient(circle at 15% 80%, rgba(37, 99, 235, 0.14), transparent 28%);
  pointer-events: none;
}

.hero-frame {
  position: relative;
  width: min(1220px, calc(100% - 32px));
  height: clamp(500px, 70vh, 720px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  background: #111827;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.55s ease, transform 0.75s ease;
  pointer-events: none;
}

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

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.9), rgba(2, 6, 23, 0.52), rgba(2, 6, 23, 0.1)), linear-gradient(0deg, rgba(2, 6, 23, 0.82), transparent 55%);
}

.hero-content {
  position: absolute;
  left: clamp(24px, 7vw, 84px);
  bottom: clamp(78px, 12vw, 128px);
  width: min(680px, calc(100% - 48px));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 7px 13px;
  border-radius: 999px;
  color: #fde68a;
  background: rgba(245, 158, 11, 0.18);
  border: 1px solid rgba(245, 158, 11, 0.26);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.hero h1,
.inner-hero h1,
.category-hero h1,
.detail-info h1 {
  margin: 0;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.hero p,
.inner-hero p,
.category-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 2vw, 21px);
}

.hero-actions,
.detail-info .primary-btn {
  margin-top: 28px;
}

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

.primary-btn {
  padding: 13px 21px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 16px 32px rgba(249, 115, 22, 0.3);
}

.ghost-btn {
  margin-left: 12px;
  padding: 12px 20px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

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

.hero-controls {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.hero-arrow,
.hero-dot {
  pointer-events: auto;
}

.hero-arrow {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(12px);
  font-size: 30px;
  line-height: 1;
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(12px);
}

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}

.hero-dot.active {
  width: 26px;
  border-radius: 999px;
  background: #fbbf24;
}

main {
  min-height: 60vh;
}

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

.band-section {
  background: linear-gradient(90deg, #f8fafc, #fff7ed, #f8fafc);
}

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

.section-title h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.section-title p {
  margin: 7px 0 0;
  color: var(--muted);
}

.section-link,
.tile-link {
  flex-shrink: 0;
  padding: 10px 14px;
  color: #c2410c;
  background: #ffedd5;
}

.filter-panel {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 14px;
  margin-bottom: 28px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--soft-shadow);
}

.search-box,
.select-box {
  display: grid;
  gap: 7px;
  color: #334155;
  font-size: 13px;
  font-weight: 800;
}

.search-box input,
.select-box select {
  width: 100%;
  min-height: 48px;
  border: 1px solid #dbe3ef;
  border-radius: 15px;
  outline: none;
  color: #0f172a;
  background: #ffffff;
  padding: 0 15px;
}

.search-box input:focus,
.select-box select:focus {
  border-color: #f59e0b;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
}

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

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

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

.movie-card-link {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.movie-card-link:hover {
  transform: translateY(-7px);
  border-color: rgba(245, 158, 11, 0.32);
  box-shadow: var(--shadow);
}

.movie-cover {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0f172a;
}

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

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

.cover-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.movie-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 18px;
}

.movie-info h3 {
  margin: 8px 0;
  color: #111827;
  font-size: 19px;
  line-height: 1.28;
}

.movie-info p {
  flex: 1;
  margin: 0;
  color: #64748b;
  font-size: 14px;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}

.movie-meta span {
  display: inline-flex;
  padding: 4px 9px;
  border-radius: 999px;
  background: #f1f5f9;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}

.tag-row span {
  display: inline-flex;
  padding: 4px 9px;
  border-radius: 999px;
  color: #c2410c;
  background: #ffedd5;
  font-size: 12px;
  font-weight: 800;
}

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

.rank-card {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border-radius: 22px;
  color: #ffffff;
  background: #111827;
  box-shadow: var(--soft-shadow);
}

.rank-card img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  opacity: 0.74;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.rank-card:hover img {
  transform: scale(1.07);
  opacity: 0.52;
}

.rank-card strong,
.rank-card small,
.rank-num {
  position: absolute;
  left: 14px;
  right: 14px;
  z-index: 2;
}

.rank-num {
  top: 12px;
  width: fit-content;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.92);
  font-weight: 900;
}

.rank-card strong {
  bottom: 42px;
  font-size: 17px;
  line-height: 1.25;
}

.rank-card small {
  bottom: 18px;
  color: rgba(255, 255, 255, 0.78);
}

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

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

.category-tile {
  display: block;
  min-height: 100%;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.category-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

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

.category-thumbs img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  background: #0f172a;
}

.category-tile h2,
.category-tile h3 {
  margin: 0 0 8px;
  color: #111827;
  font-size: 22px;
}

.category-tile p {
  margin: 0 0 16px;
  color: #64748b;
}

.inner-hero,
.category-hero {
  position: relative;
  width: min(1220px, calc(100% - 32px));
  margin: 32px auto 0;
  overflow: hidden;
  border-radius: 30px;
  color: #ffffff;
  background: radial-gradient(circle at top right, rgba(245, 158, 11, 0.28), transparent 30%), linear-gradient(135deg, #0f172a, #1f2937);
  box-shadow: var(--shadow);
}

.inner-hero {
  padding: clamp(48px, 8vw, 90px);
}

.category-hero {
  min-height: 420px;
}

.category-hero img,
.category-hero-cover {
  position: absolute;
  inset: 0;
}

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

.category-hero-cover {
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.55), rgba(2, 6, 23, 0.16));
}

.category-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: clamp(44px, 7vw, 82px);
}

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

.breadcrumb {
  width: min(1220px, calc(100% - 32px));
  margin: 26px auto 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  color: #64748b;
  font-size: 14px;
}

.breadcrumb a {
  color: #c2410c;
  font-weight: 800;
}

.detail-hero {
  width: min(1220px, calc(100% - 32px));
  margin: 26px auto 0;
  display: grid;
  grid-template-columns: minmax(260px, 390px) 1fr;
  gap: 34px;
  align-items: stretch;
}

.detail-poster,
.detail-info {
  overflow: hidden;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
}

.detail-poster img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.detail-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 58px);
  background: radial-gradient(circle at top right, rgba(245, 158, 11, 0.16), transparent 32%), #ffffff;
}

.detail-info h1 {
  color: #111827;
}

.detail-one-line {
  margin: 18px 0 18px;
  color: #475569;
  font-size: 19px;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 4px 0 6px;
}

.detail-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  color: #334155;
  background: #f1f5f9;
  font-weight: 800;
}

.detail-tags {
  margin-top: 16px;
}

.watch-section {
  width: min(1220px, calc(100% - 32px));
  margin: 36px auto 0;
}

.player-box {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #050816;
  box-shadow: 0 26px 60px rgba(2, 6, 23, 0.28);
}

.movie-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #050816;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #ffffff;
  text-align: center;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.78), rgba(2, 6, 23, 0.32));
  cursor: pointer;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.play-button {
  width: 82px;
  height: 82px;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 18px 42px rgba(249, 115, 22, 0.38);
  font-size: 28px;
}

.player-overlay strong {
  font-size: clamp(22px, 4vw, 36px);
}

.player-overlay span {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.detail-body {
  display: grid;
  gap: 16px;
  color: #334155;
  font-size: 17px;
}

.detail-body h2 {
  margin: 10px 0 0;
  color: #111827;
  font-size: 28px;
  line-height: 1.2;
}

.detail-body p {
  margin: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
}

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

.compact-card {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.compact-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 15px;
  background: #0f172a;
}

.compact-card span {
  color: #111827;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.3;
}

.compact-card small {
  color: #64748b;
  font-weight: 700;
}

.ranking-list {
  display: grid;
  gap: 14px;
}

.ranking-item a {
  display: grid;
  grid-template-columns: 74px 138px 1fr;
  gap: 18px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ranking-item a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.ranking-number {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  font-size: 20px;
  font-weight: 1000;
}

.ranking-item img {
  width: 138px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 16px;
  background: #0f172a;
}

.ranking-item h2 {
  margin: 0 0 6px;
  font-size: 22px;
  line-height: 1.2;
}

.ranking-item p {
  margin: 0 0 10px;
  color: #64748b;
}

.empty-state {
  display: none;
  padding: 28px;
  border-radius: 22px;
  color: #64748b;
  text-align: center;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
}

.empty-state.show {
  display: block;
}

.hidden-card {
  display: none !important;
}

.site-footer {
  margin-top: 64px;
  color: #cbd5e1;
  background: linear-gradient(135deg, #020617, #111827 55%, #0f172a);
}

.footer-shell {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 44px 0;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: #ffffff;
  font-size: 21px;
}

.footer-shell p {
  max-width: 720px;
  margin: 0 0 20px;
  color: #94a3b8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: #fbbf24;
  font-weight: 800;
}

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

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

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

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

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

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero-frame {
    height: 580px;
    border-radius: 24px;
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.25));
  }

  .hero-content {
    left: 22px;
    bottom: 86px;
  }

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

  .ghost-btn {
    margin-left: 0;
  }

  .section-title {
    display: grid;
  }

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

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

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

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

  .detail-poster img {
    min-height: auto;
    aspect-ratio: 16 / 10;
  }

  .ranking-item a {
    grid-template-columns: 50px 100px 1fr;
    gap: 12px;
  }

  .ranking-number {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    font-size: 16px;
  }

  .ranking-item img {
    width: 100px;
  }
}

@media (max-width: 560px) {
  .brand-text small {
    display: none;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .nav-shell {
    min-height: 66px;
  }

  .hero {
    padding-top: 18px;
  }

  .hero-frame {
    width: min(100% - 20px, 1220px);
    height: 540px;
  }

  .hero h1,
  .inner-hero h1,
  .category-hero h1,
  .detail-info h1 {
    font-size: 36px;
  }

  .content-section,
  .inner-hero,
  .category-hero,
  .detail-hero,
  .watch-section,
  .breadcrumb,
  .footer-shell {
    width: min(100% - 20px, 1220px);
  }

  .inner-hero,
  .category-hero-content {
    padding: 32px 22px;
  }

  .featured-grid,
  .movie-grid,
  .catalogue-grid,
  .rank-grid,
  .category-grid,
  .category-grid.large,
  .compact-grid {
    grid-template-columns: 1fr;
  }

  .ranking-item a {
    grid-template-columns: 1fr;
  }

  .ranking-item img {
    width: 100%;
  }

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