:root {
  color-scheme: dark;
  --bg: #020617;
  --bg-soft: #0f172a;
  --panel: #111827;
  --panel-2: #0f172a;
  --line: rgba(30, 64, 175, 0.35);
  --text: #f8fafc;
  --muted: #94a3b8;
  --cyan: #22d3ee;
  --blue: #2563eb;
  --blue-soft: #1d4ed8;
  --rose: #fb7185;
  --orange: #fb923c;
  --green: #34d399;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "PingFang SC",
    "Microsoft YaHei",
    sans-serif;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(
      circle at 20% -10%,
      rgba(34, 211, 238, 0.12),
      transparent 32rem
    ),
    radial-gradient(
      circle at 80% 10%,
      rgba(37, 99, 235, 0.16),
      transparent 36rem
    ),
    linear-gradient(180deg, #020617 0%, #0f172a 42%, #020617 100%);
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(
    90deg,
    rgba(15, 23, 42, 0.96),
    rgba(30, 64, 175, 0.92),
    rgba(15, 23, 42, 0.96)
  );
  border-bottom: 1px solid rgba(96, 165, 250, 0.25);
  box-shadow: 0 12px 34px rgba(2, 6, 23, 0.42);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 64px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, #60a5fa, #22d3ee);
  box-shadow: 0 12px 34px rgba(34, 211, 238, 0.28);
  transform: translateZ(0);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.brand:hover .brand-mark {
  transform: scale(1.08);
  box-shadow: 0 18px 42px rgba(34, 211, 238, 0.42);
}

.brand-text {
  font-size: 1.25rem;
  background: linear-gradient(90deg, #60a5fa, #67e8f9, #60a5fa);
  -webkit-background-clip: text;
  color: transparent;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.desktop-nav a,
.mobile-panel a {
  color: #dbeafe;
  font-weight: 650;
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.mobile-panel a:hover {
  color: var(--cyan);
}

.nav-search {
  display: flex;
  align-items: center;
  gap: 8px;
  width: min(330px, 34vw);
}

.nav-search input,
.mobile-panel input,
.filter-controls input,
.filter-controls select {
  width: 100%;
  color: #e2e8f0;
  background: rgba(2, 6, 23, 0.56);
  border: 1px solid rgba(96, 165, 250, 0.28);
  border-radius: 999px;
  outline: none;
  padding: 10px 14px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.nav-search input:focus,
.mobile-panel input:focus,
.filter-controls input:focus,
.filter-controls select:focus {
  border-color: rgba(34, 211, 238, 0.78);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.12);
  background: rgba(2, 6, 23, 0.78);
}

.nav-search button,
.mobile-panel button,
.filter-controls button,
.primary-button,
.secondary-button {
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 750;
  padding: 10px 18px;
  background: linear-gradient(90deg, #22d3ee, #2563eb);
  box-shadow: 0 12px 34px rgba(37, 99, 235, 0.25);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.nav-search button:hover,
.mobile-panel button:hover,
.filter-controls button:hover,
.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 16px 44px rgba(34, 211, 238, 0.32);
  filter: brightness(1.06);
}

.secondary-button {
  background: rgba(15, 23, 42, 0.78);
  border: 1px solid rgba(34, 211, 238, 0.35);
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 1px solid rgba(96, 165, 250, 0.28);
  border-radius: 12px;
  background: rgba(2, 6, 23, 0.48);
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 4px;
  background: #dbeafe;
}

.mobile-panel {
  display: none;
  padding: 0 16px 18px;
  border-top: 1px solid rgba(96, 165, 250, 0.16);
}

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

.mobile-panel form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.hero {
  position: relative;
  height: 560px;
  overflow: hidden;
  background: #020617;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  transition: opacity 900ms ease;
}

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

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

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      0deg,
      #020617 0%,
      rgba(2, 6, 23, 0.76) 40%,
      rgba(2, 6, 23, 0.18) 100%
    ),
    linear-gradient(90deg, rgba(2, 6, 23, 0.72), rgba(2, 6, 23, 0.16));
}

.hero-content {
  position: absolute;
  left: max(32px, calc((100vw - 1180px) / 2));
  right: 32px;
  bottom: 64px;
  z-index: 2;
  max-width: 780px;
}

.hero-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: max-content;
  margin-bottom: 16px;
  padding: 6px 14px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: linear-gradient(
    90deg,
    rgba(34, 211, 238, 0.96),
    rgba(37, 99, 235, 0.96)
  );
  box-shadow: 0 12px 34px rgba(34, 211, 238, 0.24);
}

.hero h1,
.hero h2 {
  margin: 0 0 16px;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 1.06;
  font-weight: 900;
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.5);
}

.hero p {
  width: min(680px, 100%);
  margin: 0 0 26px;
  color: #dbeafe;
  font-size: clamp(1rem, 2vw, 1.22rem);
}

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

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
  background: rgba(0, 0, 0, 0.48);
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(0, 0, 0, 0.72);
  transform: translateY(-50%) scale(1.06);
}

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

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

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

.hero-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  cursor: pointer;
  transition:
    width 0.22s ease,
    background 0.22s ease;
}

