:root {
  --sky: #0ea5e9;
  --sky-deep: #0369a1;
  --pink: #ec4899;
  --amber: #f59e0b;
  --ink: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --soft: #f8fafc;
  --card: #ffffff;
  --shadow: 0 22px 70px rgba(15, 23, 42, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 48%, #fdf2f8 100%);
  min-height: 100vh;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

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

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: white;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--sky), var(--pink));
  box-shadow: 0 12px 28px rgba(14, 165, 233, 0.28);
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  color: #374151;
  font-weight: 700;
}

.nav-links a {
  padding: 8px 4px;
  transition: color 0.25s ease;
}

.nav-links a:hover {
  color: var(--sky);
}

.header-search {
  width: 300px;
  display: flex;
  align-items: center;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.header-search input,
.hero-search input,
.filter-bar input,
.filter-bar select {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
}

.header-search input {
  padding: 8px 12px;
}

.header-search button,
.hero-search button {
  border: 0;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--sky), var(--pink));
  padding: 8px 16px;
  font-weight: 800;
  cursor: pointer;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: #f1f5f9;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #0f172a;
  border-radius: 99px;
}

.hero-section {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: #020617;
}

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

.hero-slide {
  opacity: 0;
  transition: opacity 0.7s ease;
}

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

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(236, 72, 153, 0.32), transparent 34%),
    linear-gradient(90deg, rgba(2, 6, 23, 0.86), rgba(2, 6, 23, 0.48), rgba(2, 6, 23, 0.78));
}

.hero-layout {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  color: white;
  padding-top: 110px;
}

.hero-copy {
  width: min(620px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--sky);
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
}

.hero-copy h2,
.hero-site-copy h1,
.page-hero h1,
.detail-copy h1 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.hero-copy h2 {
  font-size: clamp(42px, 7vw, 82px);
  color: white;
  text-shadow: 0 20px 52px rgba(0, 0, 0, 0.34);
}

.hero-copy p:not(.eyebrow) {
  margin: 22px 0 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.8;
}

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

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

.primary-btn {
  color: white;
  background: linear-gradient(135deg, var(--sky), var(--pink));
  box-shadow: 0 18px 38px rgba(14, 165, 233, 0.26);
}

.primary-btn:hover,
.ghost-btn:hover {
  transform: translateY(-2px);
}

.primary-btn.light {
  color: var(--sky-deep);
  background: white;
}

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

.ghost-btn.dark {
  color: var(--sky-deep);
  border-color: #bae6fd;
  background: #f0f9ff;
}

.hero-panel {
  position: relative;
  z-index: 3;
  min-height: 720px;
  display: grid;
  grid-template-columns: 1fr 320px;
  align-items: end;
  gap: 28px;
  padding: 0 0 54px;
  pointer-events: none;
}

.hero-site-copy,
.hero-mini-card,
.hero-dots {
  pointer-events: auto;
}

.hero-site-copy {
  width: min(640px, 100%);
  padding: 28px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.36);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-site-copy h1 {
  max-width: 760px;
  color: white;
  font-size: clamp(34px, 5vw, 60px);
}

.hero-site-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.8;
  font-size: 17px;
}

.hero-search {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding: 6px;
  border-radius: 999px;
  background: white;
}

.hero-search input {
  padding: 12px 16px;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-chips a {
  color: white;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-mini-card {
  padding: 24px;
  color: white;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.72), rgba(236, 72, 153, 0.72));
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-mini-card span,
.hero-mini-card a {
  font-weight: 900;
}

.hero-mini-card strong {
  display: block;
  margin-top: 12px;
  font-size: 24px;
  line-height: 1.25;
}

.hero-mini-card p {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
}

.hero-mini-card a {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--sky-deep);
  background: white;
}

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

.hero-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.hero-dots button.is-active {
  width: 30px;
  background: white;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: -42px;
  position: relative;
  z-index: 7;
}

.feature-strip article,
.content-card,
.info-card,
.category-overview-card,
.category-card,
.movie-card,
.gradient-card,
.top-rank-card,
.rank-item,
.related-card {
  border: 1px solid rgba(226, 232, 240, 0.88);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.08);
}

.feature-strip article {
  padding: 22px;
  border-radius: 22px;
}

