:root {
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --bg-warm: #fff7ed;
  --text: #111827;
  --muted: #64748b;
  --line: #e5e7eb;
  --orange: #ea580c;
  --orange-dark: #c2410c;
  --orange-soft: #ffedd5;
  --amber: #f59e0b;
  --dark: #0f172a;
  --dark-soft: #1f2937;
  --radius: 18px;
  --shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
  font: inherit;
}

[hidden] {
  display: none !important;
}

.image-hidden {
  opacity: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.nav-shell {
  max-width: 1180px;
  margin: 0 auto;
  min-height: 72px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  color: #ffffff;
  font-weight: 900;
  font-size: 22px;
  box-shadow: 0 12px 30px rgba(234, 88, 12, 0.32);
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

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

.brand-text em {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.brand-dark .brand-text strong {
  color: #ffffff;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link {
  padding: 10px 12px;
  color: #334155;
  font-weight: 700;
  font-size: 14px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--orange);
  background: var(--orange-soft);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: var(--bg-soft);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

.mobile-nav {
  display: none;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

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

.mobile-link {
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--bg-soft);
  color: #334155;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: var(--dark);
}

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

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
}

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

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: radial-gradient(circle at 30% 20%, rgba(249, 115, 22, 0.8), rgba(15, 23, 42, 1) 50%);
  transform: scale(1.04);
}

.hero-mask {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.96) 0%, rgba(15, 23, 42, 0.78) 42%, rgba(15, 23, 42, 0.22) 100%),
    linear-gradient(0deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.14) 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  min-height: 640px;
  margin: 0 auto;
  padding: 120px 24px 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: max-content;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--orange);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.eyebrow.dark {
  color: var(--orange);
  background: var(--orange-soft);
}

.hero h1,
.hero h2 {
  max-width: 820px;
  margin: 18px 0 0;
  color: #ffffff;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.hero h1 {
  font-size: clamp(36px, 7vw, 72px);
}

.hero h2 {
  font-size: clamp(34px, 6vw, 64px);
}

.hero p {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(16px, 2vw, 21px);
}

.hero-meta,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
}

.hero-meta span {
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 40px;
  z-index: 5;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.55);
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.is-active {
  width: 34px;
  background: #ffffff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.btn.primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  box-shadow: 0 18px 42px rgba(234, 88, 12, 0.34);
}

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

.btn.text {
  color: #ffffff;
  padding-left: 8px;
  padding-right: 8px;
}

.detail-copy .btn.ghost {
  color: var(--text);
  background: #ffffff;
  border-color: var(--line);
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 70px 24px;
}

.section-soft {
  max-width: none;
  background: var(--bg-soft);
}

.section-soft > * {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.section-rank {
  max-width: none;
  background:
    radial-gradient(circle at 10% 10%, rgba(249, 115, 22, 0.26), transparent 30%),
    linear-gradient(135deg, #111827, #0f172a 70%);
  color: #ffffff;
}

.section-rank > * {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.section-head {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 12px;
  margin-bottom: 34px;
}

.section-head.left {
  justify-items: start;
  text-align: left;
}

.section-head.compact {
  margin-bottom: 24px;
}

.section-head h2,
.page-hero h1,
.detail-copy h1 {
  margin: 0;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.section-head p,
.page-hero p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.section-head.light p,
.section-head.light h2 {
  color: #ffffff;
}

.intro-strip {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 30px;
  align-items: center;
}

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

.quick-links a {
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--bg-soft);
  color: #334155;
  font-weight: 800;
  border: 1px solid var(--line);
}

.quick-links a:hover {
  color: var(--orange);
  border-color: var(--orange-soft);
  background: var(--orange-soft);
}

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(234, 88, 12, 0.35);
}

.poster-wrap {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(249, 115, 22, 0.8), transparent 32%),
    linear-gradient(135deg, #334155, #111827);
}

.poster-wrap img,
.category-cover img,
.rank-thumb img,
.detail-poster img,
.detail-backdrop img,
.video-wrap video,
.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poster-shade {
  position: absolute;
  inset: auto 0 0 0;
  height: 45%;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.7), transparent);
}

