:root {
  color-scheme: dark;
  --bg: #020617;
  --bg-soft: #0f172a;
  --bg-card: #111827;
  --bg-elevated: #1e293b;
  --text: #f8fafc;
  --muted: #94a3b8;
  --muted-strong: #cbd5e1;
  --line: rgba(148, 163, 184, 0.18);
  --cyan: #22d3ee;
  --cyan-strong: #06b6d4;
  --cyan-dark: #0e7490;
  --shadow: 0 24px 80px rgba(2, 6, 23, 0.44);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top left, rgba(34, 211, 238, 0.14), transparent 34vw),
    radial-gradient(circle at 80% 10%, rgba(14, 116, 144, 0.16), transparent 28vw),
    linear-gradient(180deg, rgba(15, 23, 42, 0), rgba(2, 6, 23, 0.88));
  z-index: -1;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(15, 23, 42, 0.96);
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.3);
}

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

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.brand-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--cyan), #2563eb);
  color: white;
  box-shadow: 0 10px 26px rgba(34, 211, 238, 0.32);
  font-size: 16px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 1;
}

.nav-link {
  color: var(--muted-strong);
  font-size: 15px;
  transition: color 0.2s ease;
}

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

.header-search {
  display: flex;
  align-items: center;
  min-width: 300px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.82);
  overflow: hidden;
}

.header-search input,
.mobile-panel input,
.inline-filter input,
.search-page-form input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  color: white;
  background: transparent;
  padding: 12px 16px;
}

.header-search input::placeholder,
.mobile-panel input::placeholder,
.inline-filter input::placeholder,
.search-page-form input::placeholder {
  color: #64748b;
}

.header-search button,
.mobile-panel button,
.inline-filter button,
.search-page-form button {
  border: 0;
  color: white;
  background: var(--cyan-strong);
  padding: 12px 18px;
  cursor: pointer;
}

.menu-toggle {
  display: none;
  border: 0;
  color: white;
  background: rgba(30, 41, 59, 0.88);
  border-radius: 12px;
  width: 42px;
  height: 42px;
  cursor: pointer;
}

.mobile-panel {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto 16px;
  padding: 16px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.98);
}

.mobile-panel form {
  display: flex;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
  overflow: hidden;
}

.mobile-panel nav {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.mobile-panel a {
  color: var(--muted-strong);
  padding: 10px 0;
}

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

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

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

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

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.42) 48%, rgba(2, 6, 23, 0.74)),
    linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.15) 34%, rgba(2, 6, 23, 0) 100%);
}

.hero-content {
  position: absolute;
  left: max(32px, calc((100vw - 1200px) / 2));
  bottom: 86px;
  width: min(680px, calc(100% - 64px));
}

