:root {
  color-scheme: dark;
  --bg: #020617;
  --bg-soft: #0f172a;
  --panel: #1e293b;
  --panel-2: #0f172a;
  --line: #334155;
  --text: #f8fafc;
  --muted: #94a3b8;
  --dim: #64748b;
  --cyan: #06b6d4;
  --cyan-2: #0891b2;
  --blue: #2563eb;
  --gold: #eab308;
  --shadow: 0 24px 80px rgba(2, 6, 23, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(180deg, #020617 0%, #0f172a 45%, #020617 100%);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

[hidden] {
  display: none !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 23, 42, 0.95);
  border-bottom: 1px solid rgba(51, 65, 85, 0.9);
  box-shadow: 0 14px 40px rgba(2, 6, 23, 0.28);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1280px, calc(100% - 32px));
  height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: white;
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(8, 145, 178, 0.32);
  transition: transform 0.25s ease;
}

.brand:hover .brand-mark {
  transform: scale(1.08) rotate(-3deg);
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 12px;
}

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

.nav-link {
  color: #cbd5e1;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--cyan);
}

.nav-dropdown {
  position: relative;
  padding: 22px 0;
}

.dropdown-panel {
  position: absolute;
  top: 58px;
  left: -18px;
  width: 190px;
  padding: 8px;
  border-radius: 14px;
  background: rgba(30, 41, 59, 0.98);
  border: 1px solid rgba(51, 65, 85, 0.85);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-dropdown:hover .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-panel a {
  display: block;
  padding: 9px 12px;
  border-radius: 10px;
  color: #cbd5e1;
  font-size: 14px;
}

.dropdown-panel a:hover {
  background: rgba(51, 65, 85, 0.9);
  color: var(--cyan);
}

.header-search {
  width: min(310px, 28vw);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 4px;
}

.header-search input,
.mobile-menu input,
.filter-panel input,
.filter-panel select {
  width: 100%;
  border: 1px solid rgba(51, 65, 85, 0.9);
  outline: none;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.9);
  color: var(--text);
  padding: 11px 13px;
}

.header-search input:focus,
.mobile-menu input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
  border-color: rgba(6, 182, 212, 0.9);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.15);
}

.header-search button,
.mobile-menu button {
  border: 0;
  border-radius: 12px;
  background: var(--cyan);
  color: white;
  padding: 11px 16px;
  cursor: pointer;
  font-weight: 700;
}

.mobile-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 28px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 16px 0 20px;
  border-top: 1px solid rgba(51, 65, 85, 0.75);
}

.mobile-menu a {
  display: block;
  padding: 9px 0;
  color: #cbd5e1;
}

.mobile-menu form {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.mobile-cats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 14px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(51, 65, 85, 0.5);
}

body.nav-open .mobile-menu {
  display: block;
}

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

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

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

.hero-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.hero-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #020617 0%, rgba(2, 6, 23, 0.86) 38%, rgba(2, 6, 23, 0.28) 74%, rgba(2, 6, 23, 0.08) 100%),
    linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0) 52%, rgba(2, 6, 23, 0.38) 100%);
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.hero-panel {
  max-width: 690px;
  padding-top: 38px;
}

.pill,
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  background: rgba(6, 182, 212, 0.16);
  color: #22d3ee;
  border: 1px solid rgba(34, 211, 238, 0.28);
  padding: 5px 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero h1,
.hero h2 {
  margin: 18px 0 12px;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.hero p {
  max-width: 620px;
  margin: 0 0 18px;
  color: #cbd5e1;
  font-size: clamp(16px, 2vw, 21px);
}

.hero-movie-name {
  color: #f8fafc !important;
  font-weight: 700;
}

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

.hero-tags span,
.tag-cloud span,
.mini-tags {
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.76);
  border: 1px solid rgba(148, 163, 184, 0.22);
  color: #cbd5e1;
  padding: 5px 10px;
  font-size: 12px;
}

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

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

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

.btn.primary {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: white;
  box-shadow: 0 18px 36px rgba(8, 145, 178, 0.28);
}

.btn.ghost {
  background: rgba(15, 23, 42, 0.58);
  border: 1px solid rgba(148, 163, 184, 0.3);
  color: #e2e8f0;
}

.btn.text {
  color: #67e8f9;
  padding-left: 6px;
  padding-right: 6px;
}

.hero-controls {
  position: absolute;
  z-index: 5;
  right: max(24px, calc((100% - 1280px) / 2));
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-controls button,
.rail-btn {
  border: 0;
  cursor: pointer;
}

.hero-controls > button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.62);
  color: white;
  font-size: 27px;
  backdrop-filter: blur(12px);
}

