:root {
  --mist-950: #071a2d;
  --mist-900: #102a43;
  --mist-850: #18344f;
  --mist-800: #243b53;
  --mist-700: #334e68;
  --mist-600: #486581;
  --mist-300: #bcccdc;
  --mist-200: #d9e2ec;
  --mist-100: #f0f4f8;
  --swamp-700: #164b51;
  --swamp-600: #20656a;
  --swamp-500: #2d8285;
  --swamp-400: #52a0a3;
  --amber: #f7c948;
  --card: rgba(36, 59, 83, 0.72);
  --card-soft: rgba(36, 59, 83, 0.48);
  --border: rgba(188, 204, 220, 0.14);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.34);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--mist-100);
  background:
    radial-gradient(circle at 12% 5%, rgba(82, 160, 163, 0.22), transparent 30rem),
    radial-gradient(circle at 92% 20%, rgba(247, 201, 72, 0.12), transparent 26rem),
    linear-gradient(180deg, var(--mist-950), var(--mist-900) 42%, #0c2238);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(16, 42, 67, 0.95);
  border-bottom: 1px solid rgba(188, 204, 220, 0.12);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  width: min(1280px, calc(100% - 32px));
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: white;
  background: linear-gradient(135deg, var(--swamp-400), var(--swamp-700));
  border-radius: 15px;
  box-shadow: 0 12px 28px rgba(45, 130, 133, 0.3);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  font-size: 20px;
  letter-spacing: 0.02em;
}

.brand-text small {
  margin-top: 3px;
  color: var(--mist-300);
  font-size: 12px;
}

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

.nav-link {
  padding: 9px 14px;
  color: var(--mist-200);
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: white;
  background: rgba(82, 160, 163, 0.18);
}

.nav-search {
  display: flex;
  align-items: center;
  overflow: hidden;
  min-width: 230px;
  border: 1px solid rgba(188, 204, 220, 0.12);
  border-radius: 999px;
  background: rgba(36, 59, 83, 0.6);
}

.nav-search input {
  width: 100%;
  min-width: 0;
  padding: 10px 12px 10px 16px;
  color: white;
  border: 0;
  outline: 0;
  background: transparent;
}

.nav-search input::placeholder {
  color: rgba(217, 226, 236, 0.62);
}

.nav-search button {
  height: 100%;
  padding: 10px 16px;
  color: white;
  border: 0;
  background: var(--swamp-600);
  cursor: pointer;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(36, 59, 83, 0.68);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: white;
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto 16px;
  padding: 14px;
  background: rgba(36, 59, 83, 0.94);
  border: 1px solid var(--border);
  border-radius: 18px;
}

.mobile-nav.open {
  display: grid;
  gap: 10px;
}

.mobile-nav a,
.mobile-nav input {
  padding: 12px 14px;
  color: white;
  border: 1px solid rgba(188, 204, 220, 0.12);
  border-radius: 12px;
  background: rgba(16, 42, 67, 0.55);
}

.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border-bottom: 1px solid rgba(188, 204, 220, 0.12);
  background: var(--mist-950);
}

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

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

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  filter: blur(10px) saturate(1.1);
  transform: scale(1.05);
  opacity: 0.34;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 26, 45, 0.98), rgba(16, 42, 67, 0.78) 45%, rgba(16, 42, 67, 0.25)),
    linear-gradient(0deg, rgba(7, 26, 45, 0.92), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 32px));
  min-height: 560px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: center;
  gap: 48px;
  padding: 64px 0;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--swamp-400);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-copy h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.hero-text,
.page-hero p,
.section-heading p {
  max-width: 760px;
  color: var(--mist-200);
}

.hero-text {
  margin: 22px 0;
  font-size: clamp(18px, 2.4vw, 24px);
}

.hero-tags,
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags span,
.tag-cloud span,
.tag-cloud a {
  padding: 7px 12px;
  color: white;
  border: 1px solid rgba(82, 160, 163, 0.36);
  border-radius: 999px;
  background: rgba(45, 130, 133, 0.18);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn.primary {
  color: white;
  background: linear-gradient(135deg, var(--swamp-500), var(--swamp-700));
  box-shadow: 0 14px 32px rgba(45, 130, 133, 0.3);
}

.btn.ghost {
  color: var(--mist-100);
  border: 1px solid rgba(188, 204, 220, 0.18);
  background: rgba(36, 59, 83, 0.62);
}

.hero-poster {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(188, 204, 220, 0.16);
  border-radius: var(--radius-xl);
  background: var(--card);
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

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

.hero-poster span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 10px 12px;
  font-weight: 800;
  border-radius: 16px;
  background: rgba(7, 26, 45, 0.78);
  backdrop-filter: blur(10px);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 46px;
  height: 46px;
  color: white;
  border: 1px solid rgba(188, 204, 220, 0.2);
  border-radius: 50%;
  background: rgba(16, 42, 67, 0.72);
  transform: translateY(-50%);
  cursor: pointer;
}

.hero-arrow.prev {
  left: 20px;
}

.hero-arrow.next {
  right: 20px;
}

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

.hero-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
  cursor: pointer;
}

