:root {
  --pink-50: #fff1f7;
  --pink-100: #ffe4f0;
  --pink-200: #fecddf;
  --pink-300: #f9a8c7;
  --pink-500: #ec4899;
  --rose-500: #f43f5e;
  --rose-600: #e11d48;
  --text: #111827;
  --muted: #6b7280;
  --line: #f3d6e4;
  --card: #ffffff;
  --shadow: 0 18px 48px rgba(190, 24, 93, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: linear-gradient(180deg, var(--pink-50), #ffffff 30%, var(--pink-50));
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans SC", sans-serif;
}

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: 50;
  background: linear-gradient(90deg, rgba(236, 72, 153, 0.96), rgba(244, 63, 94, 0.96));
  box-shadow: 0 10px 30px rgba(190, 24, 93, 0.24);
  backdrop-filter: blur(16px);
}

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

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand {
  color: #fff;
  font-size: 22px;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  color: var(--pink-500);
  background: rgba(255, 255, 255, 0.95);
  transition: transform 0.25s ease;
}

.brand:hover .brand-mark {
  transform: scale(1.08) rotate(8deg);
}

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

.nav-link {
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  transition: background 0.25s ease, color 0.25s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
}

.site-search {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 280px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.site-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: none;
  color: #fff;
  background: transparent;
  padding: 8px 10px;
}

.site-search input::placeholder {
  color: rgba(255, 255, 255, 0.76);
}

.site-search button,
.primary-btn,
.ghost-btn {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.site-search button {
  flex: 0 0 auto;
  color: var(--rose-600);
  background: #fff;
  padding: 8px 14px;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 12px 24px;
  background: linear-gradient(90deg, var(--pink-500), var(--rose-500));
  box-shadow: 0 14px 32px rgba(236, 72, 153, 0.32);
}

.primary-btn:hover,
.ghost-btn:hover,
.site-search button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(190, 24, 93, 0.24);
}

.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.12);
}

.nav-toggle {
  display: none;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  padding: 9px 14px;
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 14px;
  gap: 8px;
}

.mobile-nav a {
  flex: 1;
  text-align: center;
  border-radius: 14px;
  padding: 10px 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.hero-carousel {
  position: relative;
  height: 560px;
  overflow: hidden;
  background: #111827;
}

.hero-track,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

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

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17, 24, 39, 0.88), rgba(17, 24, 39, 0.36) 45%, rgba(244, 63, 94, 0.24));
}

.hero-content {
  position: absolute;
  left: max(32px, calc((100% - 1180px) / 2));
  right: max(32px, calc((100% - 1180px) / 2));
  bottom: 70px;
  max-width: 720px;
  color: #fff;
}

.hero-label,
.section-kicker,
.category-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--rose-600);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.hero-content h1 {
  margin: 18px 0 16px;
  font-size: clamp(34px, 6vw, 62px);
  line-height: 1.06;
}

.hero-content p {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.8;
}

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

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: rgba(17, 24, 39, 0.48);
  font-size: 32px;
  line-height: 1;
}

.hero-arrow:hover {
  background: rgba(17, 24, 39, 0.72);
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

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

.hero-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  transition: width 0.25s ease, background 0.25s ease;
}

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

.page-section {
  width: min(1180px, calc(100% - 32px));
  margin: 64px auto;
}

