:root {
  --rose-50: #fff1f2;
  --rose-100: #ffe4e6;
  --rose-500: #f43f5e;
  --rose-600: #e11d48;
  --pink-600: #db2777;
  --orange-50: #fff7ed;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-900: #111827;
  --shadow-soft: 0 18px 55px rgba(225, 29, 72, 0.13);
  --shadow-card: 0 12px 35px rgba(15, 23, 42, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  background: #ffffff;
  color: var(--gray-900);
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

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

main {
  min-height: 70vh;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rose-100);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.05);
}

.site-nav {
  width: min(1180px, calc(100% - 32px));
  height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--rose-600);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.logo-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--rose-600), var(--pink-600));
  box-shadow: 0 12px 26px rgba(225, 29, 72, 0.24);
}

.logo-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linejoin: round;
}

.logo-full {
  font-size: 22px;
}

.logo-short {
  display: none;
  font-size: 20px;
}

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

.nav-link {
  color: var(--gray-700);
  font-weight: 650;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--rose-600);
}

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid var(--rose-100);
  background: #ffffff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-button span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--gray-700);
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 14px;
  padding: 10px;
  background: #ffffff;
  border: 1px solid var(--rose-100);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
}

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

.mobile-nav-link {
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--gray-700);
  font-weight: 650;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: var(--rose-50);
  color: var(--rose-600);
}

.hero-carousel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fff1f2 0%, #fdf2f8 48%, #fff7ed 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.7;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(244, 63, 94, 0.18),
      transparent 32%
    ),
    radial-gradient(
      circle at 86% 8%,
      rgba(219, 39, 119, 0.15),
      transparent 28%
    ),
    radial-gradient(
      circle at 50% 100%,
      rgba(251, 146, 60, 0.15),
      transparent 30%
    );
}

.hero-inner {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 640px;
  padding: 70px 0 72px;
}

.hero-slide {
  display: none;
  align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  gap: 56px;
  animation: fadeSlide 0.55s ease both;
}

.hero-slide.active {
  display: grid;
}

.hero-copy h1 {
  margin: 16px 0 16px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.hero-copy h2 {
  margin: 0 0 16px;
  color: var(--rose-600);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 850;
}

.hero-copy p {
  max-width: 690px;
  color: var(--gray-600);
  font-size: 19px;
  line-height: 1.9;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  padding: 8px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--rose-600);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(225, 29, 72, 0.12);
}

.hero-tags,
.movie-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags {
  margin: 24px 0 30px;
}

.hero-tags span,
.movie-tags span {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--rose-600);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(225, 29, 72, 0.08);
}

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

.primary-button,
.secondary-button,
.text-link,
.section-link,
.filter-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.primary-button,
.secondary-button {
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
}

.primary-button {
  color: #ffffff;
  background: linear-gradient(135deg, var(--rose-600), var(--pink-600));
  box-shadow: 0 16px 32px rgba(225, 29, 72, 0.24);
}

.secondary-button {
  color: var(--rose-600);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.primary-button:hover,
.secondary-button:hover,
.section-link:hover,
.text-link:hover,
.filter-more:hover {
  transform: translateY(-2px);
}

.hero-art {
  position: relative;
  display: block;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(225, 29, 72, 0.22);
  transform: rotate(1.2deg);
}

.hero-art::before {
  content: "";
  display: block;
  padding-top: 134%;
}

.hero-art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-art span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(17, 24, 39, 0.72);
  backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 800;
}

.hero-art:hover img {
  transform: scale(1.06);
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(225, 29, 72, 0.25);
  transition:
    width 0.2s ease,
    background 0.2s ease;
}

.hero-dot.active {
  width: 32px;
  background: var(--rose-600);
}

.home-features {
  padding: 54px 0;
  background: #ffffff;
}

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

.feature-card,
.category-card-large,
.detail-side-card,
.detail-article,
.video-shell,
.ranking-panel {
  background: #ffffff;
  border: 1px solid var(--rose-100);
  border-radius: 28px;
  box-shadow: var(--shadow-card);
}

