:root {
  color-scheme: light;
  --bg: #fff7ed;
  --surface: #ffffff;
  --surface-soft: #fffaf0;
  --text: #1f2937;
  --muted: #6b7280;
  --line: #f1e2cd;
  --brand: #f97316;
  --brand-dark: #ea580c;
  --brand-soft: #ffedd5;
  --gold: #fbbf24;
  --blue: #0ea5e9;
  --shadow: 0 24px 60px rgba(124, 45, 18, 0.14);
  --shadow-soft: 0 16px 35px rgba(124, 45, 18, 0.1);
  --radius: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(249, 115, 22, 0.13), transparent 32rem),
    linear-gradient(180deg, #fff7ed 0%, #ffffff 38%, #f8fafc 100%);
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(251, 146, 60, 0.18);
}

.site-header__inner {
  width: min(var(--container), calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.site-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.site-logo__mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #ffffff;
  border-radius: 14px;
  background: linear-gradient(135deg, #f97316, #fbbf24);
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.35);
}

.site-logo__text,
.footer-logo {
  font-size: 24px;
  background: linear-gradient(135deg, #ea580c, #b45309);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #374151;
  font-weight: 700;
}

.site-nav a {
  padding: 10px 2px;
  position: relative;
  transition: color 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f97316, #fbbf24);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-nav a:hover {
  color: var(--brand-dark);
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.site-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: var(--brand-soft);
  color: var(--brand-dark);
}

.site-menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: currentColor;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.22), transparent 18rem),
    linear-gradient(135deg, #f97316 0%, #f59e0b 45%, #facc15 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg, rgba(255, 255, 255, 0.08) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255, 255, 255, 0.08) 25%, transparent 25%);
  background-size: 54px 54px;
  opacity: 0.5;
}

.hero__inner {
  position: relative;
  z-index: 1;
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.76fr);
  gap: 42px;
  align-items: center;
  padding: 72px 0;
}

.hero-slider {
  position: relative;
  min-height: 390px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  gap: 22px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 800;
  color: #fff7ed;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.section-kicker {
  color: var(--brand-dark);
  background: var(--brand-soft);
}

.hero h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(42px, 8vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.hero-slide h2 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.hero-slide p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.85;
}

.hero-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: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn--light {
  color: var(--brand-dark);
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(124, 45, 18, 0.2);
}

.btn--ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.16);
}

.btn--brand {
  color: #ffffff;
  background: linear-gradient(135deg, #f97316, #f59e0b);
  box-shadow: 0 14px 28px rgba(249, 115, 22, 0.25);
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.hero-poster {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(420px, 100%);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 36px 80px rgba(124, 45, 18, 0.42);
  background: rgba(255, 255, 255, 0.22);
  transform: rotate(3deg);
}

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

.hero-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(0, 0, 0, 0.64) 100%);
}

.hero-poster__caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
}

.hero-poster__caption strong {
  display: block;
  font-size: 26px;
}

.hero-poster__caption span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
}

.hero-stack {
  position: absolute;
  left: 0;
  bottom: 38px;
  width: 260px;
  display: grid;
  gap: 14px;
}

.hero-stack a {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 20px;
  color: #111827;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease;
}

.hero-stack a:hover {
  transform: translateX(6px);
}

.hero-stack img {
  width: 58px;
  height: 74px;
  object-fit: cover;
  border-radius: 14px;
}

