:root {
  --blue-900: #0f2f75;
  --blue-800: #1e40af;
  --blue-700: #1d4ed8;
  --blue-600: #2563eb;
  --orange-600: #ea580c;
  --orange-500: #f97316;
  --yellow-400: #facc15;
  --gray-950: #030712;
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;
  --shadow-sm: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 18px 45px rgba(15, 23, 42, 0.14);
  --radius-lg: 18px;
  --radius-md: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--gray-800);
  background: var(--gray-50);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--white);
  background: linear-gradient(90deg, var(--blue-600), var(--blue-800));
  box-shadow: 0 10px 28px rgba(29, 78, 216, 0.28);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: var(--white);
  background: var(--orange-500);
  box-shadow: 0 12px 24px rgba(249, 115, 22, 0.35);
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-text strong {
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.brand-text em {
  margin-top: 2px;
  color: #bfdbfe;
  font-size: 12px;
  font-style: normal;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 600;
}

.desktop-nav a,
.mobile-nav a {
  transition: color 0.2s ease, opacity 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--yellow-400);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 10px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  border-radius: 99px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 0 20px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--blue-800);
}

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

.hero-carousel {
  position: relative;
  height: 500px;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a, var(--blue-700), #0f172a);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

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

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

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.08));
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.hero-copy {
  max-width: 680px;
  color: var(--white);
}

.hero-label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  color: var(--yellow-400);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.hero-label::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--yellow-400);
  box-shadow: 0 0 16px rgba(250, 204, 21, 0.8);
}

.hero-copy h1 {
  margin: 0 0 16px;
  font-size: clamp(38px, 6vw, 58px);
  line-height: 1.08;
  font-weight: 900;
}

.hero-copy p {
  max-width: 620px;
  margin: 0 0 22px;
  color: #e5e7eb;
  font-size: 18px;
}

.hero-tags,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.hero-tags span,
.detail-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  font-size: 13px;
  font-weight: 700;
}

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

.primary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 12px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.primary-btn {
  color: var(--white);
  background: var(--orange-500);
  box-shadow: 0 14px 28px rgba(249, 115, 22, 0.28);
}

.primary-btn:hover {
  transform: translateY(-2px);
  background: var(--orange-600);
}

.ghost-btn {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.12);
}

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

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
}

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

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

.search-panel {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 460px);
  gap: 24px;
  align-items: center;
  margin-top: 36px;
  padding: 26px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.search-panel h2,
.section-heading h2,
.category-side h2,
.player-section h2,
.detail-content h2 {
  margin: 0;
  color: var(--gray-900);
  font-size: 30px;
  line-height: 1.25;
}

.search-panel p {
  margin: 8px 0 0;
  color: var(--gray-600);
}

.search-box {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  background: var(--gray-50);
}

.search-box span {
  color: var(--gray-600);
  font-weight: 800;
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--gray-900);
  background: transparent;
}

.section-block,
.category-nav-block,
.ranking-slice,
.category-overview-grid,
.category-layout,
.ranking-page,
.detail-main {
  margin-top: 54px;
}

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

.section-heading a,
.text-link {
  color: var(--blue-600);
  font-weight: 800;
}

.section-heading a:hover,
.text-link:hover {
  color: var(--orange-600);
}

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

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