.narrow-section {
  width: min(960px, calc(100% - 32px));
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading h2 {
  margin: 12px 0 8px;
  font-size: clamp(26px, 3.5vw, 38px);
}

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

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

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

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

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

.movie-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(249, 168, 212, 0.34);
  border-radius: 24px;
  background: var(--card);
  box-shadow: 0 14px 32px rgba(190, 24, 93, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4.2;
  overflow: hidden;
  background: linear-gradient(135deg, var(--pink-100), #fff);
}

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

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

.poster-year,
.poster-play {
  position: absolute;
  z-index: 1;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.poster-year {
  left: 12px;
  top: 12px;
  padding: 5px 9px;
  background: rgba(17, 24, 39, 0.62);
}

.poster-play {
  right: 12px;
  bottom: 12px;
  padding: 7px 11px;
  background: linear-gradient(90deg, var(--pink-500), var(--rose-500));
  box-shadow: 0 10px 22px rgba(190, 24, 93, 0.28);
}

.movie-info {
  padding: 16px;
}

.movie-title {
  display: -webkit-box;
  min-height: 48px;
  overflow: hidden;
  color: #1f2937;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.4;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-title:hover {
  color: var(--rose-600);
}

.movie-meta,
.movie-desc {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.movie-desc {
  display: -webkit-box;
  min-height: 62px;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

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

.tag-row {
  margin-top: 12px;
}

.tag-row span,
.genre-row span,
.detail-tags a {
  border-radius: 999px;
  color: var(--rose-600);
  background: var(--pink-50);
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 700;
}

.highlight-panel {
  width: min(1180px, calc(100% - 32px));
  padding: 34px;
  border-radius: 34px;
  background: linear-gradient(90deg, var(--pink-100), #ffe3ea);
  box-shadow: 0 18px 44px rgba(190, 24, 93, 0.12);
}

.large-card .poster-link {
  aspect-ratio: 16 / 10;
}

.scroll-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 360px);
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 14px;
  scroll-snap-type: x mandatory;
}

.scroll-row .movie-card {
  scroll-snap-align: start;
}

.wide-card .poster-link {
  aspect-ratio: 16 / 9;
}

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

.category-card,
.category-overview-card,
.content-card,
.rank-panel,
.ranking-card {
  border: 1px solid rgba(249, 168, 212, 0.34);
  background: #fff;
  box-shadow: 0 16px 38px rgba(190, 24, 93, 0.08);
}

.category-card {
  position: relative;
  overflow: hidden;
  min-height: 180px;
  border-radius: 26px;
  padding: 18px;
  color: #fff;
}

.category-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.58);
  transition: transform 0.35s ease;
}

.category-card:hover img {
  transform: scale(1.08);
}

.category-card span,
.category-card p {
  position: relative;
  z-index: 1;
}

.category-card span {
  display: block;
  margin-top: 72px;
  font-size: 22px;
  font-weight: 900;
}

.category-card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
}

.rank-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(320px, 0.86fr);
  gap: 28px;
  align-items: start;
}

.rank-panel {
  position: sticky;
  top: 96px;
  border-radius: 28px;
  padding: 22px;
}

.rank-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.rank-head h2 {
  margin: 0;
  font-size: 24px;
}

.rank-head a {
  color: var(--rose-600);
  font-weight: 800;
}

.rank-item {
  display: grid;
  grid-template-columns: 42px 58px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.rank-item:first-of-type {
  border-top: 0;
}

.rank-no {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  color: var(--rose-600);
  background: var(--pink-50);
  font-weight: 900;
}

.rank-item.top .rank-no {
  color: #fff;
  background: linear-gradient(135deg, var(--pink-500), var(--rose-500));
}

.rank-item img {
  width: 58px;
  height: 76px;
  border-radius: 12px;
  object-fit: cover;
  background: var(--pink-50);
}

.rank-text {
  min-width: 0;
}

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

.rank-text strong {
  font-size: 15px;
}

.rank-text em {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.inner-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 34px auto 0;
  border-radius: 34px;
  padding: 56px;
  color: #fff;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.32), transparent 26%), linear-gradient(120deg, var(--pink-500), var(--rose-500));
  box-shadow: var(--shadow);
}

.inner-hero .hero-label {
  color: var(--rose-600);
}

.inner-hero h1 {
  margin: 18px 0 12px;
  font-size: clamp(32px, 5vw, 52px);
}

.inner-hero p {
  max-width: 820px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.8;
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 20px;
  border-radius: 28px;
  overflow: hidden;
  padding: 16px;
}

.category-cover {
  display: block;
  overflow: hidden;
  border-radius: 22px;
  aspect-ratio: 4 / 5;
  background: var(--pink-50);
}

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

.category-kicker {
  color: var(--rose-600);
  background: var(--pink-50);
  border-color: var(--pink-200);
}

.category-overview-card h2 {
  margin: 14px 0 12px;
  font-size: 26px;
}

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

.category-links a {
  overflow: hidden;
  color: var(--muted);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.category-links a:hover {
  color: var(--rose-600);
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 16px;
  align-items: end;
  margin-bottom: 24px;
  padding: 18px;
  border: 1px solid rgba(249, 168, 212, 0.42);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 32px rgba(190, 24, 93, 0.08);
}

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

.filter-bar input,
.filter-bar select {
  width: 100%;
  border: 1px solid var(--pink-200);
  border-radius: 16px;
  outline: none;
  background: #fff;
  padding: 13px 14px;
  color: var(--text);
}

.filter-bar input:focus,
.filter-bar select:focus {
  border-color: var(--pink-500);
  box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.12);
}

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

.ranking-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 20px;
  border-radius: 26px;
  padding: 16px;
}

