:root {
  --page-bg: #fff7ed;
  --page-bg-soft: #fff1e7;
  --card-bg: #ffffff;
  --text-main: #111827;
  --text-soft: #4b5563;
  --text-muted: #6b7280;
  --brand: #ea580c;
  --brand-deep: #dc2626;
  --brand-warm: #f59e0b;
  --border: #fed7aa;
  --shadow-soft: 0 18px 45px rgba(124, 45, 18, 0.12);
  --shadow-card: 0 12px 30px rgba(17, 24, 39, 0.08);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(254, 215, 170, 0.65);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 30px rgba(124, 45, 18, 0.12);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.logo-mark {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border-radius: 12px;
  background: linear-gradient(135deg, #fb923c, #dc2626);
  box-shadow: 0 10px 22px rgba(234, 88, 12, 0.28);
}

.logo-text {
  font-size: 20px;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, var(--brand), var(--brand-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

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

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

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--brand);
}

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #374151;
  background: #fff7ed;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span {
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -7px;
}

.nav-toggle span::after {
  top: 7px;
}

body.nav-open .nav-toggle span {
  background: transparent;
}

body.nav-open .nav-toggle span::before {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle span::after {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 14px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.mobile-nav a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  color: #374151;
  font-weight: 650;
}

.mobile-nav a:hover,
.mobile-nav a.is-active {
  color: var(--brand);
  background: #fff7ed;
}

.page-main {
  padding-top: 66px;
}

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

.hero {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(135deg, #ea580c, #dc2626 58%, #f59e0b);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.25), transparent 32%),
    radial-gradient(circle at 75% 25%, rgba(251, 191, 36, 0.28), transparent 30%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.72));
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}

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

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.02);
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 56px 0;
  color: #ffffff;
}

.hero-panel {
  width: min(720px, 100%);
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 30px;
  background: rgba(15, 23, 42, 0.42);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
}

.hero-kicker,
.section-kicker,
.detail-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  border-radius: 999px;
  color: #fff7ed;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  background: rgba(234, 88, 12, 0.92);
}

.section-kicker,
.detail-kicker {
  color: #ea580c;
  background: #ffedd5;
}

.hero-title {
  margin: 18px 0 12px;
  font-size: clamp(38px, 7vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.06em;
  text-shadow: 0 16px 35px rgba(0, 0, 0, 0.38);
}

.hero-subtitle {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(18px, 3vw, 25px);
  font-weight: 650;
}

.hero-description {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 1.8;
}

.hero-tags,
.card-tags,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.hero-tags {
  margin-top: 22px;
}

.hero-tags span,
.card-tags span,
.detail-tags span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.hero-tags span {
  padding: 7px 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.card-tags span,
.detail-tags span {
  padding: 6px 10px;
  color: #c2410c;
  background: #ffedd5;
}

.hero-actions,
.section-actions,
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

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

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

.btn-primary {
  color: #ffffff;
  background: linear-gradient(90deg, var(--brand), var(--brand-deep));
  box-shadow: 0 16px 28px rgba(220, 38, 38, 0.25);
}

.btn-light {
  color: var(--brand);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.22);
}

.btn-ghost {
  color: var(--brand);
  background: #fff7ed;
}

.btn-outline {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
}

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

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.is-active {
  width: 36px;
  background: #ffffff;
}

.section {
  padding: 70px 0;
}

.section-tight {
  padding: 42px 0;
}

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

.section-title {
  margin: 12px 0 0;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.section-desc {
  max-width: 760px;
  margin: 10px 0 0;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.8;
}

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

.stat-card,
.category-card,
.movie-card,
.rank-card,
.info-card,
.player-card,
.content-card {
  border: 1px solid rgba(254, 215, 170, 0.8);
  background: var(--card-bg);
  box-shadow: var(--shadow-card);
}

.stat-card {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover,
.category-card:hover,
.movie-card:hover,
.rank-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.stat-value {
  font-size: 34px;
  font-weight: 900;
  color: var(--brand);
}

.stat-label {
  margin-top: 6px;
  color: var(--text-muted);
  font-weight: 650;
}

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

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

.category-card::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(251, 146, 60, 0.24), rgba(220, 38, 38, 0.12));
}

.category-card h3 {
  position: relative;
  margin: 0 0 12px;
  font-size: 21px;
  z-index: 1;
}

.category-card p {
  position: relative;
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.65;
  z-index: 1;
}

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

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

.movie-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-lg);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.movie-poster {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, #fdba74, #fecaca);
}

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

.movie-card:hover .movie-poster img,
.rank-card:hover .movie-poster img {
  transform: scale(1.08);
}

.movie-badge,
.rank-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  padding: 6px 9px;
  border-radius: 10px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  background: linear-gradient(90deg, var(--brand), var(--brand-deep));
  box-shadow: 0 8px 18px rgba(220, 38, 38, 0.22);
}

.movie-year {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  padding: 6px 9px;
  border-radius: 999px;
  color: #7c2d12;
  font-size: 12px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.92);
}

.movie-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 17px;
}