.hero-dots button.active {
  width: 30px;
  background: var(--swamp-400);
}

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

.section-heading {
  margin-bottom: 24px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 40px);
  letter-spacing: -0.03em;
}

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

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

.intro-search {
  padding-top: 42px;
}

.filter-panel {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(188, 204, 220, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(36, 59, 83, 0.5);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.filter-field input,
.filter-row select,
.large-search input {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  color: white;
  border: 1px solid rgba(188, 204, 220, 0.14);
  border-radius: 14px;
  outline: 0;
  background: rgba(16, 42, 67, 0.7);
}

.filter-field input::placeholder,
.large-search input::placeholder {
  color: rgba(217, 226, 236, 0.62);
}

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

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

.category-tile,
.category-card {
  min-height: 160px;
  padding: 20px;
  border: 1px solid rgba(188, 204, 220, 0.12);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(45, 130, 133, 0.24), transparent),
    rgba(36, 59, 83, 0.62);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.category-tile:hover,
.category-card:hover {
  border-color: rgba(82, 160, 163, 0.5);
  background:
    linear-gradient(135deg, rgba(45, 130, 133, 0.32), transparent),
    rgba(36, 59, 83, 0.82);
  transform: translateY(-4px);
}

.category-tile strong,
.category-card-head span {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}

.category-tile span,
.category-card p {
  color: var(--mist-200);
  font-size: 14px;
}

.category-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.category-card-head strong {
  color: var(--swamp-400);
  font-size: 14px;
}

.category-samples {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.category-samples a {
  max-width: 100%;
  padding: 6px 10px;
  overflow: hidden;
  color: var(--mist-100);
  white-space: nowrap;
  text-overflow: ellipsis;
  border-radius: 999px;
  background: rgba(7, 26, 45, 0.45);
}

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

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

.movie-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(188, 204, 220, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(36, 59, 83, 0.6);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.movie-card:hover {
  border-color: rgba(82, 160, 163, 0.48);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  transform: translateY(-5px);
}

.poster-box {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: rgba(7, 26, 45, 0.58);
}

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

.movie-card:hover .poster-box img {
  transform: scale(1.05);
}

.poster-shade {
  position: absolute;
  inset: auto 0 0;
  height: 52%;
  background: linear-gradient(0deg, rgba(7, 26, 45, 0.88), transparent);
}

.year-badge,
.score-badge {
  position: absolute;
  z-index: 1;
  top: 10px;
  padding: 5px 9px;
  color: white;
  font-size: 12px;
  font-weight: 800;
  border-radius: 999px;
  background: rgba(7, 26, 45, 0.7);
  backdrop-filter: blur(10px);
}

.year-badge {
  left: 10px;
}

.score-badge {
  right: 10px;
  color: #151b22;
  background: var(--amber);
}

.card-body {
  display: flex;
  min-height: 152px;
  padding: 15px;
  flex-direction: column;
  gap: 8px;
}

.card-body strong {
  overflow: hidden;
  font-size: 17px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.card-line,
.card-meta {
  color: var(--mist-200);
  font-size: 13px;
}

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

.card-meta {
  margin-top: auto;
  color: var(--swamp-400);
}

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

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

.rank-row {
  display: grid;
  grid-template-columns: 54px 72px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(188, 204, 220, 0.12);
  border-radius: 18px;
  background: rgba(36, 59, 83, 0.58);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.rank-row:hover {
  border-color: rgba(82, 160, 163, 0.45);
  transform: translateX(4px);
}

.rank-num {
  color: var(--swamp-400);
  font-size: 24px;
  font-weight: 900;
  text-align: center;
}

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

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

.rank-info strong,
.rank-info em {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rank-info small {
  color: var(--swamp-400);
}

.rank-info em {
  color: var(--mist-200);
  font-style: normal;
}

.rank-score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #151b22;
  font-weight: 900;
  border-radius: 50%;
  background: var(--amber);
}

.page-hero {
  position: relative;
  overflow: hidden;
  width: min(1280px, calc(100% - 32px));
  margin: 32px auto 0;
  padding: 54px;
  border: 1px solid rgba(188, 204, 220, 0.12);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 80% 20%, rgba(82, 160, 163, 0.26), transparent 22rem),
    linear-gradient(135deg, rgba(36, 59, 83, 0.88), rgba(16, 42, 67, 0.78));
  box-shadow: var(--shadow);
}

.small-hero h1,
.category-hero h1 {
  font-size: clamp(34px, 5vw, 58px);
}

.detail-page {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 64px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 10px 0 22px;
  color: var(--mist-300);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--swamp-400);
}

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

.detail-main-col,
.detail-aside {
  min-width: 0;
}

.player-panel,
.detail-article,
.side-card,
.content-card {
  border: 1px solid rgba(188, 204, 220, 0.12);
  border-radius: var(--radius-xl);
  background: rgba(36, 59, 83, 0.58);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
}

.player-panel {
  overflow: hidden;
}

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.play-mask {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 10px;
  padding: 24px;
  color: white;
  border: 0;
  background: linear-gradient(0deg, rgba(7, 26, 45, 0.65), rgba(7, 26, 45, 0.22));
  cursor: pointer;
  text-align: center;
}

.play-mask.hidden {
  display: none;
}

.play-icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  padding-left: 5px;
  color: white;
  font-size: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--swamp-500), var(--swamp-700));
  box-shadow: 0 16px 38px rgba(45, 130, 133, 0.38);
}

.player-status {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  margin: 0;
  padding: 10px 12px;
  color: white;
  border-radius: 12px;
  background: rgba(7, 26, 45, 0.8);
}

.detail-article {
  margin-top: 22px;
  padding: 28px;
}

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

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

.detail-score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 58px;
  height: 58px;
  color: #151b22;
  font-weight: 900;
  border-radius: 18px;
  background: var(--amber);
}

