:root {
  --bg: #0c0c10;
  --bg-soft: #15151c;
  --panel: rgba(255, 255, 255, 0.07);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --text: #f8fafc;
  --muted: #a1a1aa;
  --dark-text: #18181b;
  --amber: #f59e0b;
  --amber-dark: #d97706;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background 0.28s ease, box-shadow 0.28s ease, backdrop-filter 0.28s ease;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0));
}

.site-header.is-scrolled {
  background: rgba(12, 12, 16, 0.9);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  width: min(1220px, calc(100% - 32px));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #fbbf24, #d97706);
  color: #ffffff;
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(245, 158, 11, 0.36);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-title {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand-subtitle {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.86);
  transition: color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.site-nav a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 10px;
}

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

.hero-section {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 112px 0 64px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.28), transparent 30%),
    radial-gradient(circle at 80% 10%, rgba(251, 191, 36, 0.15), transparent 26%),
    linear-gradient(135deg, #0b0b10 0%, #23180a 45%, #0b0b10 100%);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, #000, transparent 90%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-slide {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
  min-height: 620px;
}

.hero-slide.is-active {
  display: flex;
  animation: fadeUp 0.55s ease both;
}

.hero-copy {
  max-width: 690px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: #fde68a;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--amber-dark);
}

.hero-copy h1,
.page-hero h1,
.detail-info h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.hero-copy h2 {
  margin: 18px 0 12px;
  color: #fef3c7;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -0.04em;
}

.hero-copy p,
.page-hero p,
.lead-text {
  margin: 0;
  max-width: 740px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.9;
}

.hero-tags,
.tag-row,
.detail-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags {
  margin-top: 24px;
}

.hero-tags span,
.tag-row span,
.detail-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
}

.tag-row {
  min-height: 30px;
}

.tag-row span {
  color: #92400e;
  background: #fef3c7;
  border-color: #fde68a;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

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

.primary-btn {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(245, 158, 11, 0.28);
}

.primary-btn.small {
  min-height: 42px;
  padding: 0 18px;
}

.ghost-btn {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

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

.hero-poster {
  position: relative;
  flex: 0 0 min(360px, 32vw);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.hero-poster::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: inherit;
  z-index: 2;
}

.hero-poster img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  background: #18181b;
}

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

.hero-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
  width: 34px;
  background: var(--amber);
}

.stats-section,
.content-section,
.site-footer,
.page-hero,
.detail-layout {
  width: min(1220px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.stats-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: -52px;
  position: relative;
  z-index: 2;
}

.stat-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(21, 21, 28, 0.88);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.stat-card strong {
  display: block;
  color: #ffffff;
  font-size: 22px;
}

.stat-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

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

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

.section-head h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.05em;
}