.feature-strip strong {
  display: block;
  font-size: 20px;
}

.feature-strip p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.section-block {
  padding: 56px 0;
}

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.05em;
}

.section-heading a {
  color: var(--sky-deep);
  font-weight: 900;
}

.plain-heading {
  align-items: center;
}

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

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

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

.movie-card {
  overflow: hidden;
  border-radius: var(--radius);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(14, 165, 233, 0.45);
  box-shadow: 0 24px 64px rgba(14, 165, 233, 0.13);
}

.movie-card-link {
  display: flex;
  height: 100%;
  flex-direction: column;
}

.poster-frame {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, #dbeafe, #fce7f3);
}

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

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

.score-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 5px 10px;
  color: white;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--amber), var(--pink));
  font-weight: 900;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.movie-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
}

.movie-card-body strong {
  font-size: 17px;
  line-height: 1.35;
}

.movie-meta-line,
.movie-desc,
.related-card span,
.rank-text small,
.rank-text em {
  color: var(--muted);
}

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

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

.tag-row span,
.detail-tags span {
  display: inline-flex;
  padding: 5px 9px;
  color: var(--sky-deep);
  border-radius: 999px;
  background: #e0f2fe;
  font-size: 12px;
  font-weight: 800;
}

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

.compact-card .movie-desc,
.compact-card .tag-row {
  display: none;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

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

.rank-item {
  overflow: hidden;
  border-radius: 22px;
}

.rank-item a {
  display: grid;
  grid-template-columns: 64px 76px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 12px;
}

.rank-no {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: white;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--sky), var(--pink));
  font-weight: 900;
}

.rank-item img {
  width: 76px;
  height: 92px;
  object-fit: cover;
  border-radius: 16px;
}

.rank-text {
  display: grid;
  gap: 6px;
}

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

.rank-text em {
  font-style: normal;
}

.gradient-card {
  position: sticky;
  top: 98px;
  padding: 34px;
  color: white;
  border: 0;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.28), transparent 28%),
    linear-gradient(135deg, var(--sky), var(--pink));
}

.gradient-card .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.gradient-card h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.12;
}

.gradient-card p {
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.8;
}

.category-grid,
.category-overview-grid {
  display: grid;
  gap: 20px;
}

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

.category-card,
.category-overview-card a {
  display: block;
  min-height: 170px;
  padding: 24px;
  border-radius: var(--radius);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.category-card:hover,
.category-overview-card a:hover {
  transform: translateY(-5px);
  border-color: rgba(236, 72, 153, 0.35);
}

.category-card span,
.category-overview-card h2 {
  display: block;
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 900;
}

.category-card p,
.category-overview-card p {
  color: var(--muted);
  line-height: 1.7;
}

.page-hero {
  padding: 72px 0;
  color: white;
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 255, 255, 0.24), transparent 24%),
    linear-gradient(135deg, var(--sky), var(--pink));
}

.page-hero .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.page-hero h1 {
  max-width: 880px;
  font-size: clamp(38px, 6vw, 64px);
}

.page-hero p {
  max-width: 760px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.8;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.breadcrumb a:hover {
  color: white;
}

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

.category-overview-card {
  border-radius: var(--radius);
  overflow: hidden;
}

.mini-title-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.mini-title-list span {
  padding: 6px 10px;
  color: var(--sky-deep);
  border-radius: 999px;
  background: #e0f2fe;
  font-size: 13px;
}

.category-overview-card strong {
  color: var(--pink);
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 14px;
  margin-bottom: 24px;
}

.advanced-filter {
  grid-template-columns: minmax(0, 1fr) 220px 220px;
}

.filter-bar input,
.filter-bar select {
  height: 52px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.empty-state {
  padding: 40px;
  color: var(--muted);
  text-align: center;
  border-radius: var(--radius);
  background: white;
}

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

.top-rank-card {
  overflow: hidden;
  border-radius: var(--radius);
}

.top-rank-card a {
  display: grid;
  min-height: 430px;
  position: relative;
  align-content: end;
  padding: 24px;
  color: white;
}

.top-rank-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.top-rank-card a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.88), rgba(2, 6, 23, 0.12));
}

.top-rank-card span,
.top-rank-card h2,
.top-rank-card p {
  position: relative;
  z-index: 2;
}

