:root {
  --bg: #f9fafb;
  --text: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --card: #ffffff;
  --dark: #111827;
  --emerald: #059669;
  --emerald-2: #10b981;
  --amber: #f59e0b;
  --rose: #f43f5e;
  --shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(229, 231, 235, 0.88);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--emerald), #14b8a6);
  box-shadow: 0 12px 26px rgba(5, 150, 105, 0.28);
}

.brand-name {
  font-size: 22px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link,
.mobile-link {
  color: #374151;
  font-size: 14px;
  font-weight: 650;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
  color: var(--emerald);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: #f3f4f6;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: #111827;
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 10px 0 18px;
  border-top: 1px solid var(--line);
}

.mobile-nav.open {
  display: grid;
  gap: 14px;
}

.hero-carousel {
  position: relative;
  height: 60vh;
  min-height: 520px;
  overflow: hidden;
  background: #111827;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.65s ease;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  transform: scale(1.02);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.45) 52%, rgba(0, 0, 0, 0.18) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  padding-bottom: 74px;
}

.hero-copy {
  max-width: 700px;
  color: #ffffff;
}

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

.hero-kicker span,
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--emerald-2);
  font-size: 13px;
  font-weight: 800;
}

.hero-kicker strong {
  color: #fbbf24;
}

.hero-copy h1 {
  margin: 18px 0 18px;
  font-size: clamp(36px, 6vw, 66px);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: -0.06em;
}

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

.hero-meta span {
  color: #e5e7eb;
  font-size: 14px;
}

.hero-tags {
  margin: 18px 0 26px;
}

.hero-tags span,
.tag-row span {
  padding: 6px 10px;
  border-radius: 999px;
  color: #ecfdf5;
  background: rgba(16, 185, 129, 0.18);
  border: 1px solid rgba(16, 185, 129, 0.32);
  font-size: 13px;
}

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

.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, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn.primary {
  color: #ffffff;
  background: var(--emerald);
  box-shadow: 0 16px 34px rgba(5, 150, 105, 0.32);
}

.btn.primary:hover {
  background: #047857;
}

.btn.ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(10px);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.48);
  font-size: 42px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}

.hero-arrow.prev {
  left: 24px;
}

.hero-arrow.next {
  right: 24px;
}

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

.hero-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.52);
  transition: width 0.25s ease, background 0.25s ease;
}

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

.quick-panel {
  margin-top: -34px;
  position: relative;
  z-index: 4;
}

.quick-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 18px;
  align-items: stretch;
}

.quick-search,
.quick-cats,
.search-box,
.info-panel,
.movie-article,
.category-card a {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(229, 231, 235, 0.92);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quick-search {
  padding: 26px;
}

.quick-search h2,
.section-head h2,
.page-hero h1,
.detail-copy h1,
.player-section h2,
.movie-article h2,
.info-panel h2 {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.quick-search h2 {
  font-size: 28px;
}

.quick-search p {
  margin: 10px 0 20px;
  color: var(--muted);
  line-height: 1.75;
}

.search-form,
.toolbar {
  display: flex;
  gap: 12px;
  align-items: center;
}

.search-form input,
.filter-input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 16px;
  color: var(--text);
  background: #ffffff;
  outline: none;
}

.search-form input:focus,
.filter-input:focus {
  border-color: var(--emerald-2);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.14);
}

.search-form button {
  min-height: 46px;
  border: 0;
  border-radius: 12px;
  padding: 0 22px;
  color: #ffffff;
  background: var(--emerald);
  font-weight: 800;
}