.movie-card {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.movie-cover {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #dbeafe, #eff6ff);
}

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

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

.movie-badge,
.movie-year {
  position: absolute;
  top: 10px;
  z-index: 1;
  padding: 4px 8px;
  border-radius: 8px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.movie-badge {
  left: 10px;
  background: var(--orange-500);
}

.movie-year {
  right: 10px;
  background: rgba(17, 24, 39, 0.78);
}

.movie-body {
  padding: 14px;
}

.movie-body h3 {
  display: -webkit-box;
  min-height: 44px;
  margin: 0 0 8px;
  overflow: hidden;
  color: var(--gray-900);
  font-size: 16px;
  font-weight: 850;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-body h3 a:hover {
  color: var(--orange-600);
}

.movie-body p {
  display: -webkit-box;
  min-height: 42px;
  margin: 0 0 10px;
  overflow: hidden;
  color: var(--gray-600);
  font-size: 13px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--gray-500);
  font-size: 12px;
}

.category-nav-block {
  padding: 34px;
  border-radius: 24px;
  background: linear-gradient(90deg, #f0fdf4, #eff6ff);
}

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

.category-box,
.category-overview-card {
  display: flex;
  gap: 16px;
  min-height: 170px;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-box {
  flex-direction: column;
}

.category-box:hover,
.category-overview-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.category-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  color: var(--white);
  background: var(--blue-600);
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.22);
}

.category-box strong,
.category-overview-card h2 {
  color: var(--gray-900);
  font-size: 19px;
  font-weight: 900;
}

.category-box em,
.category-overview-card p {
  color: var(--gray-600);
  font-size: 14px;
  font-style: normal;
}

.accent-red .category-icon,
.accent-red.category-box .category-icon {
  background: #ef4444;
}

.accent-blue .category-icon,
.accent-blue.category-box .category-icon {
  background: #3b82f6;
}

.accent-pink .category-icon,
.accent-pink.category-box .category-icon {
  background: #ec4899;
}

.accent-purple .category-icon,
.accent-purple.category-box .category-icon {
  background: #8b5cf6;
}

.accent-slate .category-icon,
.accent-slate.category-box .category-icon {
  background: #334155;
}

.accent-green .category-icon,
.accent-green.category-box .category-icon {
  background: #22c55e;
}

.accent-orange .category-icon,
.accent-orange.category-box .category-icon {
  background: #f97316;
}

.accent-cyan .category-icon,
.accent-cyan.category-box .category-icon {
  background: #06b6d4;
}

.ranking-slice {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 28px;
  align-items: start;
  margin-bottom: 70px;
  padding: 36px;
  border-radius: 24px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange-500), #dc2626);
}

.ranking-copy span {
  color: #ffedd5;
  font-weight: 900;
}

.ranking-copy h2 {
  margin: 10px 0 14px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.12;
}

.ranking-copy p {
  margin: 0 0 22px;
  color: #fff7ed;
}

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

.rank-card {
  position: relative;
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.compact-ranking .rank-card {
  background: rgba(255, 255, 255, 0.96);
}

.rank-cover {
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 12px;
  background: #dbeafe;
}

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

.rank-info h3 {
  margin: 0 0 5px;
  color: var(--gray-900);
  font-size: 16px;
  line-height: 1.3;
}

.rank-info h3 a:hover {
  color: var(--orange-600);
}

.rank-info p {
  display: -webkit-box;
  margin: 0 0 6px;
  overflow: hidden;
  color: var(--gray-600);
  font-size: 13px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.rank-meta {
  color: var(--gray-500);
  font-size: 12px;
}

.rank-num {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  color: var(--white);
  background: var(--orange-500);
  font-weight: 900;
}

.page-hero,
.detail-hero {
  position: relative;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-900), var(--blue-600));
  overflow: hidden;
}

.page-hero {
  padding: 86px 0;
}

.small-hero {
  background: linear-gradient(135deg, #0f172a, var(--blue-700));
}

.category-hero::after,
.ranking-hero::after,
.small-hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -120px auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero p {
  margin: 0 0 10px;
  color: var(--yellow-400);
  font-weight: 900;
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.08;
}

.page-hero span {
  display: block;
  max-width: 780px;
  color: #dbeafe;
  font-size: 18px;
}

.category-overview-card {
  min-height: 240px;
}

.category-overview-card h2 {
  margin: 0 0 8px;
}

.sample-links {
  display: grid;
  gap: 6px;
  margin: 14px 0;
}

.sample-links a {
  color: var(--gray-700);
  font-size: 14px;
}

.sample-links a:hover {
  color: var(--orange-600);
}

.category-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 28px;
  align-items: start;
}

.category-side,
.content-card,
.player-section,
.toolbar {
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.category-side {
  position: sticky;
  top: 88px;
  padding: 22px;
}

.side-ranking .rank-card {
  grid-template-columns: 66px 1fr;
  box-shadow: none;
  border: 1px solid var(--gray-200);
}

.toolbar {
  display: grid;
  gap: 18px;
  margin-bottom: 22px;
  padding: 18px;
}

.inline-search {
  max-width: 560px;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-chip {
  border: 0;
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--gray-700);
  background: var(--gray-100);
  cursor: pointer;
  font-weight: 800;
  transition: color 0.2s ease, background 0.2s ease;
}

.filter-chip:hover,
.filter-chip.is-active {
  color: var(--white);
  background: var(--orange-500);
}

.ranking-page {
  margin-bottom: 70px;
}

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

.ranking-toolbar {
  margin-bottom: 24px;
}

.detail-hero {
  min-height: 620px;
}

.detail-backdrop {
  position: absolute;
  inset: 0;
}

.detail-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  filter: blur(2px);
}

.detail-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(15, 47, 117, 0.8), rgba(29, 78, 216, 0.42));
}

