:root {
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --emerald-700: #047857;
  --emerald-600: #059669;
  --emerald-500: #10b981;
  --emerald-400: #34d399;
  --rose-500: #f43f5e;
  --blue-500: #3b82f6;
  --white: #ffffff;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
  --shadow-card: 0 12px 28px rgba(15, 23, 42, 0.1);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--slate-800);
  background: linear-gradient(180deg, var(--slate-50), var(--white));
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.65;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: var(--white);
  background: linear-gradient(90deg, var(--slate-900), var(--slate-800), var(--slate-900));
  box-shadow: 0 16px 36px rgba(2, 6, 23, 0.26);
}

.nav-row {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--slate-950);
  background: linear-gradient(135deg, var(--emerald-400), var(--emerald-600));
  border-radius: 15px;
  box-shadow: 0 10px 24px rgba(16, 185, 129, 0.26);
}

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

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

.brand-subtitle {
  color: rgba(226, 232, 240, 0.78);
  font-size: 12px;
  margin-top: 3px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 13px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 600;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  cursor: pointer;
}

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

.mobile-nav {
  display: none;
  padding: 0 16px 16px;
  background: rgba(15, 23, 42, 0.98);
}

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

.mobile-nav-link {
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  font-weight: 700;
}

.mobile-nav-link.is-active {
  background: rgba(16, 185, 129, 0.28);
  color: var(--white);
}

.hero-section {
  position: relative;
  min-height: 74vh;
  overflow: hidden;
  color: var(--white);
  background: var(--slate-950);
}

.hero-image-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-image {
  position: relative;
  overflow: hidden;
  min-height: 100%;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.7s ease, filter 0.7s ease;
}

.hero-image span {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  max-width: calc(100% - 48px);
  font-weight: 800;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.86);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(2, 6, 23, 0.8));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-image:hover img,
.hero-image.is-active img {
  transform: scale(1.1);
  filter: saturate(1.05) contrast(1.05);
}

.hero-image:hover span,
.hero-image.is-active span,
.hero-image:hover::after,
.hero-image.is-active::after {
  opacity: 1;
  transform: translateY(0);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.34), rgba(2, 6, 23, 0.34) 40%, rgba(2, 6, 23, 0.72)), radial-gradient(circle at 50% 35%, rgba(16, 185, 129, 0.22), transparent 36%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  min-height: 74vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 96px 0 80px;
}

.hero-kicker,
.eyebrow {
  margin: 0 0 12px;
  color: var(--emerald-500);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-content h1 {
  margin: 0;
  max-width: 980px;
  font-size: clamp(38px, 6.5vw, 78px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-shadow: 0 16px 42px rgba(0, 0, 0, 0.42);
}

.hero-lead {
  max-width: 780px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 23px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

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

.primary-button {
  color: var(--white);
  background: var(--emerald-600);
  box-shadow: 0 14px 28px rgba(5, 150, 105, 0.32);
}

.primary-button:hover {
  background: var(--emerald-700);
  transform: translateY(-2px) scale(1.02);
}

.ghost-button {
  color: var(--white);
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(12px);
}

.ghost-button:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.hero-picks {
  width: min(900px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}

.hero-pick {
  text-align: left;
  padding: 16px;
  color: var(--white);
  background: rgba(15, 23, 42, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 42px rgba(2, 6, 23, 0.18);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.hero-pick:hover {
  transform: translateY(-4px);
  border-color: rgba(52, 211, 153, 0.58);
}

.hero-pick strong {
  display: block;
  font-size: 17px;
  line-height: 1.4;
}

.hero-pick span {
  display: block;
  margin-top: 6px;
  color: rgba(226, 232, 240, 0.82);
  font-size: 13px;
}

.section {
  padding: 72px 0;
}

.section.white {
  background: var(--white);
}

.section.soft {
  background: linear-gradient(135deg, var(--slate-100), var(--slate-50));
}

.category-strip {
  padding-top: 36px;
  padding-bottom: 58px;
}

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

.section-head h2,
.inner-hero h1,
.detail-copy h1 {
  margin: 0;
  color: var(--slate-800);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.03em;
}

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

.text-link {
  flex: 0 0 auto;
  color: var(--emerald-700);
  font-weight: 900;
}

.text-link:hover {
  color: var(--emerald-500);
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 160px 160px 160px;
  gap: 12px;
  margin: 0 0 28px;
  padding: 16px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 22px;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.search-box span {
  flex: 0 0 auto;
  color: var(--slate-500);
  font-weight: 800;
}

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

.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--emerald-500);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12);
}

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

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

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

.movie-card {
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(16, 185, 129, 0.35);
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--slate-900);
}

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

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

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(2, 6, 23, 0.56));
  opacity: 0.75;
}

.year-badge,
.rank-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 28px;
  padding: 0 10px;
  color: var(--white);
  background: var(--emerald-600);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.rank-badge {
  background: var(--rose-500);
}

.play-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--slate-950);
  background: rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.86);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

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

.movie-card-body h2 {
  margin: 0;
  color: var(--slate-800);
  font-size: 17px;
  line-height: 1.35;
  font-weight: 900;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.movie-card-body h2 a:hover {
  color: var(--emerald-700);
}

.card-desc {
  min-height: 48px;
  margin: 9px 0 12px;
  color: var(--slate-600);
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-desc.compact {
  min-height: 42px;
  font-size: 13px;
}

.meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--slate-500);
  font-size: 12px;
  font-weight: 700;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  color: var(--emerald-700);
  background: rgba(16, 185, 129, 0.1);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

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

.ranking-row {
  display: grid;
  grid-template-columns: 42px 84px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 12px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 20px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.ranking-row:hover {
  background: var(--white);
  transform: translateY(-3px);
}

.ranking-number {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--emerald-500), var(--emerald-700));
  border-radius: 14px;
  font-weight: 900;
}

