
:root {
  --bg: #f8fafc;
  --panel: #ffffff;
  --ink: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --blue: #2563eb;
  --blue-strong: #1d4ed8;
  --sky: #38bdf8;
  --slate: #020617;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(15, 23, 42, 0.86);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  backdrop-filter: blur(20px);
}

.site-header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 72px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.site-logo-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.35);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 10px 13px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.top-search,
.hero-search,
.search-page-form {
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.top-search input,
.hero-search input,
.search-page-form input {
  width: 210px;
  min-width: 0;
  border: 0;
  outline: 0;
  color: #ffffff;
  background: transparent;
  padding: 11px 14px;
}

.top-search input::placeholder,
.hero-search input::placeholder,
.search-page-form input::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.top-search button,
.hero-search button,
.search-page-form button {
  border: 0;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--blue-strong));
  padding: 11px 18px;
  cursor: pointer;
}

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

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

.hero-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
  min-height: 670px;
  color: #ffffff;
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.28), transparent 34%), linear-gradient(135deg, #020617 0%, #0f1f4d 48%, #111827 100%);
  overflow: hidden;
}

.hero-slides {
  position: relative;
  min-height: 670px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.7s ease, transform 0.7s ease;
  pointer-events: none;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.48;
  filter: saturate(1.12) contrast(1.05);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.94) 0%, rgba(2, 6, 23, 0.72) 48%, rgba(2, 6, 23, 0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 52px));
  margin-left: max(26px, calc((100vw - 1180px) / 2));
}

.hero-kicker,
.section-kicker,
.site-pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: #93c5fd;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-pill {
  padding: 8px 12px;
  border: 1px solid rgba(147, 197, 253, 0.34);
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.14);
}

.hero-content h1 {
  max-width: 680px;
  margin: 0 0 18px;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero-content p {
  max-width: 640px;
  margin: 0 0 24px;
  color: rgba(226, 232, 240, 0.9);
  font-size: clamp(16px, 1.7vw, 22px);
  line-height: 1.8;
}

.hero-tags,
.movie-tags,
.token-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags span,
.movie-tags span,
.token-list span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #1e40af;
  background: #dbeafe;
  font-size: 12px;
  font-weight: 700;
}

.hero-tags span {
  color: #dbeafe;
  background: rgba(37, 99, 235, 0.28);
  border: 1px solid rgba(147, 197, 253, 0.24);
}

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

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

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

.button.primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  box-shadow: 0 18px 35px rgba(37, 99, 235, 0.34);
}

.button.ghost {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.button.subtle {
  min-height: 38px;
  color: var(--blue);
  background: #dbeafe;
}

.hero-panel {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  padding: 36px max(26px, calc((100vw - 1180px) / 2)) 36px 20px;
}

.hero-panel-inner {
  width: 100%;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background: rgba(15, 23, 42, 0.68);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(22px);
}

.hero-panel h2 {
  margin: 0 0 12px;
  font-size: 32px;
  line-height: 1.15;
}

.hero-panel p {
  color: rgba(226, 232, 240, 0.84);
  line-height: 1.75;
}

.hero-search {
  margin: 22px 0;
  background: rgba(255, 255, 255, 0.08);
}

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

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

.hero-mini-list .rank-card {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.14);
}

.hero-mini-list .rank-card h3,
.hero-mini-list .rank-card span {
  color: #ffffff;
}

.hero-mini-list .rank-card p {
  color: rgba(226, 232, 240, 0.78);
}

.hero-dots {
  display: flex;
  gap: 8px;
  margin-top: 22px;
}

.hero-dot {
  width: 36px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  cursor: pointer;
}

.hero-dot.active {
  background: #60a5fa;
}

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

.white-section,
.soft-section,
.gradient-section {
  width: 100%;
  padding-left: max(16px, calc((100% - 1180px) / 2));
  padding-right: max(16px, calc((100% - 1180px) / 2));
}

