* {
  box-sizing: border-box;
}

:root {
  color-scheme: dark;
  --bg: #0f172a;
  --bg-soft: #111c31;
  --card: rgba(30, 41, 59, 0.62);
  --card-strong: rgba(30, 41, 59, 0.92);
  --line: rgba(245, 158, 11, 0.14);
  --line-strong: rgba(245, 158, 11, 0.34);
  --text: #f8fafc;
  --muted: #94a3b8;
  --muted-strong: #cbd5e1;
  --gold: #f59e0b;
  --gold-dark: #d97706;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.32);
  --radius: 18px;
}

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(--text);
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.16), transparent 34rem),
    radial-gradient(circle at top right, rgba(14, 165, 233, 0.12), transparent 32rem),
    var(--bg);
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 70%);
  z-index: -1;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(245, 158, 11, 0.12);
  background: rgba(15, 23, 42, 0.78);
  backdrop-filter: blur(18px);
}

.nav-shell,
.footer-shell,
.main-shell,
.page-shell {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
}

.nav-shell {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.logo-mark {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  color: #111827;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  box-shadow: 0 12px 28px rgba(245, 158, 11, 0.32);
}

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

.desktop-nav a,
.mobile-nav a {
  color: var(--muted-strong);
  padding: 9px 14px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active,
.mobile-nav a:hover,
.mobile-nav a.is-active {
  color: var(--gold);
  background: rgba(245, 158, 11, 0.13);
}

.header-search,
.mobile-search {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
  padding: 5px;
  background: rgba(15, 23, 42, 0.62);
}

.header-search input,
.mobile-search input,
.filter-panel input,
.filter-panel select {
  min-width: 0;
  color: #fff;
  border: 0;
  outline: 0;
  background: transparent;
}

.header-search input {
  width: 210px;
  padding: 8px 10px;
}

.header-search button,
.mobile-search button,
.primary-btn,
.ghost-btn {
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

.header-search button,
.mobile-search button,
.primary-btn {
  color: #111827;
  background: var(--gold);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-search button,
.mobile-search button {
  padding: 8px 14px;
}

.header-search button:hover,
.mobile-search button:hover,
.primary-btn:hover {
  background: #fbbf24;
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.26);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 12px;
  background: rgba(30, 41, 59, 0.78);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #e2e8f0;
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto 16px;
  padding: 12px;
  border: 1px solid rgba(245, 158, 11, 0.12);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.92);
}

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

.hero {
  position: relative;
  height: 76vh;
  min-height: 580px;
  overflow: hidden;
  border-bottom: 1px solid rgba(245, 158, 11, 0.12);
}

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

.hero-slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

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

.hero-bg {
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.02);
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.94) 0%, rgba(15, 23, 42, 0.64) 42%, rgba(15, 23, 42, 0.16) 100%),
    linear-gradient(0deg, #0f172a 0%, rgba(15, 23, 42, 0.38) 48%, rgba(15, 23, 42, 0.14) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1280px, calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 1280px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  padding: 9px 15px;
  color: var(--gold);
  font-weight: 700;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.14);
  backdrop-filter: blur(12px);
}

.hero h1,
.hero h2 {
  max-width: 760px;
  margin: 0 0 18px;
  font-size: clamp(2.5rem, 7vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  text-shadow: 0 22px 60px rgba(0, 0, 0, 0.52);
}

.hero p {
  max-width: 660px;
  margin: 0 0 24px;
  color: #dbe3ef;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.9;
}

.hero-tags,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 11px;
  color: var(--muted-strong);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
  background: rgba(30, 41, 59, 0.62);
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.primary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
}

.ghost-btn {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(12px);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.ghost-btn:hover {
  border-color: var(--line-strong);
  background: rgba(245, 158, 11, 0.12);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 46px;
  height: 46px;
  color: #fff;
  font-size: 38px;
  line-height: 1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.36);
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
}

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

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

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

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

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

.main-shell,
.page-shell {
  padding: 52px 0;
}

