:root {
  --brand-red: #e11d48;
  --brand-red-deep: #be123c;
  --brand-orange: #f97316;
  --brand-yellow: #fde047;
  --ink: #111827;
  --muted: #6b7280;
  --soft: #f9fafb;
  --line: #e5e7eb;
  --panel: #ffffff;
  --night: #111827;
  --night-soft: #1f2937;
  --shadow-sm: 0 8px 20px rgba(17, 24, 39, 0.08);
  --shadow-md: 0 18px 38px rgba(17, 24, 39, 0.12);
  --shadow-lg: 0 28px 70px rgba(17, 24, 39, 0.2);
  --radius: 18px;
  --radius-lg: 26px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
select {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
  backdrop-filter: blur(16px);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}

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

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 24px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.logo-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  font-weight: 800;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-orange));
  box-shadow: 0 12px 24px rgba(225, 29, 72, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.site-logo:hover .logo-mark {
  transform: scale(1.05) rotate(-2deg);
  box-shadow: 0 16px 30px rgba(225, 29, 72, 0.34);
}

.logo-text {
  font-size: 21px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-orange));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #374151;
  font-weight: 650;
}

.nav-links a,
.mobile-panel a {
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

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

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

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #4b5563;
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--line);
  background: #fff;
}

.mobile-panel.is-open {
  display: block;
}

.mobile-panel-inner {
  display: grid;
  gap: 8px;
  padding: 12px 0 16px;
}

.mobile-panel a {
  display: block;
  padding: 11px 13px;
  border-radius: 12px;
  color: #374151;
  font-weight: 650;
}

.mobile-panel a:hover {
  color: var(--brand-red);
  background: #fff1f2;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  color: #fff;
  background:
    radial-gradient(circle at 18% 22%, rgba(253, 224, 71, 0.28), transparent 26%),
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.16), transparent 24%),
    linear-gradient(135deg, #e11d48 0%, #f97316 50%, #b91c1c 100%);
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 24, 39, 0.26), rgba(17, 24, 39, 0.06));
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.88fr);
  gap: 40px;
  align-items: center;
  min-height: 560px;
  padding: 58px 0 52px;
}

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

.hero-badge,
.page-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(12px);
}

.hero-title {
  margin: 22px 0 18px;
  font-size: clamp(38px, 6vw, 66px);
  line-height: 1.05;
  letter-spacing: -0.045em;
  font-weight: 900;
}

.hero-title span {
  background: linear-gradient(135deg, #fef08a, #fdba74);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-desc {
  max-width: 640px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1.75;
}

.hero-actions,
.card-actions,
.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 14px;
  font-weight: 800;
  border: 1px solid transparent;
  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 {
  background: linear-gradient(135deg, var(--brand-red), var(--brand-orange));
  color: #fff;
  box-shadow: 0 14px 30px rgba(225, 29, 72, 0.24);
}

.btn-light {
  background: #fff;
  color: var(--brand-red);
  box-shadow: 0 14px 28px rgba(17, 24, 39, 0.16);
}

.btn-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(10px);
}

.btn-line {
  color: var(--brand-red);
  background: #fff;
  border-color: #fecdd3;
}

.hero-carousel {
  position: relative;
  min-height: 458px;
}

.hero-slide {
  display: none;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
}

.hero-slide.is-active {
  display: grid;
  grid-template-columns: minmax(170px, 0.65fr) minmax(0, 1fr);
  animation: heroFade 0.45s ease both;
}

.hero-poster {
  position: relative;
  min-height: 440px;
  background: rgba(17, 24, 39, 0.28);
}

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

.hero-poster:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(17, 24, 39, 0.58));
}

.hero-movie-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 28px;
}

.hero-movie-info h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.18;
}

.hero-movie-info p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.7;
}

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

.hero-tags span,
.tag-list span,
.meta-row span,
.card-meta span,
.rank-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 750;
}

.hero-tags span {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
}

.carousel-controls {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: flex;
  gap: 8px;
  z-index: 3;
}

.carousel-btn {
  width: 38px;
  height: 38px;
  border: 0;
  color: #fff;
  border-radius: 12px;
  background: rgba(17, 24, 39, 0.34);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.carousel-btn:hover {
  background: rgba(17, 24, 39, 0.56);
  transform: translateY(-1px);
}

.carousel-dots {
  display: flex;
  gap: 8px;
  margin-top: 18px;
  justify-content: center;
}

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

.carousel-dot.is-active {
  width: 28px;
  background: #fff;
}

.section {
  padding: 58px 0;
}

.section.compact {
  padding: 38px 0;
}

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

.section.gray {
  background: #f9fafb;
}

.section.dark {
  color: #fff;
  background: linear-gradient(135deg, #111827, #1f2937);
}

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

.section-kicker {
  margin: 0 0 6px;
  color: var(--brand-red);
  font-weight: 850;
  letter-spacing: 0.08em;
  font-size: 13px;
}

.section h2,
.page-title,
.detail-title {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
  letter-spacing: -0.025em;
}

.section.dark h2,
.section.dark .section-kicker {
  color: #fff;
}

.section-subtitle,
.page-subtitle {
  margin: 7px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.section.dark .section-subtitle {
  color: #d1d5db;
}

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

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

.movie-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.movie-cover {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, #fee2e2, #ffedd5);
}

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

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

.movie-cover:after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(180deg, transparent, rgba(17, 24, 39, 0.76));
}

.movie-year {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  padding: 5px 8px;
  color: #fff;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.68);
  font-size: 12px;
  font-weight: 800;
}

.movie-play {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-orange));
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.24);
}

.movie-body {
  padding: 14px;
}