.quick-cats {
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.quick-cats a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 14px;
  color: #065f46;
  background: linear-gradient(135deg, #ecfdf5, #f0fdfa);
  border: 1px solid rgba(16, 185, 129, 0.18);
  font-weight: 800;
}

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

.content-section.alt-1 {
  background: linear-gradient(90deg, #ecfdf5, #f0fdfa);
}

.content-section.alt-2 {
  background: linear-gradient(90deg, #fff7ed, #fff1f2);
}

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

.section-head h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.section-head.small h2 {
  font-size: 24px;
}

.section-line {
  height: 4px;
  flex: 1;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--emerald), rgba(16, 185, 129, 0));
}

.section-more {
  color: var(--emerald);
  font-weight: 800;
}

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

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

.mini-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.movie-card {
  min-width: 0;
}

.movie-card a {
  height: 100%;
  display: block;
  overflow: hidden;
  background: var(--card);
  border: 1px solid rgba(229, 231, 235, 0.88);
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.movie-card a:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 38px rgba(15, 23, 42, 0.15);
}

.card-cover {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #111827;
}

.movie-card.compact .card-cover {
  aspect-ratio: 2 / 3;
}

.card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.movie-card a:hover .card-cover img {
  transform: scale(1.08);
  opacity: 0.78;
}

.card-year {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 8px;
  border-radius: 8px;
  color: #ffffff;
  background: rgba(17, 24, 39, 0.72);
  font-size: 12px;
  font-weight: 800;
}

.card-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(5, 150, 105, 0.86);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.86);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.card-body {
  padding: 14px;
}

.card-body h3 {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 850;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.movie-card a:hover .card-body h3 {
  color: var(--emerald);
}

.card-body p {
  margin: 0 0 12px;
  min-height: 42px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-meta {
  justify-content: space-between;
  color: #6b7280;
  font-size: 12px;
}

.rank-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
  gap: 28px;
  align-items: start;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 46px 52px 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 74px;
  padding: 10px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.rank-item:hover {
  transform: translateX(4px);
  border-color: rgba(16, 185, 129, 0.45);
}

.rank-no {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-2));
  font-weight: 900;
  font-size: 13px;
}

.rank-item img {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  object-fit: cover;
}

.rank-title {
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-meta {
  color: var(--muted);
  font-size: 13px;
}

.search-box {
  padding: 22px;
}

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

.filter-chips button {
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 14px;
  color: #374151;
  background: #ffffff;
  font-weight: 750;
}

.filter-chips button.active,
.filter-chips button:hover {
  color: #ffffff;
  background: var(--emerald);
  border-color: var(--emerald);
}

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

.page-hero {
  padding: 66px 0 52px;
  background: linear-gradient(135deg, #ecfdf5, #ffffff 55%, #f0fdfa);
}

.page-hero.soft {
  background: linear-gradient(135deg, #f0fdf4, #ffffff 50%, #eff6ff);
}

.page-hero.dark {
  color: #ffffff;
  background: radial-gradient(circle at top left, rgba(16, 185, 129, 0.55), transparent 38%), linear-gradient(135deg, #111827, #064e3b);
}

.page-hero h1 {
  margin: 18px 0 12px;
  font-size: clamp(34px, 5vw, 58px);
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: #4b5563;
  font-size: 18px;
  line-height: 1.8;
}

.page-hero.dark p {
  color: #d1fae5;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #6b7280;
  font-size: 14px;
}

.breadcrumbs a:hover {
  color: var(--emerald);
}

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

.category-card a {
  display: block;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card a:hover {
  transform: translateY(-5px);
}

.category-covers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 132px;
  overflow: hidden;
  background: #111827;
}

.category-covers img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
}

.category-body {
  padding: 20px;
}

.category-body h2 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 900;
}

.category-body p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.7;
}

.category-body span {
  color: var(--emerald);
  font-weight: 850;
}

.toolbar {
  margin-bottom: 24px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.sticky-toolbar {
  position: sticky;
  top: 78px;
  z-index: 8;
}

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

.ranking-card a {
  display: grid;
  grid-template-columns: 58px 86px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.ranking-card img {
  width: 86px;
  height: 114px;
  object-fit: cover;
  border-radius: 14px;
}

.ranking-number {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--rose), var(--amber));
  font-weight: 900;
}

.ranking-card h2 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 900;
}