.ranking-row img {
  width: 84px;
  height: 56px;
  object-fit: cover;
  border-radius: 14px;
}

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

.ranking-copy strong {
  display: block;
  color: var(--slate-800);
  font-weight: 900;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ranking-copy em {
  display: block;
  color: var(--slate-500);
  font-size: 13px;
  font-style: normal;
}

.ranking-tag {
  color: var(--emerald-700);
  font-size: 12px;
  font-weight: 900;
}

.inner-hero {
  padding: 86px 0;
  color: var(--white);
  background: radial-gradient(circle at 16% 22%, rgba(16, 185, 129, 0.32), transparent 32%), linear-gradient(135deg, var(--slate-950), var(--slate-800));
}

.inner-hero h1,
.inner-hero p {
  color: var(--white);
}

.inner-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 16px 0 0;
  color: rgba(226, 232, 240, 0.86);
  font-size: 18px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: rgba(226, 232, 240, 0.78);
  font-size: 14px;
  font-weight: 700;
}

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

.breadcrumb a::after {
  content: "/";
  margin-left: 8px;
  color: rgba(226, 232, 240, 0.52);
}

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

.channel-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.channel-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.channel-card a {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  min-height: 220px;
}

.channel-covers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: var(--slate-900);
}

.channel-covers img {
  width: 100%;
  height: 110px;
  object-fit: cover;
}

.channel-body {
  padding: 24px;
}

.channel-body h2 {
  margin: 0;
  color: var(--slate-800);
  font-size: 26px;
  font-weight: 900;
}

.channel-body p:not(.eyebrow) {
  color: var(--slate-600);
}

.channel-body span {
  color: var(--emerald-700);
  font-weight: 900;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--slate-950);
}

.detail-backdrop {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.05);
}

.detail-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  align-items: center;
  gap: 46px;
  min-height: 560px;
  padding: 64px 0;
}

.detail-poster {
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.4);
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.detail-copy h1 {
  color: var(--white);
  font-size: clamp(34px, 5vw, 62px);
}

.detail-one-line {
  max-width: 820px;
  color: rgba(226, 232, 240, 0.88);
  font-size: 20px;
}

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

.detail-meta span {
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-weight: 800;
}

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

.player-section {
  padding-top: 48px;
  padding-bottom: 48px;
  background: var(--slate-950);
}

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

.movie-player {
  width: 100%;
  height: 100%;
  display: block;
  background: #000000;
  cursor: pointer;
}

.player-cover {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

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

.play-button {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  color: var(--slate-950);
  background: rgba(255, 255, 255, 0.92);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.play-button:hover {
  transform: scale(1.08);
  background: var(--white);
}

.play-button span {
  margin-left: 6px;
  font-size: 34px;
}

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

.content-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.content-card h2 {
  margin: 0 0 12px;
  color: var(--slate-800);
  font-size: 24px;
  font-weight: 900;
}

.content-card p {
  margin: 0;
  color: var(--slate-600);
  font-size: 16px;
}

.site-footer {
  color: rgba(226, 232, 240, 0.82);
  background: var(--slate-950);
}

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

.footer-brand {
  display: inline-block;
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 18px;
}

.site-footer p {
  margin: 10px 0 0;
  max-width: 520px;
}

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

.footer-links a {
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--white);
  background: rgba(16, 185, 129, 0.28);
}

.footer-bottom {
  padding: 18px 0 26px;
  color: rgba(226, 232, 240, 0.62);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
}

[data-card].is-hidden {
  display: none;
}

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

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

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

  .detail-hero-grid {
    grid-template-columns: 260px minmax(0, 1fr);
  }

  .channel-card a {
    grid-template-columns: 180px minmax(0, 1fr);
  }
}

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

  .nav-toggle {
    display: block;
  }

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

  .hero-section,
  .hero-content {
    min-height: 760px;
  }

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

  .hero-image:not(.is-active) {
    display: none;
  }

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

  .section-head {
    display: block;
  }

  .text-link {
    display: inline-flex;
    margin-top: 12px;
  }

  .movie-grid,
  .slim-grid,
  .category-grid,
  .ranking-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

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

  .ranking-row {
    grid-template-columns: 38px 74px minmax(0, 1fr);
  }

  .ranking-tag {
    display: none;
  }

  .channel-grid,
  .detail-content {
    grid-template-columns: 1fr;
  }

  .channel-card a {
    grid-template-columns: 1fr;
  }

  .channel-covers {
    height: 170px;
  }

  .channel-covers img {
    height: 85px;
  }

  .detail-hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 42px 0;
  }

  .detail-poster {
    width: min(280px, 72vw);
  }

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

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

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

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

  .brand-subtitle {
    display: none;
  }

  .hero-content {
    align-items: stretch;
    text-align: left;
    padding-top: 80px;
  }

  .hero-actions {
    justify-content: flex-start;
  }

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

  .movie-grid,
  .slim-grid,
  .category-grid,
  .ranking-grid {
    grid-template-columns: 1fr;
  }

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

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