.top-rank-card span {
  font-weight: 900;
  color: #fef3c7;
}

.top-rank-card h2 {
  margin: 10px 0;
  font-size: 28px;
}

.top-rank-card p {
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.7;
}

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

.detail-hero {
  padding: 56px 0 64px;
  color: white;
  background:
    radial-gradient(circle at 82% 20%, rgba(236, 72, 153, 0.35), transparent 30%),
    linear-gradient(135deg, #020617, #0f172a 58%, #082f49);
}

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

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

.detail-poster {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.36);
}

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

.detail-copy h1 {
  font-size: clamp(38px, 6vw, 72px);
}

.detail-one-line {
  max-width: 780px;
  margin: 22px 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
  line-height: 1.85;
}

.player-section {
  padding: 54px 0 24px;
}

.video-shell {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #020617;
  box-shadow: 0 34px 90px rgba(15, 23, 42, 0.24);
}

.video-shell video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #020617;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 12px;
  color: white;
  border: 0;
  background: radial-gradient(circle at center, rgba(15, 23, 42, 0.08), rgba(2, 6, 23, 0.44));
  cursor: pointer;
  transition: opacity 0.25s ease;
}

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

.play-circle {
  position: relative;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--pink));
  box-shadow: 0 20px 52px rgba(14, 165, 233, 0.36);
}

.play-circle::after {
  content: "";
  position: absolute;
  left: 36px;
  top: 27px;
  width: 0;
  height: 0;
  border-top: 17px solid transparent;
  border-bottom: 17px solid transparent;
  border-left: 24px solid white;
}

.player-overlay strong {
  font-size: 20px;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.32);
}

.detail-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 320px;
  gap: 24px;
  padding: 32px 0;
}

.content-card,
.info-card {
  padding: 26px;
  border-radius: var(--radius);
}

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

.content-card p {
  color: #374151;
  line-height: 1.9;
}

.info-card dl {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 12px;
  margin: 0;
}

.info-card dt {
  color: var(--muted);
}

.info-card dd {
  margin: 0;
  font-weight: 800;
}

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

.related-card {
  overflow: hidden;
  border-radius: 22px;
}

.related-card a {
  display: grid;
  gap: 10px;
  padding: 12px;
}

.related-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 16px;
}

.related-card strong {
  line-height: 1.35;
}

.site-footer {
  margin-top: 48px;
  padding: 46px 0 0;
  color: #dbeafe;
  background: #020617;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 34px;
}

.footer-brand {
  color: white;
  font-size: 24px;
}

.site-footer p {
  color: #94a3b8;
  line-height: 1.8;
}

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

.footer-links {
  display: grid;
  gap: 10px;
  color: #bae6fd;
}

.footer-bottom {
  margin-top: 34px;
  padding: 18px 0;
  text-align: center;
  color: #94a3b8;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
}

@media (max-width: 1080px) {
  .header-search {
    display: none;
  }

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

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

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

  .gradient-card {
    position: static;
  }
}

@media (max-width: 820px) {
  .nav-shell {
    min-height: 66px;
  }

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

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: white;
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    padding: 13px 12px;
    border-radius: 14px;
  }

  .hero-section,
  .hero-panel {
    min-height: 860px;
  }

  .hero-panel {
    grid-template-columns: 1fr;
    align-items: end;
  }

  .hero-mini-card {
    display: none;
  }

  .hero-layout {
    align-items: start;
    padding-top: 120px;
  }

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

  .hero-site-copy {
    padding: 22px;
  }

  .hero-search {
    flex-direction: column;
    align-items: stretch;
    border-radius: 22px;
  }

  .hero-search button {
    min-height: 44px;
  }

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

  .large-grid,
  .compact-grid,
  .category-grid,
  .related-grid,
  .full-rank {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .brand-text {
    font-size: 18px;
  }

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

  .section-block {
    padding: 38px 0;
  }

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

  .rank-item a {
    grid-template-columns: 48px 64px minmax(0, 1fr);
    gap: 10px;
  }

  .rank-no {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .rank-item img {
    width: 64px;
    height: 80px;
  }

  .detail-tags span,
  .tag-row span {
    font-size: 11px;
  }
}