.ranking-poster {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 3 / 4;
  background: var(--pink-50);
}

.ranking-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ranking-poster span {
  position: absolute;
  left: 10px;
  top: 10px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--pink-500), var(--rose-500));
  font-weight: 900;
}

.ranking-body h2 {
  margin: 4px 0 10px;
  font-size: 24px;
}

.ranking-body p {
  margin: 8px 0;
  color: var(--muted);
  line-height: 1.8;
}

.ranking-body strong {
  display: inline-flex;
  margin-top: 8px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(90deg, var(--pink-500), var(--rose-500));
  padding: 8px 14px;
}

.detail-main {
  background: linear-gradient(180deg, #fff, var(--pink-50));
}

.detail-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 34px;
  align-items: end;
  border-radius: 36px;
  padding: 34px;
  color: #fff;
  background: radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.35), transparent 28%), linear-gradient(120deg, #be185d, var(--rose-500));
  box-shadow: var(--shadow);
}

.detail-poster {
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  box-shadow: 0 22px 42px rgba(17, 24, 39, 0.24);
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 3 / 4.2;
  object-fit: cover;
  background: var(--pink-50);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

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

.detail-intro h1 {
  margin: 18px 0 14px;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.08;
}

.detail-one-line {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.9;
}

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

.detail-meta span {
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.16);
}

.genre-row {
  margin-bottom: 24px;
}

.genre-row span {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

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

.video-shell {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background: #0f172a;
  box-shadow: var(--shadow);
}

.movie-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0f172a;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 12px;
  border: 0;
  color: #fff;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.62), rgba(15, 23, 42, 0.18));
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-icon {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 999px;
  color: var(--rose-600);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.28);
  font-size: 30px;
}

.play-overlay strong {
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.player-message {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 16px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  pointer-events: none;
}

.content-card {
  margin-bottom: 18px;
  border-radius: 28px;
  padding: 26px;
}

.content-card h2 {
  margin: 0 0 14px;
  font-size: 24px;
}

.content-card p {
  margin: 0;
  color: #374151;
  line-height: 2;
}

.detail-tags a:hover {
  color: #fff;
  background: var(--rose-500);
}

.site-footer {
  margin-top: 72px;
  background: linear-gradient(180deg, var(--pink-50), var(--pink-100));
  border-top: 1px solid rgba(249, 168, 212, 0.32);
}

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

.footer-brand {
  margin-bottom: 12px;
  color: var(--rose-600);
  font-size: 22px;
}

.site-footer h3 {
  margin: 0 0 14px;
  font-size: 18px;
}

.site-footer p,
.site-footer a {
  display: block;
  margin: 0 0 9px;
  color: var(--muted);
  line-height: 1.75;
}

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

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  border-top: 1px solid rgba(249, 168, 212, 0.42);
  padding: 18px 0 26px;
  color: var(--muted);
  text-align: center;
}

.is-filtered-out {
  display: none !important;
}

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

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

  .site-search {
    min-width: 220px;
  }
}

@media (max-width: 880px) {
  .nav-shell {
    gap: 14px;
  }

  .desktop-nav,
  .site-search {
    display: none;
  }

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

  .mobile-nav.is-open {
    display: flex;
  }

  .hero-carousel {
    height: 520px;
  }

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

  .hero-arrow {
    display: none;
  }

  .five-cols,
  .six-cols,
  .three-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rank-layout,
  .detail-hero,
  .footer-grid,
  .category-overview-grid {
    grid-template-columns: 1fr;
  }

  .rank-panel {
    position: static;
  }

  .detail-hero {
    padding: 24px;
  }

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

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

@media (max-width: 560px) {
  .brand {
    font-size: 18px;
  }

  .hero-carousel {
    height: 500px;
  }

  .hero-content p,
  .inner-hero p,
  .detail-one-line {
    font-size: 15px;
  }

  .page-section,
  .inner-hero,
  .detail-hero,
  .player-section {
    width: min(100% - 22px, 1180px);
  }

  .inner-hero,
  .highlight-panel {
    padding: 26px;
    border-radius: 26px;
  }

  .five-cols,
  .six-cols,
  .three-cols,
  .category-grid {
    grid-template-columns: 1fr;
  }

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

  .category-overview-card .category-cover,
  .ranking-poster {
    max-width: 220px;
  }

  .footer-grid {
    gap: 18px;
  }
}