.hero-dots button.is-active {
  width: 34px;
  background: #22d3ee;
}

main {
  position: relative;
}

.page-section {
  padding: 62px 0;
}

.page-section.tight {
  padding-top: 36px;
}

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

.section-title > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-title h1,
.section-title h2 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  line-height: 1.2;
}

.section-title p,
.lead {
  color: var(--muted);
}

.section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(
    135deg,
    rgba(34, 211, 238, 0.95),
    rgba(37, 99, 235, 0.95)
  );
  box-shadow: 0 12px 30px rgba(34, 211, 238, 0.22);
}

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

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

.category-tile {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease;
}

.category-tile:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.46);
}

.category-tile::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -34px;
  width: 130px;
  height: 130px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.category-tile strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.category-tile p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.category-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  border-radius: 16px;
  font-weight: 900;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
}

.gradient-blue {
  background: linear-gradient(135deg, #2563eb, #0f172a);
}

.gradient-cyan {
  background: linear-gradient(135deg, #0891b2, #1d4ed8);
}

.gradient-purple {
  background: linear-gradient(135deg, #7c3aed, #1e1b4b);
}

.gradient-rose {
  background: linear-gradient(135deg, #e11d48, #7f1d1d);
}

.gradient-orange {
  background: linear-gradient(135deg, #f97316, #7c2d12);
}

.gradient-emerald {
  background: linear-gradient(135deg, #059669, #064e3b);
}

.gradient-pink {
  background: linear-gradient(135deg, #db2777, #701a75);
}

.gradient-indigo {
  background: linear-gradient(135deg, #4f46e5, #172554);
}

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

.movie-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(
    145deg,
    rgba(30, 41, 59, 0.96),
    rgba(15, 23, 42, 0.98)
  );
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
  transform: translateZ(0);
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease;
}

.movie-card:hover {
  border-color: rgba(34, 211, 238, 0.5);
  box-shadow: 0 28px 76px rgba(8, 47, 73, 0.34);
  transform: translateY(-7px);
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a, #172554);
}

.movie-card.compact .poster-link {
  aspect-ratio: 16 / 9;
}

.poster-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.42s ease,
    filter 0.42s ease;
}

.movie-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.1) contrast(1.04);
}

.poster-badge,
.poster-year {
  position: absolute;
  z-index: 2;
  top: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  color: #ffffff;
  backdrop-filter: blur(12px);
}

.poster-badge {
  left: 12px;
  background: rgba(34, 211, 238, 0.86);
}

.poster-year {
  right: 12px;
  background: rgba(2, 6, 23, 0.68);
}

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

.movie-card h3 {
  margin: 0 0 9px;
  font-size: 1.08rem;
  line-height: 1.35;
}

.movie-card h3 a {
  display: -webkit-box;
  overflow: hidden;
  min-height: 2.7em;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.2s ease;
}

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

.movie-card p {
  display: -webkit-box;
  overflow: hidden;
  min-height: 3.1em;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.92rem;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
  color: #bfdbfe;
  font-size: 0.82rem;
}

.movie-meta span {
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.16);
}

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

.tag-row span {
  color: #cffafe;
  font-size: 0.76rem;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.12);
  border: 1px solid rgba(34, 211, 238, 0.16);
}

.rank-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(
    145deg,
    rgba(30, 41, 59, 0.96),
    rgba(15, 23, 42, 0.98)
  );
  box-shadow: var(--shadow);
}

.rank-list {
  display: grid;
  gap: 0;
}

.rank-row {
  display: grid;
  grid-template-columns: 46px 120px 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 96px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(96, 165, 250, 0.14);
  transition: background 0.2s ease;
}

.rank-row:last-child {
  border-bottom: 0;
}

.rank-row:hover {
  background: rgba(15, 23, 42, 0.68);
}

.rank-num {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  font-weight: 900;
  background: #334155;
  color: #cbd5e1;
}

.rank-row:nth-child(1) .rank-num {
  background: linear-gradient(135deg, #facc15, #f97316);
  color: #ffffff;
}

.rank-row:nth-child(2) .rank-num {
  background: linear-gradient(135deg, #e5e7eb, #94a3b8);
  color: #1f2937;
}

.rank-row:nth-child(3) .rank-num {
  background: linear-gradient(135deg, #d97706, #92400e);
  color: #ffffff;
}

.rank-row img {
  width: 120px;
  height: 72px;
  object-fit: cover;
  border-radius: 14px;
}

.rank-info h3 {
  margin: 0 0 6px;
  font-size: 1.02rem;
}

.rank-info p {
  margin: 0;
  color: var(--muted);
}

.rank-meta {
  color: #bfdbfe;
  white-space: nowrap;
}

.filter-panel,
.intro-card,
.detail-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(
    145deg,
    rgba(30, 41, 59, 0.78),
    rgba(15, 23, 42, 0.92)
  );
  box-shadow: var(--shadow);
}

.filter-panel {
  margin-bottom: 28px;
  padding: 22px;
}

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

.filter-head h2 {
  margin: 0;
  font-size: 1.3rem;
}

.filter-head p {
  margin: 0;
  color: var(--muted);
}

.filter-controls {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) repeat(3, minmax(130px, 180px)) auto;
  gap: 12px;
}

.filter-controls select {
  appearance: none;
  cursor: pointer;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px auto;
  color: #bfdbfe;
  font-size: 0.92rem;
}

.breadcrumb a {
  color: var(--cyan);
}

.detail-hero {
  padding: 22px 0 58px;
}

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

.player-shell {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #000000;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
}

.player-box {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.player-box video {
  width: 100%;
  height: 100%;
  background: #000000;
}

.player-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
  background:
    linear-gradient(0deg, rgba(2, 6, 23, 0.78), rgba(2, 6, 23, 0.16)),
    var(--player-image);
  background-size: cover;
  background-position: center;
}

.player-cover.is-hidden {
  display: none;
}

.play-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 900;
  padding: 17px 28px;
  background: linear-gradient(90deg, #22d3ee, #2563eb);
  box-shadow: 0 22px 60px rgba(34, 211, 238, 0.34);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.play-button:hover {
  transform: scale(1.06);
  box-shadow: 0 28px 76px rgba(34, 211, 238, 0.46);
}

.play-triangle {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #ffffff;
}

.detail-card {
  padding: 24px;
}

.detail-title {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.12;
}

.detail-lead {
  margin: 0 0 20px;
  color: #dbeafe;
  font-size: 1.08rem;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.detail-meta span {
  padding: 7px 12px;
  border-radius: 999px;
  color: #dbeafe;
  background: rgba(37, 99, 235, 0.18);
  border: 1px solid rgba(96, 165, 250, 0.2);
}

.detail-card h2 {
  margin: 24px 0 10px;
  font-size: 1.28rem;
}

.detail-card p {
  margin: 0 0 14px;
  color: #cbd5e1;
}

.side-poster {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.78);
  box-shadow: var(--shadow);
}

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

.side-poster-body {
  padding: 18px;
}

.side-poster-body h2 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.side-poster-body p {
  margin: 0;
  color: var(--muted);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.category-samples {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.category-samples a {
  color: #dbeafe;
  font-size: 0.94rem;
}

.category-samples a:hover {
  color: var(--cyan);
}

.pagination-spacer {
  height: 8px;
}

.site-footer {
  margin-top: 40px;
  border-top: 1px solid rgba(96, 165, 250, 0.18);
  background: rgba(2, 6, 23, 0.74);
}

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

.footer-brand {
  margin-bottom: 14px;
}

.site-footer p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

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

.footer-links a {
  color: #bfdbfe;
}

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

.footer-bottom {
  padding: 18px 16px;
  color: #94a3b8;
  text-align: center;
  border-top: 1px solid rgba(96, 165, 250, 0.12);
}

[hidden] {
  display: none !important;
}

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

  .mobile-toggle {
    display: block;
  }

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

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

  .side-poster {
    max-width: 460px;
  }

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

  .rank-row {
    grid-template-columns: 42px 96px 1fr;
  }

  .rank-meta {
    display: none;
  }

  .rank-row img {
    width: 96px;
    height: 60px;
  }
}

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

  .hero {
    height: 520px;
  }

  .hero-content {
    left: 20px;
    right: 20px;
    bottom: 58px;
  }

  .hero h1,
  .hero h2 {
    font-size: 2.4rem;
  }

  .hero-arrow {
    width: 40px;
    height: 40px;
  }

  .category-grid,
  .movie-grid,
  .related-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

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

  .movie-card p {
    font-size: 0.86rem;
  }

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

  .filter-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .rank-row {
    grid-template-columns: 34px 82px 1fr;
    gap: 12px;
    padding: 14px;
  }

  .rank-row img {
    width: 82px;
    height: 54px;
  }

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

  .section-title {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .brand-text {
    font-size: 1.05rem;
  }

  .hero {
    height: 500px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .rank-info p {
    display: none;
  }

  .detail-card {
    padding: 18px;
  }
}