.white-section {
  background: #ffffff;
}

.soft-section {
  background: linear-gradient(180deg, #f8fafc, #eef6ff);
}

.gradient-section {
  color: #ffffff;
  background: radial-gradient(circle at top right, rgba(56, 189, 248, 0.24), transparent 30%), linear-gradient(135deg, #0f172a, #1e3a8a);
}

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

.section-head h2,
.page-hero h1 {
  margin: 0;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.section-link {
  color: var(--blue);
  font-weight: 800;
}

.section-link.light {
  color: #bfdbfe;
}

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

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

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

.movie-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.78);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--panel);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.28);
  box-shadow: var(--shadow);
}

.movie-poster {
  position: relative;
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a, #1e293b);
}

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

.movie-card:hover .movie-poster img {
  transform: scale(1.08);
  filter: saturate(1.15);
}

.poster-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  max-width: calc(100% - 24px);
  padding: 6px 10px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(37, 99, 235, 0.92);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.poster-play {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: #ffffff;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.86);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.72);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.movie-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 11px;
  padding: 16px;
}

.movie-card h3 {
  display: -webkit-box;
  min-height: 48px;
  margin: 0;
  overflow: hidden;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.38;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.movie-card p {
  display: -webkit-box;
  min-height: 44px;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.56;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  color: #475569;
  font-size: 13px;
  font-weight: 700;
}

.movie-tags span {
  color: #334155;
  background: #f1f5f9;
}

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

.rank-card {
  display: grid;
  grid-template-columns: auto 88px 1fr;
  align-items: center;
  gap: 15px;
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #ffffff;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.rank-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.1);
}

.rank-card img {
  width: 88px;
  height: 62px;
  border-radius: 15px;
  object-fit: cover;
  background: #0f172a;
}

.rank-card h3 {
  margin: 0 0 5px;
  font-size: 16px;
}

.rank-card p {
  display: -webkit-box;
  margin: 0 0 6px;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.rank-card span {
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
}

.rank-num {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  font-weight: 900;
}

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

.category-card,
.category-overview-card {
  display: block;
  min-height: 180px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.category-card:hover,
.category-overview-card:hover {
  transform: translateY(-5px);
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: var(--shadow);
}

.category-card span,
.category-overview-card span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: 20px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  font-size: 24px;
  font-weight: 900;
}

.category-card h3,
.category-overview-card h2 {
  margin: 0 0 10px;
  font-size: 22px;
}

.category-card p,
.category-overview-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 24px;
  align-items: center;
}

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

.category-thumb-stack img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  object-fit: cover;
  background: #0f172a;
}

.page-hero {
  display: flex;
  align-items: center;
  min-height: 330px;
  color: #ffffff;
  background: radial-gradient(circle at top right, rgba(56, 189, 248, 0.28), transparent 32%), linear-gradient(135deg, #020617, #1d4ed8 58%, #0f172a);
}

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

.page-hero h1 {
  max-width: 760px;
  margin-bottom: 16px;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(226, 232, 240, 0.86);
  font-size: 18px;
  line-height: 1.8;
}

.search-page-form {
  max-width: 620px;
  margin-top: 24px;
}

.search-page-form input {
  flex: 1;
  width: auto;
}

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

.ranking-list .rank-card {
  grid-template-columns: auto 126px 1fr;
}

.ranking-list .rank-card img {
  width: 126px;
  height: 78px;
}

.breadcrumb-wrap {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 14px 0;
  color: #64748b;
  font-size: 14px;
}

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

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  width: min(1180px, calc(100% - 32px));
  margin: 34px auto 52px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #000000;
  box-shadow: 0 30px 70px rgba(2, 6, 23, 0.2);
  aspect-ratio: 16 / 9;
}