.content-section,
.rank-section,
.feature-band,
.detail-card,
.side-card,
.category-card,
.filter-panel,
.page-hero {
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.content-section,
.rank-section {
  margin-bottom: 56px;
  padding: 28px;
  border-radius: 24px;
}

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

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

.section-heading h2,
.page-hero h1,
.detail-card h1,
.side-card h2 {
  margin: 0;
}

.section-heading h2 {
  font-size: clamp(1.5rem, 2vw, 2.1rem);
}

.section-icon {
  display: inline-grid;
  place-items: center;
  min-width: 38px;
  height: 38px;
  color: var(--gold);
  border-radius: 12px;
  background: rgba(245, 158, 11, 0.12);
}

.section-link {
  color: var(--gold);
  font-weight: 700;
}

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

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(245, 158, 11, 0.10);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.56);
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  background: rgba(30, 41, 59, 0.82);
}

.card-cover {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #020617;
}

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

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

.card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.02));
  opacity: 0.72;
}

.play-badge,
.big-play {
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: #111827;
  background: var(--gold);
  box-shadow: 0 14px 34px rgba(245, 158, 11, 0.34);
}

.play-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  width: 42px;
  height: 42px;
}

.card-year {
  position: absolute;
  right: 12px;
  bottom: 14px;
  padding: 4px 9px;
  color: #e5e7eb;
  font-size: 0.78rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.64);
}

.card-body {
  padding: 18px;
}

.card-meta,
.detail-pills,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.card-meta {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.86rem;
}

.card-meta a,
.detail-pills a {
  color: var(--gold);
}

.card-title {
  margin: 0 0 10px;
  font-size: 1.08rem;
  line-height: 1.35;
}

.card-title a {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.card-title a:hover {
  color: var(--gold);
}

.movie-card p,
.category-card p,
.page-hero p,
.feature-text p,
.detail-card p,
.site-footer p {
  color: var(--muted-strong);
  line-height: 1.75;
}

.movie-card p {
  display: -webkit-box;
  min-height: 3.5em;
  overflow: hidden;
  margin: 0 0 14px;
  color: var(--muted);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.tag-row span {
  min-height: 24px;
  padding: 3px 9px;
  font-size: 0.78rem;
}

.feature-band {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: center;
  margin-bottom: 56px;
  padding: 34px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(245, 158, 11, 0.13), rgba(249, 115, 22, 0.10)),
    var(--card);
}

.feature-text span,
.page-hero span {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-text h2 {
  margin: 10px 0 16px;
  font-size: clamp(1.8rem, 3vw, 3.4rem);
  line-height: 1.06;
}

.feature-text p {
  margin: 0 0 24px;
}

.feature-poster {
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line-strong);
}

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

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

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

.compact-card {
  position: relative;
  display: flex;
  gap: 14px;
  align-items: center;
  min-height: 92px;
  padding: 10px 48px 10px 10px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.58);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.compact-card:hover {
  transform: translateX(4px);
  border-color: var(--line-strong);
  background: rgba(30, 41, 59, 0.78);
}

.compact-cover {
  width: 92px;
  height: 68px;
  flex: 0 0 92px;
  overflow: hidden;
  border-radius: 12px;
  background: #020617;
}

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

.compact-info {
  min-width: 0;
}

.compact-info strong,
.compact-info em {
  display: block;
}

.compact-info strong {
  overflow: hidden;
  color: #f8fafc;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.compact-info em {
  margin-top: 5px;
  color: var(--muted);
  font-style: normal;
  font-size: 0.9rem;
}

.rank-num {
  position: absolute;
  right: 14px;
  top: 50%;
  color: rgba(245, 158, 11, 0.7);
  font-size: 1.3rem;
  font-weight: 900;
  transform: translateY(-50%);
}

.page-hero {
  margin-bottom: 28px;
  padding: 38px;
  border-radius: 28px;
}

.compact-hero {
  background:
    linear-gradient(135deg, rgba(245, 158, 11, 0.12), rgba(59, 130, 246, 0.08)),
    rgba(30, 41, 59, 0.62);
}

.page-hero h1 {
  margin-top: 10px;
  font-size: clamp(2rem, 4vw, 4.4rem);
  letter-spacing: -0.04em;
}

.page-hero p {
  max-width: 780px;
  margin: 14px 0 0;
}

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

.category-card {
  min-height: 260px;
  padding: 24px;
  border-radius: 22px;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
}

.category-title {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 800;
}

.category-title strong {
  color: var(--gold);
  font-size: 0.95rem;
}

.category-card p {
  margin: 16px 0;
}

.category-samples {
  display: grid;
  gap: 8px;
}

.category-samples a {
  overflow: hidden;
  color: var(--muted-strong);
  white-space: nowrap;
  text-overflow: ellipsis;
}

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

.filter-panel {
  display: grid;
  grid-template-columns: 1fr 180px 160px;
  gap: 12px;
  margin-bottom: 24px;
  padding: 14px;
  border-radius: 18px;
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.68);
}