.hero-stack strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-stack span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.hero-dots {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.hero-dots button {
  width: 36px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
}

.hero-dots button.is-active {
  background: #ffffff;
}

.search-panel {
  margin-top: -44px;
  position: relative;
  z-index: 3;
}

.search-panel__inner,
.page-filter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(251, 146, 60, 0.18);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.search-input {
  width: 100%;
  height: 54px;
  border: 1px solid #fed7aa;
  border-radius: 999px;
  padding: 0 22px;
  color: var(--text);
  background: #fff7ed;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-chip {
  min-height: 40px;
  padding: 0 15px;
  border: 0;
  border-radius: 999px;
  color: #7c2d12;
  background: #ffedd5;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.filter-chip:hover,
.filter-chip.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, #f97316, #f59e0b);
  transform: translateY(-1px);
}

.section {
  padding: 76px 0;
}

.section--soft {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

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

.section-head h2,
.page-hero h1,
.detail-title h1 {
  margin: 10px 0 0;
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.section-head p,
.page-hero p {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(251, 146, 60, 0.14);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fffaf0 100%);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.movie-card__poster {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, #fed7aa, #fde68a);
}

.grid--featured .movie-card__poster {
  aspect-ratio: 16 / 10;
}

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

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

.movie-card__poster::after {
  content: "";
  position: absolute;
  inset: 40% 0 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.62));
}

.movie-card__type,
.rank-badge {
  position: absolute;
  z-index: 1;
  top: 12px;
  right: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(249, 115, 22, 0.94);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.rank-badge {
  left: 12px;
  right: auto;
  background: rgba(15, 23, 42, 0.76);
}

.movie-card__body {
  padding: 18px;
}

.movie-card__title {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 18px;
  font-weight: 900;
  transition: color 0.2s ease;
}

.movie-card__title:hover {
  color: var(--brand-dark);
}

.movie-card__meta {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.movie-card__desc {
  display: -webkit-box;
  min-height: 46px;
  margin: 12px 0 0;
  overflow: hidden;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.movie-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.movie-card__tags span,
.detail-tags span {
  padding: 5px 9px;
  border-radius: 999px;
  color: #9a3412;
  background: #ffedd5;
  font-size: 12px;
  font-weight: 700;
}

.movie-card__stats {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

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

.category-tile {
  min-height: 220px;
  padding: 26px;
  border-radius: 26px;
  color: #ffffff;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.25), transparent 9rem),
    linear-gradient(135deg, #f97316, #f59e0b 52%, #fbbf24);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.category-tile h2,
.category-tile h3 {
  margin: 0;
  font-size: 26px;
}

.category-tile p {
  margin: 14px 0 24px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.7;
}

.category-tile span {
  display: inline-flex;
  padding: 9px 14px;
  border-radius: 999px;
  color: #9a3412;
  background: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

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

.rank-row,
.mini-card {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 12px;
  border: 1px solid rgba(251, 146, 60, 0.14);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(124, 45, 18, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-row:hover,
.mini-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-soft);
}

.rank-number {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #ffffff;
  border-radius: 16px;
  background: linear-gradient(135deg, #f97316, #fbbf24);
  font-weight: 900;
}

.rank-row img,
.mini-card__image img {
  width: 62px;
  height: 80px;
  object-fit: cover;
  border-radius: 14px;
}

.rank-main strong,
.mini-card strong {
  display: block;
  font-size: 17px;
  font-weight: 900;
}

.rank-main span,
.mini-card small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.rank-score {
  color: var(--brand-dark);
  font-weight: 900;
}

.mini-card {
  grid-template-columns: 62px minmax(0, 1fr);
}

.mini-card__image {
  position: relative;
}

.mini-rank {
  position: absolute;
  left: -8px;
  top: -8px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #ffffff;
  border-radius: 999px;
  background: var(--brand);
  font-size: 12px;
  font-weight: 900;
}

.page-hero {
  padding: 76px 0 42px;
}

.page-hero__panel {
  padding: 42px;
  border-radius: 34px;
  color: #ffffff;
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.22), transparent 14rem),
    linear-gradient(135deg, #f97316, #f59e0b 48%, #fbbf24);
  box-shadow: var(--shadow);
}

.page-hero__panel p {
  color: rgba(255, 255, 255, 0.86);
}

.page-filter {
  grid-template-columns: 1fr;
  margin-bottom: 28px;
}

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

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

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  padding: 34px 0 76px;
}

.detail-main,
.detail-side,
.player-card,
.info-card {
  border: 1px solid rgba(251, 146, 60, 0.14);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.player-card {
  overflow: hidden;
}

.player-box {
  position: relative;
  overflow: hidden;
  background: #000000;
}

.player-box video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.45));
  transition: opacity 0.2s ease, visibility 0.2s ease;
  pointer-events: auto;
}

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

.play-button {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #f97316, #fbbf24);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.38);
  font-size: 30px;
  transition: transform 0.2s ease;
}

.play-button:hover {
  transform: scale(1.08);
}

.detail-title {
  padding: 28px;
}

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

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

.detail-title p {
  margin: 16px 0 0;
  color: #4b5563;
  font-size: 17px;
  line-height: 1.8;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.info-card {
  margin-top: 22px;
  padding: 28px;
}

.info-card h2,
.detail-side h2 {
  margin: 0 0 16px;
  font-size: 24px;
}

.info-card p {
  margin: 0 0 18px;
  color: #4b5563;
  line-height: 1.9;
}

.info-card p:last-child {
  margin-bottom: 0;
}

.detail-side {
  padding: 22px;
  height: fit-content;
  position: sticky;
  top: 92px;
}

.meta-list {
  display: grid;
  gap: 12px;
  margin-bottom: 26px;
}

.meta-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f3f4f6;
}

.meta-list span {
  color: var(--muted);
}

.meta-list strong {
  text-align: right;
}

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

.related-card {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
}

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

.related-card span {
  display: block;
  padding: 10px 10px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 800;
}

.related-card small {
  display: block;
  padding: 4px 10px 12px;
  color: var(--muted);
}

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

.site-footer {
  color: #d1d5db;
  background: #111827;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  padding: 46px 0;
}

.site-footer p {
  max-width: 560px;
  margin: 14px 0 0;
  color: #9ca3af;
  line-height: 1.8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-content: start;
}

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

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

.footer-bottom {
  padding: 18px 16px;
  text-align: center;
  color: #9ca3af;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

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

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

  .hero-visual {
    min-height: 440px;
  }

  .detail-side {
    position: static;
  }
}

@media (max-width: 840px) {
  .site-menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 16px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 12px 14px;
    border-radius: 14px;
    background: #fff7ed;
  }

  .hero__inner {
    min-height: auto;
    padding: 52px 0 86px;
  }

  .hero-slider {
    min-height: 430px;
  }

  .hero-visual {
    min-height: 380px;
  }

  .hero-poster {
    width: 72%;
  }

  .hero-stack {
    width: min(280px, 72%);
  }

  .search-panel__inner {
    grid-template-columns: 1fr;
  }

  .section-head,
  .footer-grid {
    display: block;
  }

  .footer-links {
    margin-top: 22px;
  }

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

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

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

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

@media (max-width: 560px) {
  .container,
  .site-header__inner {
    width: min(100% - 22px, var(--container));
  }

  .site-logo__text {
    font-size: 20px;
  }

  .hero-slide h2,
  .hero h1 {
    font-size: 38px;
  }

  .hero-slider {
    min-height: 500px;
  }

  .hero-visual {
    min-height: 330px;
  }

  .hero-poster {
    width: 78%;
    border-radius: 26px;
  }

  .hero-stack {
    width: 86%;
    bottom: 12px;
  }

  .section {
    padding: 54px 0;
  }

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

  .movie-card__body {
    padding: 14px;
  }

  .movie-card__desc,
  .movie-card__tags {
    display: none;
  }

  .page-hero__panel {
    padding: 28px;
  }

  .rank-row {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .rank-row img,
  .rank-score {
    display: none;
  }

  .detail-title,
  .info-card,
  .detail-side {
    padding: 20px;
  }
}
