:root {
  --site-bg: #f8f9fa;
  --site-surface: #ffffff;
  --site-text: #212529;
  --site-muted: #68717a;
  --site-line: #e6e8eb;
  --site-steel: #486581;
  --site-steel-dark: #243b53;
  --site-moss: #58724f;
  --site-accent: #f4b860;
  --shadow-soft: 0 18px 50px rgba(15, 23, 42, 0.12);
  --shadow-card: 0 10px 30px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(72, 101, 129, 0.08), transparent 32rem),
    var(--site-bg);
  color: var(--site-text);
}

body,
input,
button,
textarea,
select {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

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

img {
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(230, 232, 235, 0.9);
  backdrop-filter: blur(18px);
}

.nav-shell {
  height: 4.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--site-steel-dark);
  white-space: nowrap;
}

.site-logo-mark {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.7rem;
  background: linear-gradient(135deg, var(--site-steel), var(--site-moss));
  color: white;
  font-size: 0.9rem;
  box-shadow: 0 10px 26px rgba(72, 101, 129, 0.28);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-left: auto;
  font-weight: 600;
  color: #47515a;
}

.desktop-nav > a,
.nav-dropdown > button {
  padding: 0.55rem 0;
  transition: color 0.2s ease;
}

.desktop-nav > a:hover,
.nav-dropdown > button:hover {
  color: var(--site-steel);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > button {
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.nav-dropdown-panel {
  position: absolute;
  top: 100%;
  right: 0;
  width: 13rem;
  padding: 0.65rem;
  border-radius: 1rem;
  background: white;
  border: 1px solid var(--site-line);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.5rem);
  transition: all 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-panel a {
  display: block;
  padding: 0.65rem 0.75rem;
  border-radius: 0.7rem;
  color: #49535d;
}

.nav-dropdown-panel a:hover {
  background: #f3f6f8;
  color: var(--site-steel-dark);
}

.nav-search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: min(24rem, 32vw);
}

.nav-search input,
.mobile-panel input,
.page-search-form input,
.home-search-panel input {
  width: 100%;
  border: 1px solid var(--site-line);
  border-radius: 0.85rem;
  padding: 0.75rem 0.95rem;
  outline: none;
  background: white;
  color: var(--site-text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-search input:focus,
.mobile-panel input:focus,
.page-search-form input:focus,
.home-search-panel input:focus {
  border-color: rgba(72, 101, 129, 0.7);
  box-shadow: 0 0 0 4px rgba(72, 101, 129, 0.12);
}

.nav-search button,
.mobile-panel button,
.page-search-form button,
.home-search-panel button {
  border: 0;
  border-radius: 0.85rem;
  padding: 0.75rem 1rem;
  background: var(--site-steel);
  color: white;
  font-weight: 700;
  cursor: pointer;
}

.mobile-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  border-radius: 0.8rem;
  background: #f0f3f5;
  color: var(--site-steel-dark);
  width: 2.6rem;
  height: 2.6rem;
  font-size: 1.4rem;
  cursor: pointer;
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--site-line);
  background: white;
}

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

.mobile-panel-inner {
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: grid;
  gap: 0.45rem;
}

.mobile-panel a {
  display: block;
  padding: 0.7rem 0.85rem;
  border-radius: 0.75rem;
  color: #4b5560;
}

.mobile-panel a:hover {
  background: #f3f6f8;
}

.mobile-panel form {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.7rem;
}

.hero-slider {
  position: relative;
  min-height: 76vh;
  overflow: hidden;
  color: white;
  background: #111827;
}

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

.hero-slide {
  display: flex;
  align-items: end;
  opacity: 0;
  pointer-events: none;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  transition: opacity 0.75s ease, transform 1.2s ease;
  transform: scale(1.04);
}

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 13, 22, 0.88) 0%, rgba(8, 13, 22, 0.56) 48%, rgba(8, 13, 22, 0.22) 100%),
    linear-gradient(0deg, rgba(8, 13, 22, 0.92), transparent 48%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 9rem;
  padding-bottom: 7rem;
  max-width: 88rem;
}

