* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-850: #162033;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --amber-600: #d97706;
  --amber-500: #f59e0b;
  --amber-400: #fbbf24;
  --amber-100: #fef3c7;
  --white: #ffffff;
  --shadow-soft: 0 20px 50px rgba(15, 23, 42, 0.15);
  --shadow-card: 0 14px 35px rgba(15, 23, 42, 0.10);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --max-width: 1280px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--slate-800);
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 46%, #f8fafc 100%);
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, var(--slate-900), var(--slate-800), var(--slate-900));
  color: var(--white);
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.25);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  min-height: 68px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--slate-950);
  background: linear-gradient(135deg, var(--amber-400), var(--amber-600));
  box-shadow: 0 10px 24px rgba(245, 158, 11, 0.35);
  font-size: 15px;
}

.brand-text {
  font-size: 25px;
  color: var(--white);
}

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

.nav-link,
.mobile-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 12px;
  color: var(--slate-300);
  font-size: 15px;
  transition: color 0.25s ease, background 0.25s ease;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
  color: var(--amber-400);
  background: rgba(255, 255, 255, 0.08);
}

.header-search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 8px;
}

.header-search input,
.mobile-search input,
.search-page-form input,
.page-filter-input {
  width: 240px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.74);
  color: var(--white);
  padding: 11px 16px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.header-search input::placeholder,
.mobile-search input::placeholder,
.search-page-form input::placeholder,
.page-filter-input::placeholder {
  color: var(--slate-400);
}

.header-search input:focus,
.mobile-search input:focus,
.search-page-form input:focus,
.page-filter-input:focus {
  border-color: var(--amber-500);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.16);
  background: rgba(15, 23, 42, 0.94);
}

.header-search button,
.mobile-search button,
.search-page-form button {
  border: 0;
  border-radius: 999px;
  padding: 11px 17px;
  color: var(--slate-950);
  background: linear-gradient(135deg, var(--amber-400), var(--amber-600));
  font-weight: 800;
  cursor: pointer;
}

.menu-toggle {
  display: none;
  border: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  width: 44px;
  height: 44px;
  cursor: pointer;
}

.mobile-panel {
  display: none;
  padding: 16px 24px 22px;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  background: var(--slate-850);
}

.mobile-panel.is-open {
  display: block;
}

.mobile-search {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.mobile-search input {
  width: 100%;
}

.mobile-panel nav,
.mobile-category-links {
  display: grid;
  gap: 8px;
}

.mobile-category-links {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 12px;
}

.mobile-category-links a {
  border-radius: 12px;
  color: var(--slate-300);
  background: rgba(255, 255, 255, 0.06);
  padding: 11px 12px;
}

.hero-carousel {
  position: relative;
  min-height: min(72vh, 640px);
  overflow: hidden;
  color: var(--white);
  background: var(--slate-950);
}

.hero-track {
  position: relative;
  min-height: min(72vh, 640px);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background-image: linear-gradient(90deg, rgba(2, 6, 23, 0.94) 0%, rgba(15, 23, 42, 0.78) 45%, rgba(15, 23, 42, 0.28) 100%), var(--hero-background);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 0.75s ease, transform 0.75s ease;
  pointer-events: none;
}

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

.hero-overlay {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(0deg, var(--slate-950), rgba(2, 6, 23, 0));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(680px, calc(100% - 40px));
  margin-left: max(24px, calc((100vw - var(--max-width)) / 2 + 24px));
  padding: 58px 0;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--amber-400);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
}

