:root {
  color-scheme: dark;
  --bg: #020617;
  --panel: rgba(15, 23, 42, 0.74);
  --panel-strong: rgba(15, 23, 42, 0.94);
  --muted: #94a3b8;
  --soft: #cbd5e1;
  --text: #f8fafc;
  --amber: #f59e0b;
  --amber-soft: rgba(245, 158, 11, 0.18);
  --orange: #ea580c;
  --blue: #3b82f6;
  --green: #22c55e;
  --border: rgba(148, 163, 184, 0.16);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.16), transparent 34rem),
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.14), transparent 34rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, 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%;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  transition: background 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0));
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(15, 23, 42, 0.96);
  border-color: rgba(148, 163, 184, 0.12);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.brand-mark,
.brand-play {
  color: var(--amber);
  filter: drop-shadow(0 0 14px rgba(245, 158, 11, 0.42));
  transition: transform 0.4s ease;
}

.brand:hover .brand-mark {
  transform: rotate(180deg);
}

.brand:hover .brand-play {
  transform: rotate(-180deg);
}

.brand-text {
  font-size: 21px;
  line-height: 1;
  background: linear-gradient(90deg, #fbbf24, #f97316, #60a5fa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  color: #d1d5db;
  font-size: 14px;
  font-weight: 700;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: #fbbf24;
}

.nav-link:hover {
  transform: translateY(-1px);
}

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: rgba(30, 41, 59, 0.8);
  color: #e5e7eb;
  font-size: 21px;
  cursor: pointer;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  transition: opacity 0.8s ease, visibility 0.8s ease, transform 1.2s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.95), rgba(2, 6, 23, 0.55), rgba(2, 6, 23, 0.12)),
    linear-gradient(0deg, var(--bg), rgba(2, 6, 23, 0.18) 42%, rgba(2, 6, 23, 0));
}

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

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

.hero-tags span,
.tag-cloud span {
  display: inline-flex;
  align-items: center;
  padding: 6px 11px;
  border-radius: 999px;
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.32);
  background: rgba(245, 158, 11, 0.16);
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.hero-content h1 {
  max-width: 720px;
  margin: 18px 0 14px;
  font-size: clamp(40px, 6vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero-content p {
  max-width: 690px;
  margin: 0 0 26px;
  color: #d1d5db;
  font-size: 18px;
  line-height: 1.75;
}

.hero-meta,
.detail-meta,
.movie-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
}

.hero-meta span:first-child,
.rating {
  color: #fbbf24;
  font-weight: 900;
}

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

.primary-button,
.ghost-button,
.row-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.primary-button {
  color: white;
  background: linear-gradient(90deg, var(--amber), var(--orange));
  box-shadow: 0 16px 34px rgba(245, 158, 11, 0.24);
}

.primary-button:hover,
.row-action:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 22px 46px rgba(245, 158, 11, 0.34);
}

.ghost-button {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #e5e7eb;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(12px);
}

.ghost-button:hover {
  background: rgba(30, 41, 59, 0.86);
}

.hero-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  color: white;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(0, 0, 0, 0.55);
  transform: translateY(-1px);
}

.hero-prev {
  left: 18px;
}

.hero-next {
  right: 18px;
}

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

.hero-dot {
  width: 17px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.is-active {
  width: 35px;
  background: #f59e0b;
}

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

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

.section-head h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.03em;
}

.section-line {
  height: 4px;
  flex: 1;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(245, 158, 11, 0.5), transparent);
}

.section-more {
  color: #fbbf24;
  font-size: 14px;
  font-weight: 900;
}

.movie-grid {
  display: grid;
  gap: 24px;
}

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

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

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

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

.poster-wrap {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(30, 41, 59, 0.7);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.25);
}

.featured-grid .poster-wrap {
  aspect-ratio: 21 / 9;
  border-radius: 24px;
}

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

.poster-shadow {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), transparent 62%);
  transition: opacity 0.3s ease;
}

.play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: white;
  background: rgba(245, 158, 11, 0.92);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.86);
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 20px 42px rgba(245, 158, 11, 0.34);
}

.duration-badge {
  position: absolute;
  z-index: 4;
  top: 12px;
  right: 12px;
  padding: 5px 9px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.72);
  color: white;
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

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

.movie-card:hover .poster-shadow,
.movie-card:hover .play-badge {
  opacity: 1;
}

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

.movie-card-body {
  padding-top: 12px;
}

.movie-card-body h3 {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.35;
}

.compact-card .movie-card-body h3 {
  font-size: 15px;
}

.movie-card-body h3 a {
  transition: color 0.2s ease;
}

.movie-card:hover h3 a {
  color: #fbbf24;
}

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

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

.category-tile {
  position: relative;
  min-height: 152px;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.category-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.94), rgba(2, 6, 23, 0.35));
  transition: background 0.25s ease;
}

.category-tile:hover::before {
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.88), rgba(245, 158, 11, 0.16));
}

.category-tile span {
  font-size: 21px;
  font-weight: 900;
}

.category-tile em {
  margin-top: 7px;
  color: var(--soft);
  font-size: 13px;
  font-style: normal;
  line-height: 1.6;
}

.horizontal-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 260px;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x proximity;
}

.horizontal-row .movie-card {
  scroll-snap-align: start;
}

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

.mini-card {
  display: grid;
  grid-template-columns: auto 76px 1fr;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.62);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.mini-card:hover {
  transform: translateY(-2px);
  border-color: rgba(245, 158, 11, 0.38);
  background: rgba(30, 41, 59, 0.9);
}

.rank-num {
  min-width: 28px;
  color: #fbbf24;
  font-size: 22px;
  font-weight: 900;
}

.mini-card img {
  width: 76px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
}