.hero-content h1 {
  max-width: 48rem;
  margin: 0 0 1rem;
  font-size: clamp(2.5rem, 7vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  color: white;
}

.hero-content p {
  max-width: 48rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.8;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
  color: #f6ca7d;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero-tags,
.movie-tags,
.detail-meta,
.ranking-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-tags span,
.movie-tags span,
.detail-meta span,
.ranking-meta span,
.ranking-meta a {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.14);
  color: inherit;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

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

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

.hero-controls {
  position: relative;
  z-index: 4;
  min-height: 76vh;
  pointer-events: none;
}

.hero-dots,
.hero-arrows {
  position: absolute;
  pointer-events: auto;
}

.hero-dots {
  left: 2rem;
  bottom: 2.5rem;
  display: flex;
  gap: 0.55rem;
}

.hero-dots button {
  width: 2rem;
  height: 0.28rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
  cursor: pointer;
}

.hero-dots button.is-active {
  background: #f6ca7d;
}

.hero-arrows {
  right: 2rem;
  bottom: 2rem;
  display: flex;
  gap: 0.65rem;
}

.hero-arrows button {
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 2rem;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.home-search-panel {
  margin-top: -3rem;
  position: relative;
  z-index: 8;
}

.home-search-panel form {
  display: grid;
  gap: 0.8rem;
  padding: 1.1rem;
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(230, 232, 235, 0.8);
  backdrop-filter: blur(14px);
}

.home-search-panel label {
  font-weight: 700;
  color: var(--site-steel-dark);
}

.home-search-panel form > div,
.page-search-form {
  display: flex;
  gap: 0.7rem;
}

.section-block {
  padding-top: 4.5rem;
  padding-bottom: 1rem;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.6rem;
}

.section-heading h2 {
  margin: 0;
  color: var(--site-steel-dark);
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  letter-spacing: -0.04em;
}

.section-heading p {
  max-width: 46rem;
  margin: 0.45rem 0 0;
  color: var(--site-muted);
}

.section-heading > a,
.ranking-header a {
  color: var(--site-steel);
  font-weight: 700;
}

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

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

.movie-card {
  overflow: hidden;
  border-radius: 1.1rem;
  background: var(--site-surface);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(230, 232, 235, 0.8);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-0.35rem);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.14);
}

.movie-poster {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, var(--site-steel), var(--site-moss));
}

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

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

.movie-badge {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  padding: 0.3rem 0.58rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.58);
  color: white;
  font-size: 0.82rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.movie-card-body {
  padding: 1rem;
}

.movie-card-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.6rem;
  color: var(--site-muted);
  font-size: 0.82rem;
}

.movie-card-meta a {
  color: var(--site-steel);
  font-weight: 700;
}

.movie-card h2 {
  min-height: 3rem;
  margin: 0 0 0.55rem;
  font-size: 1.05rem;
  line-height: 1.4;
  color: var(--site-steel-dark);
}

.movie-card h2 a:hover {
  color: var(--site-steel);
}

.movie-card p {
  min-height: 3.7rem;
  margin: 0 0 0.8rem;
  color: #65707b;
  font-size: 0.92rem;
  line-height: 1.7;
}

.movie-tags span {
  background: #eef3f6;
  color: #52606d;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24rem;
  gap: 1.5rem;
  align-items: start;
}

.ranking-panel {
  position: sticky;
  top: 6rem;
  border-radius: 1.2rem;
  padding: 1.2rem;
  background: var(--site-steel-dark);
  color: white;
  box-shadow: var(--shadow-soft);
}

.ranking-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.ranking-header h2 {
  margin: 0;
  font-size: 1.35rem;
  color: white;
}

.ranking-header a {
  color: #f6ca7d;
}

.ranking-panel ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.ranking-panel li {
  display: grid;
  grid-template-columns: 2.1rem 1fr auto;
  align-items: center;
  gap: 0.7rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ranking-panel li span {
  color: #f6ca7d;
  font-weight: 800;
}

.ranking-panel li em {
  color: rgba(255, 255, 255, 0.58);
  font-style: normal;
  font-size: 0.85rem;
}

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

.category-tile,
.category-large-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.15rem;
  min-height: 10rem;
  padding: 1.2rem;
  color: white;
  background: linear-gradient(135deg, var(--site-steel), var(--site-moss));
  box-shadow: var(--shadow-card);
}

.category-tile::before,
.category-large-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.28), transparent 45%);
}

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

.category-tile span {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.category-tile small {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.category-large-card {
  min-height: 17rem;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.category-large-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.52;
}

.category-large-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 16, 24, 0.88), rgba(10, 16, 24, 0.18));
}

.category-large-card span,
.category-large-card h2,
.category-large-card p {
  z-index: 2;
}

.category-large-card span {
  color: #f6ca7d;
  font-weight: 800;
}

.category-large-card h2 {
  margin: 0.45rem 0;
  color: white;
}

.category-large-card p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}