.hero-content h1,
.hero-content h2 {
  margin: 14px 0 18px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.hero-content p {
  max-width: 620px;
  margin: 0;
  color: var(--slate-200);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.8;
}

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

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

.hero-tags span,
.category-chip,
.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.hero-tags span,
.category-chip {
  color: var(--amber-100);
  background: rgba(245, 158, 11, 0.14);
  border: 1px solid rgba(245, 158, 11, 0.28);
}

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

.primary-button,
.ghost-button,
.section-more,
.filter-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  min-height: 46px;
  padding: 0 22px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.primary-button {
  color: var(--slate-950);
  background: linear-gradient(135deg, var(--amber-400), var(--amber-600));
  box-shadow: 0 12px 26px rgba(245, 158, 11, 0.28);
}

.primary-button:hover,
.ghost-button:hover,
.section-more:hover,
.filter-link:hover {
  transform: translateY(-2px);
}

.ghost-button {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.ghost-button.dark {
  color: var(--slate-800);
  background: var(--slate-100);
  border-color: var(--slate-200);
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.48);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-prev,
.hero-next,
.hero-dot {
  border: 0;
  cursor: pointer;
}

.hero-prev,
.hero-next {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  font-size: 28px;
  line-height: 1;
}

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

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

.hero-dot.is-active {
  width: 28px;
  background: var(--amber-400);
}

.section-block,
.detail-shell {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
}

.section-block {
  padding: 58px 0 0;
}

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

.section-heading h2,
.page-hero h1,
.detail-heading h1,
.content-block h2 {
  margin: 6px 0 0;
  color: var(--slate-800);
  letter-spacing: -0.04em;
}

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

.slim-heading {
  margin-bottom: 18px;
}

.section-more,
.filter-link {
  color: var(--amber-700, #b45309);
  background: #fff7ed;
  border: 1px solid #fed7aa;
}

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

.category-card {
  position: relative;
  overflow: hidden;
  min-height: 152px;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--slate-900), var(--slate-800));
  color: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card::after {
  content: "";
  position: absolute;
  right: -45px;
  bottom: -45px;
  width: 130px;
  height: 130px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.18);
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 46px rgba(15, 23, 42, 0.2);
}

.category-card span {
  position: relative;
  z-index: 2;
  display: block;
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 12px;
}

.category-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--slate-300);
  line-height: 1.7;
}

.category-card.large {
  min-height: 180px;
}

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

.movie-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.18);
}

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--slate-900);
}

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

.movie-card:hover .poster-link img {
  transform: scale(1.08);
  filter: brightness(0.78);
}

.year-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--slate-950);
  background: var(--amber-400);
  font-size: 12px;
  font-weight: 900;
}

.poster-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 48px;
  background: rgba(2, 6, 23, 0.16);
  opacity: 0;
  transform: scale(0.82);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.movie-card:hover .poster-play {
  opacity: 1;
  transform: scale(1);
}

.movie-card-body {
  padding: 18px;
}

.movie-title-link h2 {
  margin: 0;
  color: var(--slate-800);
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: -0.02em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-title-link:hover h2 {
  color: var(--amber-600);
}

.movie-meta,
.movie-desc {
  margin: 9px 0 0;
  color: var(--slate-600);
  line-height: 1.65;
}

.movie-meta {
  font-size: 13px;
  color: var(--slate-500);
}

.movie-desc {
  min-height: 52px;
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tag-row {
  margin-top: 13px;
}

.tag-row span {
  color: #92400e;
  background: var(--amber-100);
}

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

.compact-card .poster-link {
  aspect-ratio: 16 / 9;
}

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

.latest-panel,
.ranking-panel,
.detail-info-card,
.player-card,
.detail-side-card,
.rank-page-section {
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.latest-panel,
.ranking-panel,
.rank-page-section {
  padding: 24px;
}

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

.rank-row {
  display: grid;
  grid-template-columns: auto 84px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 15px;
  background: var(--slate-50);
  transition: background 0.22s ease, transform 0.22s ease;
}

.rank-row:hover {
  background: #fff7ed;
  transform: translateX(4px);
}

.rank-index {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--slate-950);
  background: var(--amber-400);
  font-weight: 900;
  font-size: 13px;
}

.rank-row img {
  width: 84px;
  height: 54px;
  object-fit: cover;
  border-radius: 11px;
}

.rank-info {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.rank-info strong {
  overflow: hidden;
  color: var(--slate-800);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-info em {
  color: var(--slate-500);
  font-size: 13px;
  font-style: normal;
}

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

.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, var(--slate-950), var(--slate-800));
  padding: 78px max(24px, calc((100vw - var(--max-width)) / 2 + 24px));
}

.page-hero::after {
  content: "";
  position: absolute;
  right: 8%;
  top: 12%;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.14);
  filter: blur(6px);
}

.page-hero > div {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(38px, 5vw, 62px);
}

.page-hero p {
  margin: 16px 0 0;
  color: var(--slate-200);
  font-size: 18px;
  line-height: 1.8;
}

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

.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.page-filter-input {
  width: min(100%, 420px);
  color: var(--slate-800);
  background: var(--slate-50);
}

.search-section {
  min-height: 420px;
}

.search-page-form {
  display: flex;
  gap: 12px;
  margin-bottom: 26px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.search-page-form input {
  flex: 1;
  width: auto;
  color: var(--slate-800);
  background: var(--slate-50);
}

.search-empty {
  grid-column: 1 / -1;
  border-radius: var(--radius-lg);
  padding: 28px;
  background: var(--white);
  color: var(--slate-600);
  box-shadow: var(--shadow-card);
}

.detail-shell {
  padding-top: 26px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-bottom: 22px;
  color: var(--slate-500);
  font-size: 14px;
}

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

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

.player-card {
  overflow: hidden;
  padding: 0;
  background: var(--slate-950);
}

.video-shell {
  position: relative;
  background: var(--slate-950);
}

.movie-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--slate-950);
  cursor: pointer;
}