.mini-card strong,
.mini-card em {
  display: block;
}

.mini-card strong {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 14px;
}

.mini-card em {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.list-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  padding-top: 86px;
  overflow: hidden;
  background: #020617;
}

.list-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  filter: saturate(1.08);
}

.list-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, var(--bg), rgba(2, 6, 23, 0.28)), linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(2, 6, 23, 0.42));
}

.list-hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 10px;
  color: #fbbf24;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.list-hero h1 {
  max-width: 760px;
  margin: 0 0 12px;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.list-hero p {
  max-width: 720px;
  color: #d1d5db;
  font-size: 17px;
  line-height: 1.8;
}

.search-box {
  max-width: 620px;
  margin-top: 28px;
}

.search-box input {
  width: 100%;
  height: 52px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 999px;
  outline: none;
  padding: 0 22px;
  background: rgba(15, 23, 42, 0.84);
  color: white;
  font-size: 15px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.24);
}

.search-box input:focus {
  border-color: rgba(245, 158, 11, 0.56);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
}

.empty-state {
  display: none;
  padding: 36px;
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--muted);
  text-align: center;
  background: rgba(15, 23, 42, 0.64);
}

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

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

.ranking-row {
  display: grid;
  grid-template-columns: 172px 56px minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.66);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.ranking-poster {
  display: block;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 16 / 9;
}

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

.ranking-index {
  color: #fbbf24;
  font-size: 34px;
  font-weight: 1000;
}

.ranking-info h2 {
  margin: 0 0 8px;
  font-size: 22px;
}

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

.row-action {
  min-width: 92px;
  color: white;
  background: linear-gradient(90deg, var(--amber), var(--orange));
}

.detail-layout {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
}

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

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

.player-panel {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: black;
  box-shadow: var(--shadow);
}

.player-panel video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: black;
  cursor: pointer;
}

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  justify-content: center;
  border: 0;
  color: white;
  cursor: pointer;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3));
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

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

.player-play-icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: white;
  background: rgba(245, 158, 11, 0.94);
  box-shadow: 0 24px 46px rgba(245, 158, 11, 0.32);
  font-size: 30px;
}

.player-overlay strong {
  max-width: min(90%, 620px);
  font-size: 22px;
}

.detail-card,
.detail-sidebar > div {
  margin-top: 22px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.18);
}

.detail-card {
  padding: 28px;
}

.detail-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.detail-title-row h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.score-box {
  min-width: 82px;
  padding: 12px 14px;
  border-radius: 18px;
  color: #fbbf24;
  text-align: center;
  font-size: 20px;
  font-weight: 1000;
  background: rgba(245, 158, 11, 0.14);
  border: 1px solid rgba(245, 158, 11, 0.24);
}

.detail-meta {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.tag-cloud {
  margin: 20px 0 26px;
}

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

.detail-card p {
  margin: 0;
  color: #d1d5db;
  line-height: 1.95;
}

.detail-sidebar {
  position: sticky;
  top: 88px;
  align-self: start;
}

.side-poster {
  overflow: hidden;
}

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

.side-poster div {
  padding: 16px;
}

.side-poster strong,
.side-poster span {
  display: block;
}

.side-poster strong {
  font-size: 18px;
}

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

.side-list {
  padding: 18px;
}

.side-list h2 {
  margin: 0 0 16px;
  font-size: 20px;
}

.side-list .mini-card {
  grid-template-columns: 76px 1fr;
  margin-top: 10px;
  background: rgba(30, 41, 59, 0.56);
}

.side-list .rank-num {
  display: none;
}

.related-section {
  padding-top: 42px;
}

.site-footer {
  margin-top: 56px;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(15, 23, 42, 0.86);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(240px, 0.8fr);
  gap: 42px;
  padding: 42px 0;
}

.footer-main p {
  max-width: 680px;
  color: var(--muted);
  line-height: 1.8;
}

.footer-links h2 {
  margin: 0 0 14px;
  font-size: 18px;
}

.footer-links ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: var(--muted);
  font-size: 14px;
}

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

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0 28px;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 1100px) {
  .four-col {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .six-col,
  .category-grid,
  .ranking-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .detail-sidebar {
    position: static;
  }
}

@media (max-width: 800px) {
  .mobile-menu-button {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 68px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 14px 16px 18px;
    background: rgba(15, 23, 42, 0.98);
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    backdrop-filter: blur(18px);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-link {
    padding: 13px 14px;
    border-radius: 14px;
    background: rgba(30, 41, 59, 0.45);
  }

  .hero-carousel {
    min-height: 620px;
  }

  .hero-content {
    align-items: stretch;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-arrow {
    display: none;
  }

  .featured-grid,
  .four-col,
  .six-col,
  .category-grid,
  .ranking-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .ranking-row {
    grid-template-columns: 110px 40px 1fr;
  }

  .ranking-row .row-action {
    grid-column: 1 / -1;
  }

  .ranking-info h2 {
    font-size: 18px;
  }

  .detail-card {
    padding: 20px;
  }

  .detail-title-row {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .header-inner,
  .content-section,
  .list-hero-content,
  .detail-layout,
  .footer-inner,
  .footer-bottom {
    width: min(100% - 24px, 1180px);
  }

  .brand-text {
    font-size: 18px;
  }

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

  .hero-content p,
  .list-hero p {
    font-size: 15px;
  }

  .horizontal-row {
    grid-auto-columns: 82%;
  }

  .ranking-row {
    grid-template-columns: 92px 1fr;
  }

  .ranking-index {
    position: absolute;
    margin: 10px;
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(2, 6, 23, 0.8);
    font-size: 18px;
  }

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

  .mini-card {
    grid-template-columns: 68px 1fr;
  }

  .rank-num {
    display: none;
  }
}
