@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Noto+Sans+SC:wght@400;500;700;900&display=swap");

:root {
  --primary-50: #f0f4f8;
  --primary-100: #d9e2ec;
  --primary-200: #bcccdc;
  --primary-500: #627d98;
  --primary-600: #486581;
  --primary-700: #334e68;
  --primary-800: #243b53;
  --primary-900: #102a43;
  --accent-300: #ffd54f;
  --accent-400: #ffca28;
  --accent-500: #ffc107;
  --accent-600: #ffb300;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --white: #ffffff;
  --shadow-soft: 0 2px 15px -3px rgba(0, 0, 0, 0.07), 0 10px 20px -2px rgba(0, 0, 0, 0.04);
  --shadow-medium: 0 4px 20px -2px rgba(0, 0, 0, 0.1), 0 10px 30px -5px rgba(0, 0, 0, 0.08);
  --shadow-hard: 0 10px 40px -5px rgba(0, 0, 0, 0.2), 0 20px 50px -10px rgba(0, 0, 0, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--slate-900);
  background: linear-gradient(180deg, var(--slate-50) 0%, #ffffff 48%, var(--primary-50) 100%);
  font-family: Inter, "Noto Sans SC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--slate-200);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1280px;
  height: 68px;
  margin: 0 auto;
  padding: 0 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-600), var(--primary-900));
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.brand-title {
  display: block;
  color: var(--slate-900);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.brand-subtitle {
  display: block;
  color: var(--slate-500);
  font-size: 12px;
  line-height: 1.2;
}

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

.nav-link {
  padding: 9px 14px;
  color: var(--slate-600);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-800);
  background: var(--primary-100);
}

.nav-search,
.mobile-search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-search input,
.mobile-search input,
.filter-input {
  width: 260px;
  padding: 11px 14px;
  color: var(--slate-800);
  background: var(--white);
  border: 1px solid var(--slate-300);
  border-radius: 12px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-search input:focus,
.mobile-search input:focus,
.filter-input:focus {
  border-color: var(--primary-500);
  box-shadow: 0 0 0 3px rgba(98, 125, 152, 0.22);
}

.nav-search button,
.mobile-search button,
.primary-button,
.secondary-button,
.filter-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 18px;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.nav-search button,
.primary-button,
.filter-button {
  color: var(--slate-900);
  background: var(--accent-500);
  box-shadow: var(--shadow-soft);
}

.nav-search button:hover,
.primary-button:hover,
.filter-button:hover {
  background: var(--accent-600);
  transform: translateY(-1px);
  box-shadow: var(--shadow-medium);
}

.secondary-button {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
}

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

.menu-button {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 42px;
  height: 42px;
  background: var(--slate-100);
  border: 0;
  border-radius: 12px;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--slate-700);
  border-radius: 999px;
}

.mobile-panel {
  display: none;
  padding: 14px 24px 20px;
  border-top: 1px solid var(--slate-200);
  background: var(--white);
}

.mobile-panel.open {
  display: block;
}

.mobile-link {
  display: block;
  padding: 12px 10px;
  color: var(--slate-700);
  border-radius: 10px;
  font-weight: 700;
}

.mobile-link:hover {
  background: var(--slate-100);
}

.page-main {
  min-height: 60vh;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: radial-gradient(circle at 15% 20%, rgba(255, 193, 7, 0.22), transparent 28%), linear-gradient(135deg, var(--slate-900), var(--primary-900) 48%, var(--primary-800));
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.4;
}

.hero-slider {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 88px 24px 78px;
}

.hero-slide {
  display: none;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: 48px;
  min-height: 540px;
}

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

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 12px;
  color: var(--accent-300);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  backdrop-filter: blur(6px);
}