.movie-title {
  margin: 0 0 9px;
  font-size: 18px;
  line-height: 1.35;
  transition: color 0.2s ease;
}

.movie-card:hover .movie-title,
.rank-card:hover .movie-title {
  color: var(--brand);
}

.movie-desc {
  display: -webkit-box;
  min-height: 48px;
  margin: 0 0 14px;
  overflow: hidden;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.65;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-meta,
.rank-meta,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 650;
}

.movie-meta {
  margin-top: auto;
}

.movie-meta span,
.rank-meta span,
.detail-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.rank-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 26px;
  align-items: start;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 56px 72px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(254, 215, 170, 0.85);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-row:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.rank-number {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
}

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

.rank-row h3 {
  margin: 0 0 7px;
  font-size: 17px;
}

.rank-row p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.55;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

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

.rank-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.filter-panel {
  position: sticky;
  top: 86px;
  z-index: 3;
  padding: 18px;
  margin-bottom: 28px;
  border: 1px solid rgba(254, 215, 170, 0.9);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(16px);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.search-input {
  flex: 1 1 280px;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-main);
  background: #ffffff;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(17, 24, 39, 0.03);
}

.search-input:focus {
  border-color: #fb923c;
  box-shadow: 0 0 0 4px rgba(251, 146, 60, 0.14);
}

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

.filter-chip.is-active,
.filter-chip:hover {
  color: #ffffff;
  background: linear-gradient(90deg, var(--brand), var(--brand-deep));
}

.page-hero {
  padding: 96px 0 58px;
  color: #ffffff;
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 255, 255, 0.24), transparent 34%),
    linear-gradient(135deg, #ea580c, #dc2626 64%, #f59e0b);
}

.page-hero h1 {
  max-width: 900px;
  margin: 14px 0 14px;
  font-size: clamp(36px, 6vw, 58px);
  line-height: 1.12;
  letter-spacing: -0.045em;
}

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

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

.breadcrumb a {
  color: var(--brand);
  font-weight: 750;
}

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

.info-card,
.player-card,
.content-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

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

.info-body,
.content-card,
.player-inner {
  padding: 24px;
}

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

.info-item {
  padding: 14px;
  border-radius: 16px;
  background: #fff7ed;
}

.info-label {
  color: var(--text-muted);
  font-size: 13px;
}

.info-value {
  margin-top: 4px;
  font-weight: 800;
}

.detail-title {
  margin: 16px 0 12px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.detail-lead {
  margin: 0 0 18px;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.85;
  font-weight: 650;
}

.movie-player {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #020617;
  box-shadow: 0 22px 50px rgba(2, 6, 23, 0.28);
}

.movie-player video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #000000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.18), rgba(2, 6, 23, 0.72));
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.play-icon {
  width: 76px;
  height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  box-shadow: 0 18px 34px rgba(220, 38, 38, 0.36);
}

.play-icon::before {
  content: "";
  margin-left: 6px;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 24px solid #ffffff;
}

.player-error {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: #ffffff;
  text-align: center;
  background: rgba(2, 6, 23, 0.86);
}

.movie-player.has-error .player-error {
  display: flex;
}

.article-text {
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.9;
}

.article-text h2,
.article-text h3 {
  margin: 0 0 12px;
  color: var(--text-main);
}

.article-text p {
  margin: 0 0 18px;
}

.site-footer {
  margin-top: 70px;
  color: #e5e7eb;
  background: #111827;
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 44px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(2, minmax(160px, 0.5fr));
  gap: 32px;
  margin-bottom: 30px;
}

.footer-brand p,
.footer-links a {
  color: #9ca3af;
}

.footer-brand p {
  max-width: 520px;
  line-height: 1.8;
}

.footer-title {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 18px;
}

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

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

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #9ca3af;
  font-size: 14px;
}

.hidden-card {
  display: none !important;
}

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

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

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

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

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

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

  .nav-toggle {
    display: inline-flex;
  }

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

  .hero,
  .hero-content {
    min-height: 620px;
  }

  .hero-panel {
    padding: 24px;
  }

  .stats-grid,
  .category-grid,
  .movie-grid,
  .movie-grid.compact,
  .footer-grid,
  .info-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .rank-score {
    grid-column: 3;
  }
}

@media (max-width: 560px) {
  .header-inner,
  .container,
  .footer-inner,
  .mobile-nav {
    width: min(100% - 24px, 1180px);
  }

  .logo-text {
    font-size: 17px;
  }

  .hero,
  .hero-content {
    min-height: 660px;
  }

  .hero-content {
    padding: 38px 0 64px;
  }

  .stats-grid,
  .category-grid,
  .movie-grid,
  .movie-grid.compact,
  .footer-grid,
  .info-list {
    grid-template-columns: 1fr;
  }

  .rank-row {
    grid-template-columns: 40px 58px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
  }

  .rank-row img {
    width: 58px;
    height: 78px;
  }

  .section {
    padding: 48px 0;
  }

  .page-hero {
    padding: 78px 0 44px;
  }
}