.more-link {
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

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

.category-card,
.category-overview-card {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  padding: 24px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.category-card::after,
.category-overview-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -70px auto;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.category-kicker,
.category-card em,
.category-overview-card em {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
  line-height: 1.7;
}

.category-card strong {
  display: block;
  margin: 16px 0 8px;
  color: #ffffff;
  font-size: 25px;
  letter-spacing: -0.04em;
}

.theme-0 { background: linear-gradient(135deg, #f59e0b, #92400e); }
.theme-1 { background: linear-gradient(135deg, #0ea5e9, #075985); }
.theme-2 { background: linear-gradient(135deg, #ef4444, #7f1d1d); }
.theme-3 { background: linear-gradient(135deg, #8b5cf6, #4c1d95); }
.theme-4 { background: linear-gradient(135deg, #ec4899, #831843); }
.theme-5 { background: linear-gradient(135deg, #14b8a6, #134e4a); }
.theme-6 { background: linear-gradient(135deg, #64748b, #1e293b); }
.theme-7 { background: linear-gradient(135deg, #22c55e, #14532d); }
.theme-8 { background: linear-gradient(135deg, #fb923c, #7c2d12); }
.theme-9 { background: linear-gradient(135deg, #6366f1, #312e81); }

.search-panel {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 16px;
  margin-bottom: 24px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
}

.search-panel label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.search-panel input,
.search-panel select {
  width: 100%;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.26);
  color: #ffffff;
  padding: 0 16px;
  outline: none;
}

.search-panel input:focus,
.search-panel select:focus {
  border-color: rgba(245, 158, 11, 0.78);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
}

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 158, 11, 0.48);
  background: rgba(255, 255, 255, 0.09);
}

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: #18181b;
}

.poster-link img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  transition: transform 0.28s ease;
}

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

.rank-badge,
.score-pill {
  position: absolute;
  top: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 30px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.rank-badge {
  left: 12px;
  background: rgba(0, 0, 0, 0.58);
}

.score-pill {
  right: 12px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

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

.movie-card h3 {
  margin: 12px 0 8px;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.movie-card h3 a:hover {
  color: #fbbf24;
}

.movie-card p {
  min-height: 64px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
}

.meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
}

.dark-panel {
  padding: 36px;
  margin-top: 82px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.14), rgba(255, 255, 255, 0.05));
}

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

.ranking-row {
  display: grid;
  grid-template-columns: 58px 74px 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 92px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  transition: transform 0.22s ease, background 0.22s ease;
}

.ranking-row:hover {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.1);
}

.ranking-no {
  color: #fbbf24;
  font-size: 24px;
  font-weight: 900;
}

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

.ranking-main {
  min-width: 0;
}

.ranking-main strong,
.ranking-main em {
  display: block;
}

.ranking-main strong {
  margin-bottom: 6px;
  color: #ffffff;
  font-size: 18px;
}

.ranking-main em {
  color: rgba(255, 255, 255, 0.62);
  font-style: normal;
  line-height: 1.55;
}

.ranking-meta {
  color: #fde68a;
  font-weight: 800;
  white-space: nowrap;
}

.page-main {
  padding-top: 96px;
}

.page-hero {
  position: relative;
  min-height: 360px;
  display: grid;
  align-items: center;
  gap: 30px;
  margin-top: 24px;
  padding: 46px;
  border: 1px solid var(--line);
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 10%, rgba(245, 158, 11, 0.35), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.page-hero.compact-hero {
  min-height: 310px;
}

.category-hero {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
}

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

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

.category-showcase {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.category-showcase a {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  min-height: 220px;
}

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

.category-showcase span {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.58);
  color: #ffffff;
  font-weight: 800;
  font-size: 13px;
}

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

.category-overview-card {
  min-height: 230px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.category-overview-card h2 {
  max-width: 680px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(26px, 4vw, 44px);
  letter-spacing: -0.05em;
}

.mini-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.mini-links a {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.full-ranking {
  margin-top: 24px;
}

.detail-main {
  padding-top: 0;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  display: flex;
  align-items: center;
  padding: 112px 0 60px;
}

.detail-backdrop {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.04);
}

.detail-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(220px, 330px) minmax(0, 1fr);
  align-items: center;
  gap: 46px;
}

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

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

.detail-info h1 {
  max-width: 900px;
}

.detail-info .lead-text {
  margin-top: 22px;
}

.detail-meta {
  margin-top: 18px;
}

.player-section {
  padding-top: 50px;
}

.video-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background: #000000;
  box-shadow: var(--shadow);
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.72));
  color: #ffffff;
  cursor: pointer;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.play-icon {
  width: 82px;
  height: 82px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  box-shadow: 0 20px 55px rgba(245, 158, 11, 0.35);
  position: relative;
}

.play-icon::after {
  content: "";
  position: absolute;
  left: 34px;
  top: 25px;
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 24px solid #ffffff;
}

.player-overlay strong {
  font-size: 20px;
}

.article-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
}

.detail-article,
.info-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
}

.detail-article h2,
.info-card h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 26px;
  letter-spacing: -0.03em;
}

.detail-article p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 2;
}

.detail-article p:last-child {
  margin-bottom: 0;
}

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

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

.info-card dd {
  margin: 0;
  color: #ffffff;
}

.site-footer {
  margin-top: 92px;
  padding: 36px 0 42px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
}

.site-footer p,
.copyright {
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-content: flex-start;
  justify-content: flex-end;
}

.footer-links a {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.82);
}

.copyright {
  margin-top: 28px;
  font-size: 13px;
}

[data-card].is-hidden {
  display: none !important;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

  .hero-slide,
  .category-hero,
  .article-section {
    grid-template-columns: 1fr;
  }

  .hero-slide {
    align-items: flex-start;
  }

  .hero-poster {
    flex-basis: 320px;
    width: 320px;
  }

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

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(12, 12, 16, 0.96);
    box-shadow: var(--shadow);
  }

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

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

  .hero-section {
    padding-top: 104px;
  }

  .hero-poster {
    width: min(280px, 78vw);
  }

  .stats-section,
  .category-grid,
  .movie-grid,
  .movie-grid.large-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .search-panel {
    grid-template-columns: 1fr;
  }

  .ranking-row {
    grid-template-columns: 42px 64px 1fr;
  }

  .ranking-meta {
    grid-column: 3;
  }

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

  .detail-poster {
    width: min(280px, 82vw);
  }

  .footer-grid {
    display: grid;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

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

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

  .hero-copy h1,
  .page-hero h1,
  .detail-info h1 {
    font-size: 38px;
  }

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

  .section-head,
  .category-overview-card {
    display: grid;
  }

  .page-hero,
  .dark-panel,
  .detail-article,
  .info-card {
    padding: 24px;
    border-radius: 24px;
  }

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

  .category-showcase a {
    min-height: 180px;
  }

  .ranking-row {
    grid-template-columns: 38px 56px 1fr;
    gap: 12px;
    padding: 10px;
  }

  .ranking-row img {
    width: 50px;
    height: 64px;
  }

  .ranking-main em {
    display: none;
  }

  .detail-hero {
    min-height: auto;
    padding-top: 108px;
  }
}