.soft-hero {
  background: linear-gradient(135deg, #eef3f6, #ffffff);
}

.dark-hero,
.category-hero {
  background: linear-gradient(135deg, var(--site-steel-dark), var(--site-moss));
  color: white;
}

.page-hero h1 {
  max-width: 54rem;
  margin: 0.7rem 0 1rem;
  color: inherit;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.page-hero p {
  max-width: 50rem;
  margin: 0;
  color: inherit;
  opacity: 0.82;
  font-size: 1.1rem;
  line-height: 1.8;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.92rem;
  color: inherit;
  opacity: 0.76;
}

.breadcrumb a:hover {
  opacity: 1;
  text-decoration: underline;
}

.hero-inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.hero-inline-links a {
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  background: rgba(255, 255, 255, 0.16);
  color: white;
}

.page-search-form {
  max-width: 48rem;
  margin-top: 1.4rem;
}

.search-status {
  margin-top: 1rem;
  color: var(--site-muted);
  font-weight: 700;
}

.dark-hero .search-status,
.category-hero .search-status {
  color: rgba(255, 255, 255, 0.78);
}

.ranking-list {
  display: grid;
  gap: 0.9rem;
}

.ranking-card {
  display: grid;
  grid-template-columns: 5rem 6rem 1fr;
  gap: 1rem;
  align-items: center;
  border-radius: 1rem;
  padding: 0.85rem;
  background: white;
  border: 1px solid var(--site-line);
  box-shadow: var(--shadow-card);
}

.ranking-number {
  text-align: center;
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--site-steel);
}

.ranking-poster {
  aspect-ratio: 3 / 4;
  border-radius: 0.75rem;
  overflow: hidden;
  background: linear-gradient(135deg, var(--site-steel), var(--site-moss));
}

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

.ranking-card h2 {
  margin: 0 0 0.45rem;
  font-size: 1.25rem;
  color: var(--site-steel-dark);
}

.ranking-card p {
  margin: 0 0 0.7rem;
  color: var(--site-muted);
}

.ranking-meta span,
.ranking-meta a {
  background: #eef3f6;
  color: #52606d;
}

.detail-hero {
  min-height: 34rem;
  display: flex;
  align-items: end;
  color: white;
  background-image: var(--detail-image);
  background-size: cover;
  background-position: center;
}

.detail-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 13, 22, 0.9), rgba(8, 13, 22, 0.58)),
    linear-gradient(0deg, rgba(8, 13, 22, 0.95), rgba(8, 13, 22, 0.18));
}

.detail-hero-content {
  position: relative;
  z-index: 1;
}

.detail-layout {
  display: grid;
  grid-template-columns: 15rem minmax(0, 1fr);
  gap: 2rem;
  align-items: end;
  margin-top: 2rem;
}

.detail-poster {
  overflow: hidden;
  border-radius: 1.2rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
  background: linear-gradient(135deg, var(--site-steel), var(--site-moss));
}

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

.detail-info h1 {
  margin: 0 0 1rem;
  max-width: 62rem;
  color: white;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.detail-one-line {
  max-width: 58rem;
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.15rem;
}

.player-section {
  margin-top: -2rem;
  position: relative;
  z-index: 4;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 1.2rem;
  background: #000;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

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

.player-layer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.62));
  cursor: pointer;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.player-button {
  width: 5.2rem;
  height: 5.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--site-steel-dark);
  font-size: 2rem;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.32);
  cursor: pointer;
}

.detail-content {
  display: grid;
  gap: 1.2rem;
}

.content-card,
.detail-taxonomy,
.prev-next-links {
  border-radius: 1.2rem;
  background: white;
  border: 1px solid var(--site-line);
  box-shadow: var(--shadow-card);
  padding: 1.4rem;
}

.content-card h2,
.detail-taxonomy h2 {
  margin: 0 0 0.8rem;
  color: var(--site-steel-dark);
  font-size: 1.35rem;
}

.content-card p {
  margin: 0;
  color: #56616d;
  font-size: 1rem;
  line-height: 1.9;
}

.detail-taxonomy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.large-tags span {
  padding: 0.48rem 0.78rem;
}

.prev-next-links {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.prev-next-links a {
  color: var(--site-steel);
  font-weight: 700;
}

.site-footer {
  margin-top: 5rem;
  background: #182433;
  color: rgba(255, 255, 255, 0.74);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 2rem;
  padding-top: 3.5rem;
  padding-bottom: 2rem;
}

.footer-logo {
  color: white;
  margin-bottom: 1rem;
}

.site-footer p {
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.62);
}

.site-footer h2 {
  margin: 0 0 1rem;
  color: white;
  font-size: 1.1rem;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

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

.footer-bottom {
  padding: 1.2rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
}

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

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

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

  .ranking-panel {
    position: static;
  }
}

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

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

  .hero-slider,
  .hero-controls {
    min-height: 68vh;
  }

  .hero-content {
    padding-bottom: 6rem;
  }

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

  .detail-layout {
    grid-template-columns: 9rem 1fr;
    gap: 1rem;
  }

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

@media (max-width: 620px) {
  .nav-shell {
    height: 4rem;
  }

  .site-logo {
    font-size: 1.1rem;
  }

  .hero-slider,
  .hero-controls {
    min-height: 72vh;
  }

  .hero-content {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .hero-content h1 {
    font-size: 2.55rem;
  }

  .hero-dots {
    left: 1rem;
  }

  .hero-arrows {
    right: 1rem;
  }

  .home-search-panel form > div,
  .page-search-form,
  .mobile-panel form {
    flex-direction: column;
  }

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

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

  .ranking-card {
    grid-template-columns: 3rem 4.5rem 1fr;
  }

  .ranking-card p {
    display: none;
  }

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

  .detail-poster {
    width: 10rem;
  }

  .detail-info h1 {
    font-size: 2.4rem;
  }
}