.ranking-card p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ranking-card strong {
  color: var(--emerald);
  font-size: 22px;
}

.detail-hero {
  padding: 54px 0;
  color: #ffffff;
  background: radial-gradient(circle at 18% 20%, rgba(16, 185, 129, 0.38), transparent 28%), linear-gradient(135deg, #111827, #064e3b);
}

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

.poster-card {
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.35);
}

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

.detail-copy h1 {
  margin: 16px 0;
  font-size: clamp(34px, 5vw, 60px);
}

.detail-copy .lead {
  max-width: 820px;
  margin: 0 0 18px;
  color: #d1fae5;
  font-size: 18px;
  line-height: 1.8;
}

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

.detail-meta span {
  padding: 6px 12px;
  border-radius: 999px;
  color: #ecfdf5;
  background: rgba(255, 255, 255, 0.12);
}

.detail-copy .btn {
  margin-top: 24px;
}

.player-section {
  padding: 54px 0 20px;
  background: #0f172a;
}

.player-section h2 {
  margin-bottom: 20px;
  color: #ffffff;
  font-size: 28px;
}

.player-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 22px;
  background: #000000;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
}

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

.player-shell video {
  z-index: 1;
  background: #000000;
}

.player-cover {
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.player-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.68));
}

.player-start {
  position: relative;
  z-index: 3;
  min-width: 168px;
  min-height: 58px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-2));
  box-shadow: 0 18px 40px rgba(5, 150, 105, 0.32);
}

.player-start span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

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

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 26px;
  align-items: start;
}

.movie-article,
.info-panel {
  padding: 26px;
}

.movie-article h2,
.info-panel h2 {
  margin-bottom: 16px;
  font-size: 26px;
}

.movie-article h2:not(:first-child) {
  margin-top: 28px;
}

.movie-article p {
  margin: 0;
  color: #374151;
  font-size: 17px;
  line-height: 2;
}

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

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

.info-panel dd {
  margin: 0;
  font-weight: 760;
}

.info-panel a {
  color: var(--emerald);
}

.site-footer {
  color: #d1d5db;
  background: #111827;
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 46px 0;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) 0.75fr 0.75fr;
  gap: 34px;
}

.footer-main p {
  max-width: 620px;
  color: #9ca3af;
  line-height: 1.8;
}

.footer-brand {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 22px;
}

.footer-col h3 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 16px;
}

.footer-col ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-col a {
  color: #9ca3af;
}

.footer-col a:hover {
  color: var(--emerald-2);
}

.footer-bottom {
  padding: 20px 16px;
  color: #9ca3af;
  text-align: center;
  border-top: 1px solid rgba(75, 85, 99, 0.55);
}

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

@media (max-width: 1100px) {
  .main-nav {
    gap: 16px;
  }

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

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

@media (max-width: 860px) {
  .main-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-carousel {
    min-height: 580px;
    height: 72vh;
  }

  .hero-content {
    padding-bottom: 88px;
  }

  .hero-arrow {
    display: none;
  }

  .quick-grid,
  .rank-layout,
  .detail-layout,
  .article-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .toolbar,
  .search-form {
    align-items: stretch;
    flex-direction: column;
  }

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

@media (max-width: 620px) {
  .container,
  .header-inner,
  .mobile-nav,
  .footer-inner {
    width: min(100% - 24px, 1180px);
  }

  .brand-name {
    font-size: 19px;
  }

  .hero-copy p,
  .page-hero p,
  .detail-copy .lead {
    font-size: 16px;
  }

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

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

  .card-body {
    padding: 12px;
  }

  .card-body h3 {
    font-size: 14px;
  }

  .ranking-card a {
    grid-template-columns: 42px 70px minmax(0, 1fr);
  }

  .ranking-card strong {
    display: none;
  }

  .ranking-card img {
    width: 70px;
    height: 96px;
  }

  .rank-item {
    grid-template-columns: 38px 44px 1fr;
  }

  .rank-meta {
    display: none;
  }
}