.hero-controls > button:hover {
  background: rgba(30, 41, 59, 0.92);
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-dot {
  width: 18px;
  height: 5px;
  border-radius: 999px;
  background: #475569;
  padding: 0;
}

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

.section {
  padding: 70px max(16px, calc((100% - 1280px) / 2));
}

.section-gradient {
  background: linear-gradient(180deg, #020617 0%, #0f172a 100%);
}

.section-solid {
  background: #0f172a;
}

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

.section-head h2,
.page-hero h1,
.detail-info h1,
.content-card h2 {
  margin: 8px 0 0;
  color: var(--text);
  line-height: 1.15;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 42px);
}

.section-head a {
  color: #67e8f9;
  font-weight: 700;
}

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

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

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

.movie-card,
.rail-card {
  min-width: 0;
}

.movie-card a,
.rail-card a {
  display: block;
  height: 100%;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(30, 41, 59, 0.92);
  border: 1px solid rgba(51, 65, 85, 0.72);
  box-shadow: 0 14px 36px rgba(2, 6, 23, 0.24);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.movie-card a:hover,
.rail-card a:hover {
  transform: translateY(-5px);
  border-color: rgba(6, 182, 212, 0.85);
  box-shadow: 0 22px 44px rgba(8, 145, 178, 0.16);
}

.thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111827;
}

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

.movie-card a:hover .thumb img,
.rail-card a:hover .thumb img {
  transform: scale(1.09);
}

.cover-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.76), transparent 55%);
}

.rating,
.duration {
  position: absolute;
  z-index: 2;
  border-radius: 9px;
  background: rgba(0, 0, 0, 0.58);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 7px;
  backdrop-filter: blur(8px);
}

.rating {
  top: 10px;
  right: 10px;
  color: #fde68a;
}

.duration {
  bottom: 10px;
  right: 10px;
}

.movie-info {
  display: grid;
  gap: 7px;
  padding: 15px;
}