.feature-card {
  padding: 30px;
  text-align: center;
  background: linear-gradient(135deg, #fff1f2, #fdf2f8);
}

.feature-card h2 {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 850;
}

.feature-card p {
  margin: 0;
  color: var(--gray-600);
  line-height: 1.8;
}

.content-section {
  padding: 68px 0;
}

.soft-section {
  background: linear-gradient(180deg, #ffffff, var(--rose-50));
}

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

.section-heading h2 {
  margin: 0 0 8px;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.15;
  font-weight: 900;
}

.section-heading p {
  margin: 0;
  color: var(--gray-600);
  line-height: 1.8;
}

.section-link,
.text-link,
.filter-more {
  color: var(--rose-600);
}

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

.category-tile {
  min-height: 155px;
  padding: 24px;
  border-radius: 26px;
  color: var(--gray-900);
  background: linear-gradient(135deg, #ffffff, #fff1f2);
  border: 1px solid var(--rose-100);
  box-shadow: var(--shadow-card);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.category-tile span {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 850;
}

.category-tile em {
  display: block;
  color: var(--gray-600);
  font-style: normal;
  line-height: 1.7;
}

.category-tile:hover,
.movie-card:hover,
.horizontal-card:hover,
.category-card-large:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid var(--rose-100);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.movie-poster {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--gray-100);
}

.movie-poster::before {
  content: "";
  display: block;
  padding-top: 132%;
}

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

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

.movie-duration,
.rank-badge {
  position: absolute;
  z-index: 2;
  padding: 5px 9px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(17, 24, 39, 0.76);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 800;
}

.movie-duration {
  right: 10px;
  bottom: 10px;
}

.rank-badge {
  left: 10px;
  top: 10px;
  background: linear-gradient(135deg, var(--rose-600), var(--pink-600));
}

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

.movie-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--rose-600);
  font-size: 12px;
  font-weight: 800;
}

.movie-card h2 {
  margin: 10px 0 8px;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 850;
}

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

.movie-card-compact .movie-card-body {
  padding: 15px;
}

.movie-card-compact h2 {
  font-size: 17px;
}

.page-hero {
  padding: 78px 0;
  background: linear-gradient(135deg, var(--rose-600), var(--pink-600));
  color: #ffffff;
}

.small-hero p,
.ranking-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.85;
}

.page-hero .hero-kicker {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.page-hero h1 {
  max-width: 900px;
  margin: 18px 0 16px;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) 1fr;
  gap: 18px;
  margin-bottom: 30px;
  padding: 18px;
  border: 1px solid var(--rose-100);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.search-box {
  height: 52px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  border-radius: 18px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
}

.search-box svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--rose-600);
  stroke-width: 2;
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--gray-900);
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.filter-chip {
  min-height: 40px;
  padding: 0 15px;
  border-radius: 999px;
  border: 1px solid var(--rose-100);
  color: var(--gray-700);
  background: #ffffff;
  font-weight: 750;
  cursor: pointer;
}

.filter-chip.active,
.filter-chip:hover {
  color: #ffffff;
  background: linear-gradient(135deg, var(--rose-600), var(--pink-600));
}

.filter-more {
  min-height: 40px;
  padding: 0 12px;
}

.no-results {
  margin: 32px 0 0;
  padding: 26px;
  border-radius: 22px;
  background: var(--rose-50);
  color: var(--rose-600);
  text-align: center;
  font-weight: 800;
}

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

.category-card-large {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 22px;
  padding: 20px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.category-cover-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.category-cover-stack img {
  aspect-ratio: 3 / 4;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  background: var(--gray-100);
}

.category-card-large h2 {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 900;
}

.category-card-large p {
  margin: 0 0 18px;
  color: var(--gray-600);
  line-height: 1.8;
}

.ranking-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  gap: 40px;
  align-items: center;
}

.ranking-panel {
  padding: 18px;
  background: rgba(255, 255, 255, 0.95);
}

.ranking-row {
  display: grid;
  grid-template-columns: 32px 54px 1fr auto 44px;
  gap: 12px;
  align-items: center;
  padding: 9px;
  border-radius: 16px;
  color: var(--gray-900);
}

.ranking-row:hover {
  background: var(--rose-50);
}

.ranking-row span {
  color: var(--rose-600);
  font-size: 18px;
  font-weight: 900;
}

.ranking-row img {
  width: 54px;
  height: 70px;
  border-radius: 12px;
  object-fit: cover;
}

.ranking-row strong {
  font-weight: 850;
}

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

.ranking-row b {
  color: var(--rose-600);
}

.detail-hero {
  padding: 62px 0;
  background: linear-gradient(135deg, #fff1f2, #fdf2f8 55%, #fff7ed);
}

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

.detail-poster {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

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

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--gray-600);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--rose-600);
  font-weight: 750;
}