.hero-eyebrow {
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-content h1,
.hero-content h2,
.page-hero h1,
.detail-info h1 {
  margin: 0;
  color: white;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.hero-content h1 {
  font-size: clamp(34px, 5vw, 64px);
  max-width: 820px;
}

.hero-content h2 {
  margin-top: 14px;
  font-size: clamp(32px, 4.8vw, 58px);
}

.hero-content p:not(.hero-eyebrow) {
  margin: 22px 0 0;
  max-width: 760px;
  color: var(--muted-strong);
  font-size: clamp(16px, 1.6vw, 21px);
  line-height: 1.8;
}

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

.hero-meta span,
.detail-meta span,
.tag-list span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: #dbeafe;
  background: rgba(14, 165, 233, 0.14);
  border: 1px solid rgba(34, 211, 238, 0.25);
  padding: 7px 12px;
  font-size: 13px;
}

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

.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.primary-button {
  background: var(--cyan-strong);
  color: white;
  box-shadow: 0 14px 34px rgba(8, 145, 178, 0.32);
}

.ghost-button {
  color: white;
  background: rgba(15, 23, 42, 0.62);
  border: 1px solid rgba(203, 213, 225, 0.26);
}

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

.primary-button:hover {
  background: var(--cyan-dark);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 6;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.62);
  color: white;
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

.hero-arrow:hover {
  background: rgba(2, 6, 23, 0.86);
  transform: translateY(-1px);
}

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

.hero-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dots button.is-active {
  width: 34px;
  background: var(--cyan);
}

.quick-categories {
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(15, 23, 42, 0.72);
}

.quick-inner {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}

.quick-inner a {
  padding: 22px 24px;
  background: rgba(15, 23, 42, 0.66);
  transition: background 0.2s ease;
}

.quick-inner a:hover {
  background: rgba(30, 41, 59, 0.82);
}

.quick-inner strong,
.quick-inner span {
  display: block;
}

.quick-inner strong {
  font-size: 18px;
}

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

.page-wrap {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.top-space {
  padding-top: 104px;
}

.content-section,
.spotlight-row {
  margin-top: 58px;
}

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

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

.section-head a {
  color: var(--cyan);
  font-weight: 700;
  white-space: nowrap;
}

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

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

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

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

.movie-card {
  position: relative;
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.9);
  box-shadow: 0 16px 54px rgba(2, 6, 23, 0.22);
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  border-color: rgba(34, 211, 238, 0.42);
  background: rgba(30, 41, 59, 0.92);
}

.poster-frame {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0f172a;
}

.movie-card--small .poster-frame {
  aspect-ratio: 2 / 3;
}

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

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

.play-chip,
.rank-badge {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  color: white;
  font-size: 12px;
  font-weight: 800;
}

.play-chip {
  right: 12px;
  bottom: 12px;
  padding: 7px 10px;
  background: rgba(6, 182, 212, 0.88);
}

.rank-badge {
  top: 12px;
  left: 12px;
  min-width: 34px;
  padding: 7px 9px;
  background: rgba(239, 68, 68, 0.92);
  text-align: center;
}

.movie-card__body {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.movie-card__body strong {
  color: white;
  font-size: 17px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-card__meta,
.movie-card__desc {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.movie-card__desc {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.mini-card {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(148, 163, 184, 0.13);
  border-radius: 18px;
  padding: 10px;
  background: rgba(15, 23, 42, 0.76);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.mini-card:hover {
  transform: translateY(-3px);
  border-color: rgba(34, 211, 238, 0.34);
}

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

.mini-card span {
  min-width: 0;
}

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

.mini-card strong {
  color: white;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mini-card small {
  margin-top: 6px;
  color: var(--muted);
}

.mini-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  margin-right: 6px;
  border-radius: 999px;
  background: var(--cyan-strong);
  color: white;
  font-size: 12px;
  font-weight: 800;
}

.page-hero {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 28px;
  padding: clamp(32px, 6vw, 64px);
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(8, 47, 73, 0.7)),
    radial-gradient(circle at top right, rgba(34, 211, 238, 0.16), transparent 42%);
  box-shadow: var(--shadow);
}

.page-hero h1 {
  font-size: clamp(34px, 5vw, 58px);
  max-width: 860px;
}

.page-hero p:not(.hero-eyebrow) {
  max-width: 780px;
  color: var(--muted-strong);
  line-height: 1.9;
  font-size: 17px;
}

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

.category-panel {
  display: grid;
  gap: 16px;
  min-height: 280px;
  padding: 20px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.78);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.category-panel:hover {
  transform: translateY(-5px);
  border-color: rgba(34, 211, 238, 0.38);
}

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

.category-preview img {
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: 14px;
  object-fit: cover;
}

.category-panel strong {
  font-size: 24px;
  color: white;
}

.category-panel span:last-child {
  color: var(--muted-strong);
  line-height: 1.75;
}

.inline-filter,
.search-page-form {
  display: flex;
  overflow: hidden;
  max-width: 720px;
  margin-top: 28px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.42);
}

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

.breadcrumbs a {
  color: var(--cyan);
}

.ranking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  align-items: start;
  margin-top: 48px;
}

.rank-list,
.rank-side {
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 26px;
  padding: 22px;
  background: rgba(15, 23, 42, 0.78);
}

.rank-row {
  display: grid;
  grid-template-columns: 54px 88px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.rank-row:first-of-type {
  border-top: 0;
}

.rank-number {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: white;
  background: rgba(6, 182, 212, 0.2);
  border: 1px solid rgba(34, 211, 238, 0.3);
  font-weight: 900;
}

.rank-row:nth-of-type(-n + 3) .rank-number {
  background: linear-gradient(135deg, #f97316, #ef4444);
  border-color: transparent;
}

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

.rank-main strong,
.rank-main small {
  display: block;
}

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

.rank-main small {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rank-meta {
  color: var(--muted-strong);
  font-size: 13px;
  white-space: nowrap;
}

.rank-side h2 {
  margin-top: 0;
}

.detail-hero {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 34px;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 28px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.94), rgba(8, 47, 73, 0.62)),
    radial-gradient(circle at 72% 10%, rgba(34, 211, 238, 0.18), transparent 44%);
  box-shadow: var(--shadow);
}

.detail-poster img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  border-radius: 22px;
}

.detail-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 14px 18px 0;
}

.detail-info h1 {
  font-size: clamp(34px, 5vw, 60px);
}

.detail-one-line {
  margin: 22px 0 0;
  color: var(--muted-strong);
  font-size: 18px;
  line-height: 1.85;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 28px;
}

.player-section {
  margin-top: 44px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 28px;
  background: #000;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.player-shell video,
.player-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.player-shell video {
  z-index: 1;
  object-fit: contain;
  background: black;
}

.player-overlay {
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: rgba(2, 6, 23, 0.68);
}

.player-overlay img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.44;
}

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

.big-play {
  position: relative;
  z-index: 4;
  width: 86px;
  height: 86px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: white;
  background: var(--cyan-strong);
  box-shadow: 0 24px 55px rgba(34, 211, 238, 0.42);
  font-size: 34px;
  text-indent: 4px;
}

.detail-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  margin-top: 44px;
}

.detail-content article,
.detail-content aside {
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 26px;
  padding: 28px;
  background: rgba(15, 23, 42, 0.78);
}

.detail-content h2 {
  margin: 0 0 16px;
  color: white;
  font-size: 25px;
}

.detail-content p {
  color: var(--muted-strong);
  line-height: 2;
  font-size: 16px;
}

.detail-content dl {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 14px;
  margin: 0;
}

.detail-content dt {
  color: var(--muted);
}

.detail-content dd {
  margin: 0;
  color: white;
}

.site-footer {
  margin-top: 72px;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(2, 6, 23, 0.72);
}

.footer-grid {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 42px;
  padding: 46px 0;
}

.footer-grid p,
.footer-grid a,
.footer-bottom {
  color: var(--muted);
  line-height: 1.8;
}

.footer-grid h3 {
  margin: 0 0 14px;
  color: white;
}

.footer-grid ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.footer-bottom {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0 34px;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  text-align: center;
  font-size: 14px;
}

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

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

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

  .category-grid,
  .latest-strip,
  .footer-grid,
  .ranking-layout,
  .detail-content {
    grid-template-columns: 1fr;
  }

  .rank-side {
    display: none;
  }

  .detail-hero {
    grid-template-columns: 260px minmax(0, 1fr);
  }
}

@media (max-width: 760px) {
  .header-inner {
    height: 62px;
  }

  .brand {
    font-size: 18px;
  }

  .brand-icon {
    width: 30px;
    height: 30px;
  }

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

  .hero-content {
    left: 20px;
    bottom: 84px;
    width: calc(100% - 40px);
  }

  .hero-arrow {
    display: none;
  }

  .quick-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-grid,
  .compact-grid,
  .catalog-grid,
  .category-grid,
  .latest-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .movie-card__body {
    padding: 13px;
  }

  .movie-card__desc {
    display: none;
  }

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

  .rank-meta {
    display: none;
  }

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

  .detail-poster img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .detail-info {
    padding: 0;
  }

  .inline-filter,
  .search-page-form {
    border-radius: 22px;
    flex-direction: column;
  }

  .inline-filter button,
  .search-page-form button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .feature-grid,
  .compact-grid,
  .catalog-grid,
  .category-grid,
  .latest-strip {
    grid-template-columns: 1fr;
  }

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

  .page-hero,
  .detail-content article,
  .detail-content aside,
  .rank-list {
    padding: 22px;
    border-radius: 22px;
  }

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

  .mini-card img {
    width: 82px;
  }
}