.hero h1 {
  margin: 0 0 20px;
  font-size: clamp(38px, 6vw, 74px);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.hero p {
  max-width: 680px;
  margin: 0 0 28px;
  color: var(--primary-100);
  font-size: clamp(17px, 2vw, 22px);
}

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

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-meta span,
.detail-meta span,
.tag-row span,
.meta-row span,
.breadcrumb a,
.breadcrumb span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.hero-meta span {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.hero-art {
  position: relative;
  z-index: 2;
}

.hero-poster {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  min-height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  box-shadow: var(--shadow-hard);
  transform: rotate(1deg);
}

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

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

.hero-poster::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.82), rgba(15, 23, 42, 0.05) 52%, rgba(255, 255, 255, 0.08));
}

.hero-card-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  backdrop-filter: blur(10px);
}

.hero-card-caption strong {
  display: block;
  font-size: 17px;
}

.hero-card-caption small {
  color: var(--primary-100);
}

.hero-dots {
  position: relative;
  z-index: 3;
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.hero-dot {
  width: 34px;
  height: 7px;
  padding: 0;
  background: rgba(255, 255, 255, 0.28);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.hero-dot.active {
  background: var(--accent-500);
}

.section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 68px 24px;
}

.section.compact-section {
  padding-top: 40px;
}

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

.section-kicker {
  margin: 0 0 8px;
  color: var(--primary-600);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section h2,
.listing-hero h1,
.detail-title h1 {
  margin: 0;
  color: var(--slate-900);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.section-header p,
.listing-hero p,
.detail-title p {
  max-width: 760px;
  margin: 10px 0 0;
  color: var(--slate-600);
}

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

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

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

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

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

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

.poster-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.62), transparent 56%);
}

.play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--slate-900);
  background: var(--accent-500);
  border-radius: 999px;
  box-shadow: var(--shadow-medium);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.88);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.poster-meta {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  padding: 5px 10px;
  color: var(--white);
  background: rgba(15, 23, 42, 0.72);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

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

.movie-card h3 {
  margin: 8px 0 8px;
  color: var(--slate-900);
  font-size: 18px;
  line-height: 1.28;
}

.movie-card h3 a:hover,
.ranking-item h3 a:hover,
.text-link:hover {
  color: var(--primary-700);
}

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

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

.tag-row span {
  color: var(--primary-800);
  background: var(--primary-100);
}

.meta-row span {
  color: var(--slate-600);
  background: var(--slate-100);
}

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

.category-card {
  position: relative;
  overflow: hidden;
  min-height: 180px;
  padding: 24px;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-800), var(--primary-600));
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card::after {
  position: absolute;
  right: -38px;
  bottom: -38px;
  width: 130px;
  height: 130px;
  content: "";
  background: rgba(255, 193, 7, 0.2);
  border-radius: 999px;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.category-card strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
}

.category-card p {
  position: relative;
  z-index: 1;
  margin: 0 0 20px;
  color: var(--primary-100);
}

.category-card span {
  position: relative;
  z-index: 1;
  color: var(--accent-300);
  font-weight: 900;
}

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

.ranking-item {
  display: grid;
  grid-template-columns: 54px 126px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.rank-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--slate-900);
  background: var(--accent-500);
  border-radius: 14px;
  font-size: 17px;
  font-weight: 900;
}

.rank-cover {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--slate-200);
  border-radius: 14px;
}

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

.rank-content h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.25;
}

.rank-content p {
  display: -webkit-box;
  margin: 0 0 10px;
  overflow: hidden;
  color: var(--slate-600);
  font-size: 14px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.cta-band {
  margin: 30px auto 0;
  padding: 54px 24px;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-900), var(--primary-700));
  border-radius: 28px;
  text-align: center;
  box-shadow: var(--shadow-hard);
}

.cta-band h2 {
  color: var(--white);
}

.cta-band p {
  max-width: 760px;
  margin: 14px auto 28px;
  color: var(--primary-100);
  font-size: 18px;
}

.listing-hero,
.detail-hero {
  color: var(--white);
  background: radial-gradient(circle at 20% 0%, rgba(255, 193, 7, 0.18), transparent 30%), linear-gradient(135deg, var(--slate-900), var(--primary-900));
}

.listing-hero-inner,
.detail-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 62px 24px;
}