.detail-copy h1 {
  margin: 0 0 16px;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.detail-one-line {
  margin: 0 0 22px;
  color: var(--gray-600);
  font-size: 19px;
  line-height: 1.9;
}

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

.detail-facts span {
  padding: 8px 12px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--gray-700);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

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

.watch-section {
  padding: 54px 0;
  background: #111827;
}

.video-shell {
  position: relative;
  overflow: hidden;
  background: #000000;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
}

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

.player-cover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  background: #000000;
}

.player-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
}

.player-cover.hidden {
  display: none;
}

.player-play-button {
  position: relative;
  z-index: 2;
  min-width: 96px;
  height: 96px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--rose-600), var(--pink-600));
  box-shadow: 0 18px 42px rgba(225, 29, 72, 0.34);
  font-size: 18px;
  font-weight: 900;
}

.detail-content-section {
  background: #ffffff;
}

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

.detail-article,
.detail-side-card {
  padding: 30px;
}

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

.detail-article p {
  margin: 0 0 26px;
  color: var(--gray-600);
  font-size: 17px;
  line-height: 2;
}

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

.detail-side-card dt {
  color: var(--gray-500);
  font-weight: 750;
}

.detail-side-card dd {
  margin: 0;
  color: var(--gray-900);
  font-weight: 750;
}

.detail-side-card a {
  color: var(--rose-600);
}

.site-footer {
  border-top: 1px solid var(--rose-100);
  background: linear-gradient(180deg, var(--rose-50), #ffffff);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 34px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 220px minmax(0, 1fr);
  gap: 36px;
}

.footer-brand p {
  max-width: 440px;
  margin: 16px 0 0;
  color: var(--gray-600);
  line-height: 1.8;
}

.footer-logo span:last-child {
  font-size: 20px;
}

.footer-group {
  display: grid;
  gap: 9px;
  align-content: start;
}

.footer-group h2 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 900;
}

.footer-group a {
  color: var(--gray-600);
  font-size: 14px;
}

.footer-group a:hover {
  color: var(--rose-600);
}

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

.footer-categories h2 {
  grid-column: 1 / -1;
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0 30px;
  border-top: 1px solid var(--rose-100);
  color: var(--gray-500);
  text-align: center;
  font-size: 14px;
}

.horizontal-list {
  display: grid;
  gap: 18px;
}

.horizontal-card {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 22px;
  padding: 16px;
  border: 1px solid var(--rose-100);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.horizontal-image {
  overflow: hidden;
  border-radius: 20px;
}

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

.horizontal-content h2 {
  margin: 10px 0 8px;
  font-size: 23px;
  font-weight: 900;
}

.horizontal-content p {
  margin: 0 0 15px;
  color: var(--gray-600);
  line-height: 1.8;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .hero-slide,
  .ranking-hero-grid,
  .detail-content-grid {
    grid-template-columns: 1fr;
  }

  .hero-art {
    max-width: 420px;
    margin: 0 auto;
  }

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

  .category-overview-grid {
    grid-template-columns: 1fr;
  }
}

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

  .mobile-menu-button {
    display: inline-flex;
  }

  .hero-inner {
    min-height: auto;
    padding: 52px 0 68px;
  }

  .hero-slide {
    gap: 34px;
  }

  .hero-dots {
    left: 50%;
    transform: translateX(-50%);
  }

  .feature-grid,
  .filter-panel,
  .detail-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .detail-poster {
    max-width: 320px;
  }

  .section-heading {
    display: block;
  }

  .section-link {
    margin-top: 12px;
  }
}

@media (max-width: 640px) {
  .logo-full {
    display: none;
  }

  .logo-short {
    display: inline;
  }

  .site-nav {
    height: 62px;
  }

  .hero-copy h1 {
    font-size: 34px;
  }

  .hero-copy h2 {
    font-size: 26px;
  }

  .hero-copy p,
  .detail-one-line,
  .small-hero p,
  .ranking-hero p {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

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

  .content-section {
    padding: 48px 0;
  }

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

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

  .movie-card h2 {
    font-size: 16px;
  }

  .movie-card p {
    font-size: 13px;
  }

  .category-card-large {
    grid-template-columns: 1fr;
  }

  .category-cover-stack {
    grid-template-columns: repeat(4, 1fr);
  }

  .ranking-row {
    grid-template-columns: 28px 48px 1fr 36px;
  }

  .ranking-row em {
    display: none;
  }

  .detail-hero,
  .page-hero {
    padding: 48px 0;
  }

  .player-play-button {
    min-width: 76px;
    height: 76px;
    font-size: 15px;
  }

  .detail-article,
  .detail-side-card {
    padding: 22px;
  }

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