.detail-hero-inner {
  position: relative;
  z-index: 1;
  padding: 34px 0 54px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  color: #dbeafe;
  font-size: 14px;
}

.breadcrumb a:hover {
  color: var(--yellow-400);
}

.detail-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 34px;
  align-items: center;
}

.detail-poster {
  display: block;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 26px 62px rgba(0, 0, 0, 0.38);
}

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

.detail-label {
  margin: 0 0 12px;
  color: var(--yellow-400);
  font-weight: 900;
}

.detail-copy h1 {
  margin: 0 0 16px;
  font-size: clamp(36px, 6vw, 60px);
  line-height: 1.08;
}

.detail-one-line {
  max-width: 820px;
  margin: 0 0 20px;
  color: #e5e7eb;
  font-size: 18px;
}

.detail-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 820px;
  margin: 0 0 26px;
}

.detail-meta div {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.detail-meta dt {
  color: #bfdbfe;
  font-size: 12px;
}

.detail-meta dd {
  margin: 4px 0 0;
  color: var(--white);
  font-weight: 800;
}

.detail-main {
  margin-bottom: 70px;
}

.player-section {
  padding: 24px;
}

.player-section h2 {
  margin-bottom: 18px;
}

.player-frame {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: var(--gray-950);
  aspect-ratio: 16 / 9;
}

.movie-video,
.player-cover,
.player-cover img,
.player-mask {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.movie-video {
  z-index: 1;
  background: var(--gray-950);
}

.player-cover {
  z-index: 2;
  display: block;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: var(--gray-950);
}

.player-cover.is-hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.player-cover img {
  object-fit: cover;
  opacity: 0.62;
}

.player-mask {
  background: radial-gradient(circle, rgba(249, 115, 22, 0.22), rgba(0, 0, 0, 0.72));
}

.player-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  color: var(--white);
  background: var(--orange-500);
  box-shadow: 0 18px 42px rgba(249, 115, 22, 0.45);
  transform: translate(-50%, -50%);
  font-size: 34px;
  line-height: 1;
}

.detail-content {
  margin-top: 26px;
  padding: 28px;
}

.detail-content h2 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 26px;
}

.detail-content p {
  margin: 0 0 22px;
  color: var(--gray-700);
  font-size: 16px;
}

.related-block {
  margin-top: 46px;
}

.site-footer {
  color: #d1d5db;
  background: var(--gray-900);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 34px;
  padding: 46px 0;
}

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

.site-footer p {
  margin: 0;
  color: #d1d5db;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a:hover {
  color: var(--orange-500);
}

.footer-bottom {
  padding: 18px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #9ca3af;
  text-align: center;
}

.is-hidden-by-filter {
  display: none !important;
}

@media (max-width: 1080px) {
  .desktop-nav {
    gap: 14px;
    font-size: 14px;
  }

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

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

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

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

  .category-side {
    position: static;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .brand-text strong {
    font-size: 17px;
  }

  .brand-text em {
    display: none;
  }

  .hero-carousel {
    height: 560px;
  }

  .hero-content {
    align-items: flex-end;
    padding-bottom: 70px;
  }

  .hero-copy h1 {
    font-size: 36px;
  }

  .hero-copy p {
    font-size: 16px;
  }

  .search-panel {
    grid-template-columns: 1fr;
    margin-top: 24px;
    padding: 20px;
  }

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

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

  .category-grid,
  .category-overview-grid,
  .footer-grid,
  .ranking-list-large,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .category-nav-block,
  .ranking-slice {
    padding: 22px;
  }

  .detail-hero {
    min-height: auto;
  }

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

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

  .player-section,
  .detail-content {
    padding: 18px;
  }

  .player-play {
    width: 66px;
    height: 66px;
    font-size: 26px;
  }
}

@media (max-width: 420px) {
  .movie-grid,
  .wide-grid,
  .category-movie-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .rank-card {
    grid-template-columns: 72px 1fr;
  }

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