.listing-hero h1,
.detail-title h1 {
  color: var(--white);
}

.listing-hero p,
.detail-title p {
  color: var(--primary-100);
  font-size: 18px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.breadcrumb a,
.breadcrumb span {
  color: var(--primary-100);
  background: rgba(255, 255, 255, 0.1);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 28px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.filter-bar .filter-input {
  flex: 1 1 260px;
  width: auto;
}

.detail-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: center;
}

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

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

.detail-meta span {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.player-section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 54px 24px 28px;
}

.player-shell {
  overflow: hidden;
  background: var(--slate-900);
  border-radius: 24px;
  box-shadow: var(--shadow-hard);
}

.player-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.player-frame video {
  width: 100%;
  height: 100%;
  background: #000000;
  object-fit: contain;
}

.player-cover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.78), rgba(15, 23, 42, 0.18));
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.player-start {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  color: var(--slate-900);
  background: var(--accent-500);
  border: 0;
  border-radius: 999px;
  box-shadow: var(--shadow-hard);
  cursor: pointer;
  font-weight: 900;
}

.player-start::before {
  content: "▶";
}

.detail-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 24px 74px;
}

.content-card,
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.content-card {
  padding: 30px;
}

.content-card h2,
.sidebar-card h2 {
  margin: 0 0 16px;
  color: var(--slate-900);
  font-size: 26px;
  line-height: 1.2;
}

.content-card p {
  margin: 0 0 18px;
  color: var(--slate-700);
  font-size: 17px;
}

.sidebar-card {
  padding: 20px;
}

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

.related-item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.related-item img {
  width: 96px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 12px;
}

.related-item strong {
  display: block;
  margin-bottom: 6px;
  line-height: 1.25;
}

.related-item span {
  color: var(--slate-500);
  font-size: 13px;
}

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

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

.movie-card.compact p {
  min-height: 42px;
}

.no-results {
  display: none;
  padding: 34px;
  color: var(--slate-600);
  background: var(--white);
  border: 1px dashed var(--slate-300);
  border-radius: 18px;
  text-align: center;
}

.no-results.show {
  display: block;
}

.site-footer {
  color: var(--slate-300);
  background: var(--slate-900);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(180px, 1fr) minmax(180px, 1fr);
  gap: 44px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 24px 34px;
}

.footer-brand .brand-title,
.footer-brand strong {
  display: block;
  color: var(--white);
  font-size: 19px;
}

.footer-brand small {
  display: block;
  color: var(--slate-400);
}

.footer-main p {
  max-width: 520px;
  color: var(--slate-400);
}

.site-footer h3 {
  margin: 0 0 16px;
  color: var(--white);
}

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

.site-footer li {
  margin-bottom: 9px;
}

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

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 22px 24px 34px;
  color: var(--slate-500);
  border-top: 1px solid var(--slate-800);
  font-size: 14px;
}

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

  .menu-button {
    display: flex;
  }

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

  .detail-content {
    padding-top: 12px;
  }

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

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

@media (max-width: 780px) {
  .navbar {
    height: 64px;
    padding: 0 16px;
  }

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

  .hero-slider {
    padding: 54px 18px 46px;
  }

  .hero-slide {
    gap: 28px;
    min-height: auto;
  }

  .hero-poster {
    min-height: 250px;
    border-radius: 22px;
  }

  .hero-card-caption {
    align-items: flex-start;
    flex-direction: column;
  }

  .section,
  .listing-hero-inner,
  .detail-hero-inner,
  .player-section,
  .detail-content {
    padding-right: 18px;
    padding-left: 18px;
  }

  .section-header {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .ranking-item {
    grid-template-columns: 44px 96px minmax(0, 1fr);
    gap: 12px;
  }

  .rank-number {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    font-size: 14px;
  }

  .content-card {
    padding: 22px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 520px) {
  .brand-subtitle {
    display: none;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-actions {
    flex-direction: column;
  }

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

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

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

  .rank-cover,
  .related-item img {
    width: 100%;
  }
}