.rank-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.movie-info {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.movie-info strong {
  font-size: 18px;
  line-height: 1.25;
}

.movie-info small {
  color: var(--muted);
  font-weight: 700;
}

.movie-info p {
  margin: 0;
  color: #475569;
  font-size: 14px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag-row span {
  border-radius: 999px;
  background: var(--bg-soft);
  color: #64748b;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 800;
}

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

.category-tile {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  padding: 24px;
  border-radius: 24px;
  color: #ffffff;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.28), transparent 30%),
    linear-gradient(135deg, #ea580c, #f59e0b);
  box-shadow: 0 16px 46px rgba(234, 88, 12, 0.18);
}

.category-tile:nth-child(even) {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.2), transparent 30%),
    linear-gradient(135deg, #0f172a, #334155);
}

.category-tile span,
.category-tile strong,
.category-tile em {
  position: relative;
  z-index: 1;
  display: block;
}

.category-tile span {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.category-tile strong {
  margin-top: 10px;
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
}

.category-tile em {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
  font-size: 13px;
}

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

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

.rank-item {
  display: grid;
  grid-template-columns: auto 92px 1fr;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(226, 232, 240, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  transition: transform 0.2s ease, background 0.2s ease;
}

.rank-item:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.14);
}

.rank-number {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  font-weight: 900;
}

.rank-thumb {
  width: 92px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(135deg, #334155, #111827);
}

.rank-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.rank-copy strong {
  font-size: 18px;
  color: #ffffff;
}

.rank-copy em,
.rank-copy small,
.rank-copy span {
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
}

.rank-copy small {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.page-hero {
  min-height: 310px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #ffffff;
  background:
    radial-gradient(circle at 20% 10%, rgba(249, 115, 22, 0.42), transparent 32%),
    linear-gradient(135deg, #111827, #0f172a 65%);
  padding: 70px 24px;
}

.page-hero > div {
  max-width: 820px;
  display: grid;
  justify-items: center;
  gap: 18px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.76);
}

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

.category-card-large {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 28px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 10px 36px rgba(15, 23, 42, 0.06);
}

.category-cover {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  min-height: 190px;
  border-radius: 22px;
  background: linear-gradient(135deg, #334155, #111827);
}

.category-cover img {
  min-height: 190px;
}

.category-card-large h2 {
  margin: 14px 0 8px;
  font-size: 30px;
}

.category-card-large p {
  margin: 0 0 16px;
  color: var(--muted);
}

.inline-link {
  color: var(--orange);
  font-weight: 900;
}

.filter-panel {
  display: grid;
  grid-template-columns: 1fr 180px 180px;
  gap: 14px;
  align-items: end;
  margin-bottom: 28px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--bg-soft);
}

.filter-panel label {
  display: grid;
  gap: 7px;
  color: #475569;
  font-weight: 800;
  font-size: 13px;
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  color: var(--text);
  padding: 0 14px;
  outline: 0;
}

.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(234, 88, 12, 0.12);
}

.detail-hero {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  color: #ffffff;
}

.detail-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  filter: blur(3px);
  transform: scale(1.03);
  background: linear-gradient(135deg, #334155, #111827);
}

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.7)),
    linear-gradient(0deg, rgba(15, 23, 42, 1), transparent 58%);
}

.detail-shell {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 38px 24px 70px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

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

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

.detail-poster {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border-radius: 28px;
  background: linear-gradient(135deg, #334155, #111827);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

.detail-copy {
  display: grid;
  justify-items: start;
  gap: 18px;
}

.detail-copy h1 {
  color: #ffffff;
}

.lead {
  margin: 0;
  max-width: 780px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

.meta-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  margin: 0;
}

.meta-list div {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.meta-list dt {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.meta-list dd {
  margin: 4px 0 0;
  color: #ffffff;
  font-weight: 900;
}

.detail-tags span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.detail-section {
  padding-top: 54px;
  padding-bottom: 20px;
}

.player-card {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.video-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(circle at 20% 20%, rgba(249, 115, 22, 0.22), transparent 35%),
    #050816;
}

.video-wrap video {
  background: #000000;
}

.play-layer {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 12px;
  border: 0;
  color: #ffffff;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.72), rgba(2, 6, 23, 0.12));
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-icon {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  box-shadow: 0 20px 46px rgba(234, 88, 12, 0.35);
  font-size: 30px;
  padding-left: 5px;
}

.play-layer strong {
  font-size: 20px;
}

.player-caption {
  padding: 22px 24px;
}

.player-caption h2 {
  margin: 0 0 8px;
  font-size: 24px;
}

.player-caption p {
  margin: 0;
  color: var(--muted);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.85fr);
  gap: 24px;
}

.content-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.content-card h2 {
  margin: 0 0 18px;
  font-size: 26px;
}

.content-card p {
  margin: 0 0 14px;
  color: #475569;
}

.content-card p:last-child {
  margin-bottom: 0;
}

.side-card {
  background: var(--bg-warm);
}

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

.related-grid .movie-info p,
.related-grid .tag-row {
  display: none;
}

.related-grid .movie-info strong {
  font-size: 15px;
}

.site-footer {
  margin-top: 30px;
  background: #0f172a;
  color: rgba(255, 255, 255, 0.72);
}

.footer-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px 24px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 36px;
}

.footer-brand p {
  max-width: 460px;
  margin: 16px 0 0;
}

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

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

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 24px;
  text-align: center;
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
}

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

  .menu-toggle {
    display: flex;
  }

  .hero,
  .hero-content {
    min-height: 590px;
  }

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

  .compact-list,
  .footer-shell,
  .intro-strip,
  .two-column {
    grid-template-columns: 1fr;
  }

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

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

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

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

@media (max-width: 760px) {
  .nav-shell {
    min-height: 66px;
    padding: 0 16px;
  }

  .brand-text em {
    display: none;
  }

  .hero,
  .hero-content {
    min-height: 560px;
  }

  .hero-content {
    padding: 92px 18px 94px;
  }

  .section {
    padding: 48px 18px;
  }

  .page-hero {
    min-height: 260px;
    padding: 56px 18px;
  }

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

  .category-card-large {
    grid-template-columns: 1fr;
    padding: 18px;
  }

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

  .rank-item {
    grid-template-columns: auto 76px 1fr;
    gap: 12px;
  }

  .rank-thumb {
    width: 76px;
  }

  .detail-shell {
    padding: 28px 18px 48px;
  }

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

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

  .content-card {
    padding: 22px;
  }
}

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

  .mobile-nav {
    grid-template-columns: 1fr;
    padding-left: 16px;
    padding-right: 16px;
  }

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

  .rank-number {
    position: absolute;
  }

  .rank-thumb {
    width: 100%;
    max-height: 260px;
  }

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

.section:not(.section-rank) .rank-item {
  background: #ffffff;
  border-color: var(--line);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.section:not(.section-rank) .rank-item:hover {
  background: var(--bg-soft);
}

.section:not(.section-rank) .rank-copy strong {
  color: var(--text);
}

.section:not(.section-rank) .rank-copy em,
.section:not(.section-rank) .rank-copy small,
.section:not(.section-rank) .rank-copy span {
  color: var(--muted);
}