.movie-player {
  width: 100%;
  height: 100%;
  background: #000000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  color: #ffffff;
  background: radial-gradient(circle, rgba(15, 23, 42, 0.24), rgba(15, 23, 42, 0.6));
  cursor: pointer;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.player-overlay span {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  padding-left: 5px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  box-shadow: 0 20px 45px rgba(37, 99, 235, 0.32);
  font-size: 34px;
}

.player-shell.is-playing .player-overlay {
  opacity: 0;
  visibility: hidden;
}

.detail-card,
.aside-cover-card,
.aside-info-card {
  margin-top: 22px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

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

.detail-title-row h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.detail-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  color: #334155;
  background: #f1f5f9;
  font-size: 14px;
  font-weight: 800;
}

.one-line {
  margin: 0 0 26px;
  color: #1e293b;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.65;
}

.detail-section {
  margin-top: 26px;
}

.detail-section h2,
.aside-info-card h2,
.aside-cover-card h2 {
  margin: 0 0 14px;
  font-size: 22px;
}

.detail-section p {
  margin: 0;
  color: #475569;
  font-size: 16px;
  line-height: 1.95;
}

.detail-aside {
  position: sticky;
  top: 96px;
  height: fit-content;
}

.aside-cover-card {
  margin-top: 0;
  overflow: hidden;
  padding: 0;
}

.aside-cover-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #0f172a;
}

.aside-cover-card div {
  padding: 20px;
}

.aside-cover-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.aside-info-card dl {
  display: grid;
  gap: 12px;
  margin: 0 0 18px;
}

.aside-info-card dl div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.aside-info-card dt {
  color: var(--muted);
}

.aside-info-card dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  text-align: right;
}

.aside-info-card a {
  color: var(--blue);
}

.related-section {
  padding-top: 58px;
}

.small-token-list span {
  color: #334155;
  background: #f8fafc;
}

mark {
  color: #1d4ed8;
  background: #dbeafe;
  border-radius: 5px;
  padding: 0 3px;
}

.site-footer {
  color: #cbd5e1;
  background: linear-gradient(180deg, #0f172a, #020617);
}

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

.footer-brand p {
  max-width: 460px;
  color: #94a3b8;
  line-height: 1.8;
}

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

.footer-links a {
  color: #cbd5e1;
  font-weight: 700;
}

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

@media (max-width: 1100px) {
  .site-header-inner {
    grid-template-columns: auto auto;
  }

  .site-nav,
  .top-search {
    display: none;
  }

  .mobile-menu-button {
    display: block;
    justify-self: end;
  }

  .site-header.menu-open .site-nav,
  .site-header.menu-open .top-search {
    display: flex;
    grid-column: 1 / -1;
  }

  .site-header.menu-open .site-nav {
    flex-wrap: wrap;
    padding-top: 10px;
  }

  .site-header.menu-open .top-search {
    margin-bottom: 14px;
  }

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

  .hero-panel {
    padding: 0 16px 34px;
  }

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

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

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

  .detail-aside {
    position: static;
  }
}

@media (max-width: 820px) {
  .hero-content {
    width: calc(100% - 32px);
    margin: 0 auto;
  }

  .hero-slides,
  .hero-section {
    min-height: 600px;
  }

  .hero-shade {
    background: rgba(2, 6, 23, 0.76);
  }

  .section-head,
  .detail-title-row {
    align-items: start;
    flex-direction: column;
  }

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

  .category-overview-card {
    grid-template-columns: 1fr;
  }

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

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

  .site-logo span:last-child {
    max-width: 168px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .movie-grid,
  .featured-grid,
  .catalog-grid,
  .rank-grid,
  .category-grid,
  .category-overview-grid {
    grid-template-columns: 1fr;
  }

  .rank-card,
  .ranking-list .rank-card {
    grid-template-columns: auto 76px 1fr;
  }

  .rank-card img,
  .ranking-list .rank-card img {
    width: 76px;
    height: 56px;
  }

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

  .button {
    width: 100%;
  }
}