.filter-panel option {
  color: #111827;
}

.empty-state {
  margin: 28px 0;
  padding: 28px;
  color: var(--muted-strong);
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(30, 41, 59, 0.5);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.96rem;
}

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

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

.detail-main {
  display: grid;
  gap: 22px;
}

.player-box {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(245, 158, 11, 0.18);
  border-radius: 24px;
  background: #000;
  box-shadow: var(--shadow);
}

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

.movie-video {
  object-fit: contain;
}

.player-overlay {
  z-index: 3;
  padding: 0;
  border: 0;
  color: #111827;
  cursor: pointer;
  background: #000;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

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

.player-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.08));
}

.player-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.big-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  width: 78px;
  height: 78px;
  font-size: 28px;
  transform: translate(-50%, -50%);
}

.detail-card,
.side-card {
  padding: 26px;
  border-radius: 22px;
}

.detail-pills a,
.detail-pills span {
  display: inline-flex;
  padding: 6px 11px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.54);
}

.detail-card h1 {
  margin-top: 18px;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  line-height: 1.18;
}

.detail-meta {
  margin: 16px 0 26px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.detail-card section + section {
  margin-top: 26px;
}

.detail-card h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 1.25rem;
}

.detail-card p {
  margin: 0;
  white-space: pre-line;
}

.lead-text {
  color: #f8fafc !important;
  font-weight: 700;
}

.review-box {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.48);
}

.detail-side {
  position: sticky;
  top: 96px;
}

.detail-tags span {
  font-size: 0.88rem;
}

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

.rank-aside {
  position: sticky;
  top: 96px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.rank-aside h2 {
  margin: 0 0 18px;
}

.site-footer {
  margin-top: 40px;
  border-top: 1px solid var(--line);
  background: rgba(2, 6, 23, 0.5);
}

.footer-shell {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  padding: 34px 0;
}

.footer-logo {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.footer-shell p {
  max-width: 540px;
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  max-width: 520px;
}

.footer-links a {
  color: var(--muted-strong);
  padding: 7px 11px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 999px;
}

.footer-links a:hover {
  color: var(--gold);
  border-color: var(--line-strong);
}

[hidden] {
  display: none !important;
}

@media (max-width: 1100px) {
  .header-search {
    display: none;
  }

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

  .feature-band,
  .detail-grid,
  .rank-layout {
    grid-template-columns: 1fr;
  }

  .detail-side,
  .rank-aside {
    position: static;
  }
}

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

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

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

  .hero-content {
    padding-top: 40px;
  }

  .hero-arrow {
    display: none;
  }

  .content-section,
  .rank-section,
  .feature-band,
  .page-hero,
  .detail-card,
  .side-card {
    padding: 22px;
  }

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

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

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

  .footer-shell {
    display: grid;
  }

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

@media (max-width: 560px) {
  .nav-shell,
  .footer-shell,
  .main-shell,
  .page-shell,
  .hero-content,
  .mobile-nav {
    width: min(100% - 22px, 1280px);
  }

  .site-logo span:last-child {
    max-width: 8em;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .hero h1,
  .hero h2 {
    font-size: clamp(2.2rem, 12vw, 3.4rem);
  }

  .hero-tags span:nth-child(n+4) {
    display: none;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

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

  .feature-band {
    gap: 22px;
  }

  .compact-card {
    padding-right: 10px;
  }

  .rank-num {
    display: none;
  }
}