.movie-info strong {
  color: var(--text);
  font-size: 17px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-card a:hover .movie-info strong,
.rail-card a:hover .movie-info strong {
  color: var(--cyan);
}

.movie-info em {
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
}

.movie-desc {
  color: #94a3b8;
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mini-tags {
  width: fit-content;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rail-wrap {
  position: relative;
}

.movie-rail {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 6px 2px 18px;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.movie-rail::-webkit-scrollbar {
  display: none;
}

.rail-card {
  flex: 0 0 300px;
}

.rail-btn {
  position: absolute;
  top: calc(50% - 28px);
  z-index: 4;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(2, 6, 23, 0.78);
  color: white;
  font-size: 28px;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.rail-wrap:hover .rail-btn {
  opacity: 1;
}

.rail-left {
  left: -12px;
}

.rail-right {
  right: -12px;
}

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

.category-tile,
.category-panel {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  min-height: 168px;
  padding: 22px;
  background: rgba(30, 41, 59, 0.88);
  border: 1px solid rgba(51, 65, 85, 0.78);
  box-shadow: 0 16px 42px rgba(2, 6, 23, 0.25);
}

.category-tile::before,
.category-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.14;
  transition: opacity 0.2s ease;
}

.category-tile:hover::before,
.category-panel:hover::before {
  opacity: 0.25;
}

.tile-1::before { background: linear-gradient(135deg, #06b6d4, #2563eb); }
.tile-2::before { background: linear-gradient(135deg, #10b981, #0d9488); }
.tile-3::before { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.tile-4::before { background: linear-gradient(135deg, #f97316, #dc2626); }
.tile-5::before { background: linear-gradient(135deg, #ec4899, #e11d48); }
.tile-6::before { background: linear-gradient(135deg, #6366f1, #2563eb); }
.tile-7::before { background: linear-gradient(135deg, #22c55e, #059669); }
.tile-8::before { background: linear-gradient(135deg, #f59e0b, #ea580c); }

.category-tile span,
.category-panel span {
  position: relative;
  display: block;
  color: white;
  font-size: 22px;
  font-weight: 900;
}

.category-tile strong,
.category-panel p {
  position: relative;
  display: block;
  margin: 12px 0;
  color: #cbd5e1;
  font-size: 14px;
  font-weight: 500;
}

.category-tile em,
.category-samples a {
  position: relative;
  color: #67e8f9;
  font-style: normal;
  font-size: 13px;
}

.category-main-link {
  display: block;
}

.category-samples {
  position: relative;
  display: grid;
  gap: 6px;
  margin-top: 16px;
}

.category-samples a:hover {
  color: white;
}

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

.ranking-list.full {
  gap: 14px;
}

.ranking-card a {
  display: grid;
  grid-template-columns: 58px 112px 1fr auto;
  gap: 16px;
  align-items: center;
  min-height: 104px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(30, 41, 59, 0.88);
  border: 1px solid rgba(51, 65, 85, 0.74);
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.ranking-card a:hover {
  transform: translateX(4px);
  border-color: rgba(6, 182, 212, 0.72);
  background: rgba(30, 41, 59, 1);
}

.rank-no {
  color: var(--cyan);
  font-size: 26px;
  font-weight: 900;
  text-align: center;
}

.ranking-card img {
  width: 112px;
  height: 70px;
  object-fit: cover;
  border-radius: 12px;
}

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

.rank-body strong {
  color: white;
  font-size: 17px;
}

.rank-body em,
.rank-body span {
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
}

.rank-score {
  color: #fde68a;
  font-weight: 900;
  white-space: nowrap;
}

.page-shell {
  min-height: 62vh;
  background: linear-gradient(180deg, #020617 0%, #0f172a 100%);
}

.page-hero {
  padding: 76px max(16px, calc((100% - 980px) / 2)) 38px;
  text-align: center;
}

.compact-hero h1 {
  font-size: clamp(34px, 5vw, 56px);
}

.compact-hero p {
  max-width: 760px;
  margin: 18px auto 0;
  color: #cbd5e1;
  font-size: 17px;
}

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

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

.filter-row {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 220px 180px;
  gap: 14px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(30, 41, 59, 0.72);
  border: 1px solid rgba(51, 65, 85, 0.72);
}

.filter-empty {
  margin: 18px 0 0;
  color: #fca5a5;
  text-align: center;
}

.detail-shell {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 36px 0 20px;
}

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

.breadcrumb a {
  color: #67e8f9;
}

.breadcrumb a::after {
  content: "/";
  color: #475569;
  margin-left: 8px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(330px, 0.9fr);
  gap: 28px;
  align-items: stretch;
}

.player-panel,
.detail-info,
.content-card {
  border-radius: 22px;
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(51, 65, 85, 0.75);
  box-shadow: var(--shadow);
}

.video-shell {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #000;
  aspect-ratio: 16 / 9;
}

.movie-video {
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  object-fit: contain;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 12px;
  border: 0;
  color: white;
  cursor: pointer;
  background: radial-gradient(circle, rgba(15, 23, 42, 0.18) 0%, rgba(2, 6, 23, 0.62) 70%);
}

.play-bubble {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  padding-left: 5px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 18px 42px rgba(6, 182, 212, 0.38);
  font-size: 30px;
}

.player-overlay strong {
  margin-top: 92px;
  position: absolute;
  font-size: 18px;
}

.detail-info {
  padding: 28px;
}

.detail-info h1 {
  font-size: clamp(30px, 4vw, 48px);
  margin-top: 14px;
}

.detail-info > p {
  color: #cbd5e1;
  font-size: 17px;
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0;
}

.meta-grid span {
  display: grid;
  gap: 4px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(51, 65, 85, 0.65);
  padding: 12px;
  color: var(--text);
}

.meta-grid b {
  color: var(--muted);
  font-size: 12px;
}

.detail-content {
  display: grid;
  gap: 24px;
}

.content-card {
  padding: clamp(22px, 3vw, 34px);
}

.content-card h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 18px;
}

.content-card p {
  margin: 0 0 14px;
  color: #cbd5e1;
  font-size: 16px;
}

.related-head {
  margin-top: 16px;
  margin-bottom: 4px;
}

.site-footer {
  background: #020617;
  border-top: 1px solid rgba(51, 65, 85, 0.85);
}

.footer-inner {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0;
  display: grid;
  grid-template-columns: minmax(0, 2fr) 1fr 1fr;
  gap: 38px;
}

.footer-brand p {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--muted);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-column h3 {
  margin: 0 0 8px;
  color: #cbd5e1;
}

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

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

.footer-bottom {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 28px;
  border-top: 1px solid rgba(51, 65, 85, 0.58);
  color: var(--dim);
  font-size: 13px;
  text-align: center;
}

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

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

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

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

  .mobile-toggle {
    display: block;
  }

  .header-inner {
    height: 64px;
  }

  .brand-copy strong {
    font-size: 18px;
  }

  .hero {
    min-height: 620px;
    height: 78vh;
  }

  .hero-wash {
    background:
      linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.72) 58%, rgba(2, 6, 23, 0.32) 100%),
      linear-gradient(90deg, rgba(2, 6, 23, 0.95), rgba(2, 6, 23, 0.45));
  }

  .hero-content {
    align-items: end;
    padding-bottom: 96px;
  }

  .hero h1,
  .hero h2 {
    font-size: clamp(34px, 11vw, 50px);
  }

  .hero-controls {
    left: 16px;
    right: auto;
    bottom: 24px;
  }

  .section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

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

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

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

  .ranking-card a {
    grid-template-columns: 44px 90px 1fr;
  }

  .rank-score {
    grid-column: 3;
    justify-self: start;
  }

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

@media (max-width: 540px) {
  .header-inner,
  .mobile-menu,
  .detail-shell,
  .footer-inner,
  .footer-bottom {
    width: min(100% - 24px, 1280px);
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-copy small {
    display: none;
  }

  .hero-content {
    width: min(100% - 24px, 1280px);
  }

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

  .btn {
    width: 100%;
  }

  .movie-grid.cols-4,
  .movie-grid.cols-3,
  .category-grid,
  .category-panel-grid {
    grid-template-columns: 1fr;
  }

  .rail-card {
    flex-basis: 82vw;
  }

  .ranking-card a {
    grid-template-columns: 38px 82px 1fr;
    gap: 10px;
  }

  .ranking-card img {
    width: 82px;
    height: 56px;
  }

  .rank-body span {
    display: none;
  }

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

  .player-overlay strong {
    margin-top: 82px;
  }
}