.lead-text {
  margin: 20px 0;
  padding-left: 18px;
  color: var(--mist-100);
  font-size: 18px;
  border-left: 4px solid var(--swamp-500);
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.detail-meta span {
  padding: 8px 11px;
  color: var(--mist-200);
  border-radius: 999px;
  background: rgba(16, 42, 67, 0.55);
}

.content-card {
  margin: 18px 0;
  padding: 22px;
  background: rgba(16, 42, 67, 0.34);
}

.content-card h2,
.side-card h2 {
  margin: 0 0 12px;
  font-size: 22px;
}

.content-card p {
  margin: 0;
  color: var(--mist-200);
}

.detail-poster {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 1px solid rgba(188, 204, 220, 0.12);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.side-card {
  margin-top: 20px;
  padding: 18px;
}

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

.mini-card {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 12px;
  border-radius: 16px;
}

.mini-card .poster-box {
  aspect-ratio: 3 / 4;
}

.mini-card .card-body {
  min-height: 0;
  padding: 10px 12px 10px 0;
}

.mini-card .year-badge,
.mini-card .score-badge,
.mini-card .poster-shade {
  display: none;
}

.large-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  margin-bottom: 24px;
}

.empty-state {
  margin: 24px 0 0;
  padding: 20px;
  color: var(--mist-200);
  text-align: center;
  border: 1px solid rgba(188, 204, 220, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(36, 59, 83, 0.58);
}

.site-footer {
  border-top: 1px solid rgba(188, 204, 220, 0.12);
  background: rgba(7, 26, 45, 0.56);
}

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

.footer-logo {
  display: inline-block;
  margin-bottom: 14px;
  color: white;
  font-size: 22px;
  font-weight: 900;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-links a {
  padding: 7px 11px;
  color: var(--mist-200);
  border-radius: 999px;
  background: rgba(36, 59, 83, 0.58);
}

.footer-inner p {
  margin: 0;
  color: var(--mist-300);
}

[hidden] {
  display: none !important;
}

@media (max-width: 1180px) {
  .movie-grid,
  .compact-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

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

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

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 44px 0 76px;
  }

  .hero-poster {
    max-width: 260px;
    transform: none;
  }

  .hero-arrow {
    display: none;
  }

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

  .filter-row {
    grid-template-columns: 1fr;
  }

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

  .preview-list {
    grid-template-columns: 1fr;
  }

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

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

  .side-card {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .nav-wrap {
    width: min(100% - 24px, 1280px);
    height: 66px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-text strong {
    font-size: 18px;
  }

  .brand-text small {
    display: none;
  }

  .hero-section {
    min-height: 650px;
  }

  .hero-content {
    min-height: 650px;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: 36px;
  }

  .section,
  .detail-page,
  .page-hero {
    width: min(100% - 24px, 1280px);
  }

  .page-hero {
    margin-top: 20px;
    padding: 28px;
  }

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

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

  .card-body {
    min-height: 142px;
    padding: 12px;
  }

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

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

  .rank-score {
    display: none;
  }

  .detail-article,
  .content-card,
  .side-card {
    padding: 18px;
  }

  .detail-title-row {
    flex-direction: column;
  }

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

  .detail-poster {
    max-width: 260px;
  }

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