.movie-title {
  display: -webkit-box;
  min-height: 44px;
  margin: 0 0 8px;
  overflow: hidden;
  color: #111827;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 850;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-desc {
  display: -webkit-box;
  min-height: 40px;
  margin: 8px 0 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-meta span {
  color: #9f1239;
  background: #fff1f2;
}

.section.dark .movie-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.section.dark .movie-title {
  color: #fff;
}

.section.dark .movie-desc {
  color: #d1d5db;
}

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

.category-card {
  display: flex;
  flex-direction: column;
  min-height: 210px;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(229, 231, 235, 0.88);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: #fecdd3;
}

.category-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  place-items: center;
  color: #fff;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-orange));
  font-weight: 900;
}

.category-card h2,
.category-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.category-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.category-card .enter {
  margin-top: auto;
  padding-top: 20px;
  color: var(--brand-red);
  font-weight: 850;
}

.page-hero {
  color: #fff;
  background:
    radial-gradient(circle at 12% 20%, rgba(253, 224, 71, 0.22), transparent 28%),
    linear-gradient(135deg, #111827, #b91c1c 48%, #f97316);
}

.page-hero-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 62px 0 58px;
}

.page-title {
  margin-top: 16px;
  font-size: clamp(34px, 5vw, 58px);
  color: #fff;
}

.page-subtitle {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

.search-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  margin: 0 0 24px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.search-panel input {
  width: 100%;
  min-height: 48px;
  padding: 0 15px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  outline: 0;
  color: #111827;
  background: #f9fafb;
}

.search-panel input:focus {
  border-color: #fb7185;
  box-shadow: 0 0 0 4px rgba(251, 113, 133, 0.14);
}

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

.filter-chip {
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid #fecdd3;
  border-radius: 999px;
  color: #9f1239;
  background: #fff1f2;
  cursor: pointer;
  font-weight: 750;
}

.filter-chip.is-active,
.filter-chip:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-orange));
  border-color: transparent;
}

.empty-state {
  display: none;
  padding: 28px;
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
  background: #fff;
  border: 1px dashed #fecdd3;
}

.empty-state.is-visible {
  display: block;
}

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

.rank-card {
  display: grid;
  grid-template-columns: 70px 92px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

.rank-number {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: #fff;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-orange));
  font-weight: 900;
  font-size: 20px;
}

.rank-cover {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  background: #fee2e2;
}

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

.rank-card h2,
.rank-card h3 {
  margin: 0 0 8px;
  font-size: 21px;
}

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

.rank-meta span,
.tag-list span,
.meta-row span {
  color: #9f1239;
  background: #fff1f2;
}

.detail-wrap {
  padding: 42px 0 64px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a {
  color: #9f1239;
  font-weight: 750;
}

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

.detail-main,
.detail-side,
.content-panel {
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.detail-main {
  overflow: hidden;
}

.player-shell {
  position: relative;
  overflow: hidden;
  background: #030712;
  aspect-ratio: 16 / 9;
}

.player-shell video {
  display: block;
  width: 100%;
  height: 100%;
  background: #030712;
}

.play-layer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: linear-gradient(180deg, rgba(3, 7, 18, 0.05), rgba(3, 7, 18, 0.58));
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.play-layer img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

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

.play-trigger {
  position: relative;
  z-index: 2;
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-orange));
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.32);
  cursor: pointer;
}

.play-trigger span {
  margin-left: 5px;
  font-size: 36px;
  line-height: 1;
}

.detail-content {
  padding: 28px;
}

.detail-title {
  font-size: clamp(30px, 4vw, 46px);
}

.detail-intro {
  color: #4b5563;
  font-size: 17px;
  line-height: 1.8;
}

.detail-section {
  padding-top: 22px;
  margin-top: 22px;
  border-top: 1px solid var(--line);
}

.detail-section h2 {
  margin: 0 0 12px;
  font-size: 22px;
}

.detail-section p {
  margin: 0;
  color: #374151;
  line-height: 1.9;
  white-space: pre-line;
}

.detail-side {
  position: sticky;
  top: 92px;
  padding: 20px;
}

.side-title {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 900;
}

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

.side-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  padding: 8px;
  border-radius: 14px;
  transition: background 0.2s ease;
}

.side-item:hover {
  background: #fff1f2;
}

.side-cover {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  background: #fee2e2;
}

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

.side-info strong {
  display: -webkit-box;
  overflow: hidden;
  color: #111827;
  line-height: 1.45;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.side-info span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  color: #d1d5db;
  background: linear-gradient(135deg, #111827, #1f2937 58%, #111827);
}

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

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: #fff;
  font-weight: 900;
  font-size: 20px;
}

.footer-logo .logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
}

.footer-grid p {
  margin: 0;
  color: #9ca3af;
  line-height: 1.75;
}

.footer-grid h2,
.footer-grid h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 16px;
}

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

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

.footer-bottom {
  padding: 18px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #9ca3af;
  font-size: 14px;
}

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

@media (max-width: 1060px) {
  .hero-grid,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .detail-side {
    position: static;
  }

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

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

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

  .mobile-toggle {
    display: inline-flex;
  }

  .hero,
  .hero-grid {
    min-height: auto;
  }

  .hero-grid {
    padding: 42px 0;
  }

  .hero-slide.is-active {
    grid-template-columns: 1fr;
  }

  .hero-poster {
    min-height: 320px;
  }

  .hero-movie-info {
    padding: 22px;
  }

  .section-head,
  .search-panel,
  .rank-card {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .section-head {
    display: grid;
  }

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

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

  .rank-card {
    gap: 12px;
  }

  .rank-cover {
    width: 112px;
  }

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