.play-mask {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: var(--white);
  background: radial-gradient(circle, rgba(2, 6, 23, 0.18), rgba(2, 6, 23, 0.58));
  cursor: pointer;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.play-mask span {
  width: 86px;
  height: 86px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--slate-950);
  background: linear-gradient(135deg, var(--amber-400), var(--amber-600));
  box-shadow: 0 18px 42px rgba(245, 158, 11, 0.36);
  font-size: 34px;
  padding-left: 5px;
}

.play-mask.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.detail-side-card {
  padding: 16px;
}

.detail-side-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 16px;
}

.full-button {
  width: 100%;
}

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

.detail-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.detail-heading h1 {
  font-size: clamp(32px, 5vw, 52px);
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.detail-meta span {
  border-radius: 999px;
  background: var(--slate-100);
  color: var(--slate-700);
  padding: 9px 13px;
  font-weight: 700;
  font-size: 14px;
}

.one-line {
  margin: 22px 0 0;
  padding: 18px;
  border-radius: var(--radius-md);
  color: var(--slate-800);
  background: var(--slate-50);
  line-height: 1.8;
  font-weight: 700;
}

.detail-tags {
  margin-top: 18px;
}

.content-block {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--slate-200);
}

.content-block h2 {
  font-size: 24px;
}

.content-block p {
  margin: 14px 0 0;
  color: var(--slate-700);
  line-height: 1.95;
  font-size: 16px;
}

.review-block {
  padding: 22px;
  border: 0;
  border-radius: var(--radius-lg);
  background: var(--slate-50);
}

.related-section {
  padding-bottom: 22px;
}

.site-footer {
  margin-top: 64px;
  color: var(--slate-300);
  background: linear-gradient(90deg, var(--slate-900), var(--slate-800), var(--slate-900));
}

.footer-inner {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 34px;
  padding: 44px 0;
}

.footer-brand p {
  margin: 16px 0 0;
  max-width: 420px;
  color: var(--slate-400);
  line-height: 1.8;
}

.footer-links h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 18px;
}

.footer-links div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.footer-links a {
  color: var(--slate-400);
}

.footer-links a:hover {
  color: var(--amber-400);
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  padding: 18px 20px;
  text-align: center;
  color: var(--slate-500);
}

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

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

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

  .split-section,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .ranking-panel {
    width: 100%;
  }

  .detail-side-card {
    display: none;
  }
}

@media (max-width: 780px) {
  .header-inner {
    padding: 0 16px;
  }

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

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

  .hero-slide {
    align-items: flex-end;
    background-image: linear-gradient(0deg, rgba(2, 6, 23, 0.96) 0%, rgba(15, 23, 42, 0.78) 44%, rgba(15, 23, 42, 0.20) 100%), var(--hero-background);
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 16px;
    padding-bottom: 120px;
  }

  .hero-content h1,
  .hero-content h2 {
    font-size: 44px;
  }

  .hero-controls {
    bottom: 18px;
  }

  .section-block,
  .detail-shell {
    width: calc(100% - 28px);
  }

  .section-heading,
  .filter-bar,
  .detail-heading,
  .search-page-form {
    align-items: stretch;
    flex-direction: column;
  }

  .movie-grid,
  .compact-grid,
  .category-grid,
  .overview-grid,
  .full-rank-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-hero {
    padding: 58px 20px;
  }

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

@media (max-width: 520px) {
  .movie-grid,
  .compact-grid,
  .category-grid,
  .overview-grid,
  .full-rank-list {
    grid-template-columns: 1fr;
  }

  .mobile-search {
    flex-direction: column;
  }

  .hero-content h1,
  .hero-content h2 {
    font-size: 36px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions a,
  .section-more,
  .filter-link,
  .primary-button,
  .ghost-button {
    width: 100%;
  }

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

  .rank-row img {
    width: 74px;
  }

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