
:root {
  --blue-950: #172554;
  --blue-900: #1e3a8a;
  --blue-800: #1e40af;
  --blue-700: #1d4ed8;
  --blue-600: #2563eb;
  --blue-100: #dbeafe;
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;
  --shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
  --soft-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--slate-900);
  background: var(--slate-50);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(14px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-600), var(--blue-900));
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.28);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-copy strong {
  font-size: 20px;
  color: var(--slate-900);
}

.brand-copy span {
  margin-top: 3px;
  font-size: 12px;
  color: var(--slate-500);
}

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

.nav-link {
  display: inline-flex;
  align-items: center;
  height: 42px;
  padding: 0 14px;
  color: var(--slate-600);
  border-bottom: 2px solid transparent;
  border-radius: 10px 10px 0 0;
  font-weight: 600;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--blue-700);
  border-color: var(--blue-600);
  background: var(--blue-100);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: var(--slate-100);
  border: 0;
  border-radius: 12px;
  cursor: pointer;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--slate-700);
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  padding: 12px 16px 20px;
  border-top: 1px solid var(--slate-200);
}

.mobile-link {
  display: block;
  padding: 12px 10px;
  color: var(--slate-700);
  border-radius: 10px;
  font-weight: 700;
}

.mobile-link:hover {
  color: var(--blue-700);
  background: var(--blue-100);
}

.hero {
  position: relative;
  min-height: 600px;
  color: var(--white);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero::after {
  position: absolute;
  inset: auto -160px -260px auto;
  width: 520px;
  height: 520px;
  content: "";
  background: radial-gradient(circle, rgba(147, 197, 253, 0.35), transparent 65%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 48px;
  align-items: center;
  min-height: 600px;
  padding: 56px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 12px;
  color: var(--blue-100);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.hero h1 {
  max-width: 760px;
  margin: 18px 0 0;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.hero-lead {
  max-width: 720px;
  margin: 22px 0 0;
  color: #dbeafe;
  font-size: 20px;
}

.hero-feature {
  max-width: 650px;
  margin-top: 28px;
  padding: 18px 20px;
  background: rgba(15, 23, 42, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(2, 6, 23, 0.24);
  backdrop-filter: blur(12px);
}

.hero-feature span {
  color: #bfdbfe;
  font-size: 13px;
  font-weight: 800;
}

.hero-feature strong {
  display: block;
  margin-top: 4px;
  font-size: 26px;
}

.hero-feature p {
  margin: 8px 0 0;
  color: #dbeafe;
}

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

.primary-button,
.secondary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
  color: var(--white);
  background: var(--blue-600);
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.28);
}

.primary-button.light {
  color: var(--blue-700);
  background: var(--white);
}

.secondary-button {
  color: var(--blue-700);
  background: var(--white);
}

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

.primary-button:hover,
.secondary-button:hover,
.ghost-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(15, 23, 42, 0.18);
}

.hero-panel {
  padding: 18px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(2, 6, 23, 0.32);
  backdrop-filter: blur(18px);
}

.hero-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.hero-panel-head strong {
  font-size: 20px;
}

.hero-panel-head span {
  color: #dbeafe;
  font-size: 12px;
}

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

.hero-thumb {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  background: rgba(15, 23, 42, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-thumb:hover,
.hero-thumb.is-active {
  background: rgba(255, 255, 255, 0.18);
  transform: translateX(-4px);
}

.hero-thumb img {
  width: 76px;
  height: 88px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--blue-800), var(--slate-900));
  border-radius: 12px;
}

.hero-thumb strong,
.hero-thumb em {
  display: block;
}

.hero-thumb strong {
  overflow: hidden;
  font-size: 15px;
  line-height: 1.3;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.hero-thumb em {
  margin-top: 4px;
  color: #bfdbfe;
  font-size: 12px;
  font-style: normal;
}

.feature-strip {
  background: var(--white);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 34px 0;
}

.feature-grid div {
  padding: 24px;
  text-align: center;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
}

.feature-grid strong,
.feature-grid span {
  display: block;
}

.feature-grid strong {
  color: var(--slate-900);
  font-size: 20px;
}

.feature-grid span {
  margin-top: 6px;
  color: var(--slate-500);
  font-size: 14px;
}

.content-section {
  padding: 76px 0;
}

.section-white {
  background: var(--white);
}

.soft-bg {
  background: linear-gradient(135deg, var(--slate-50), #eff6ff);
}

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

.section-heading h2 {
  margin: 0;
  color: var(--slate-900);
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.15;
}

.section-heading p {
  margin: 10px 0 0;
  color: var(--slate-500);
  font-size: 17px;
}

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

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

.category-tile {
  min-height: 220px;
  padding: 24px;
  color: var(--white);
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  box-shadow: var(--soft-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.category-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 30px;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 18px;
}

.category-tile strong,
.category-tile em {
  display: block;
}

.category-tile strong {
  font-size: 24px;
}

.category-tile em {
  margin-top: 8px;
  color: #dbeafe;
  font-style: normal;
  line-height: 1.45;
}

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

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

.movie-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 22px;
  box-shadow: var(--soft-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.poster-frame {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 250px;
  background: linear-gradient(135deg, var(--blue-800), var(--slate-900));
}

.poster-frame img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

img.is-missing {
  visibility: hidden;
}

.badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 6px 10px;
  color: var(--white);
  background: var(--blue-600);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.28);
}

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

.movie-card-body h3 {
  margin: 0;
  overflow: hidden;
  color: var(--slate-900);
  font-size: 20px;
  line-height: 1.3;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.movie-card-body h3 a:hover {
  color: var(--blue-700);
}

.movie-card-body p {
  display: -webkit-box;
  min-height: 48px;
  margin: 10px 0 0;
  overflow: hidden;
  color: var(--slate-600);
  font-size: 14px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  color: var(--slate-500);
  font-size: 13px;
}

.movie-meta span {
  padding: 3px 8px;
  background: var(--slate-100);
  border-radius: 999px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.tag {
  padding: 5px 9px;
  color: var(--blue-700);
  background: var(--blue-100);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.large-tags .tag {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
}

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

.rank-row {
  display: grid;
  grid-template-columns: 70px 86px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 20px;
  box-shadow: var(--soft-shadow);
}

.rank-index {
  display: grid;
  place-items: center;
  height: 54px;
  color: var(--blue-700);
  background: var(--blue-100);
  border-radius: 16px;
  font-size: 18px;
  font-weight: 900;
}

.rank-thumb {
  display: block;
  overflow: hidden;
  width: 86px;
  height: 108px;
  background: linear-gradient(135deg, var(--blue-800), var(--slate-900));
  border-radius: 14px;
}

.rank-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rank-content h3 {
  margin: 0;
  font-size: 20px;
}

.rank-content h3 a:hover {
  color: var(--blue-700);
}

.rank-content p {
  margin: 7px 0 0;
  color: var(--slate-600);
}

.rank-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 18px;
  color: var(--white);
  background: var(--blue-600);
  border-radius: 999px;
  font-weight: 800;
}

.cta-section {
  padding: 80px 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-900), var(--blue-600));
}

.cta-box {
  text-align: center;
}

.cta-box h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
}

.cta-box p {
  margin: 14px auto 28px;
  max-width: 760px;
  color: #dbeafe;
  font-size: 18px;
}

.page-hero,
.movie-detail-hero {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-900), var(--blue-600));
}

.page-hero {
  padding: 70px 0;
}

.small-hero {
  padding: 64px 0;
}

.page-hero h1,
.movie-detail-hero h1 {
  margin: 18px 0 0;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.12;
}

.page-hero p,
.movie-detail-hero p {
  max-width: 820px;
  margin: 16px 0 0;
  color: #dbeafe;
  font-size: 18px;
}

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

.breadcrumb a {
  color: var(--blue-700);
  font-weight: 800;
}

.breadcrumb.inverse {
  color: #dbeafe;
}

.breadcrumb.inverse a {
  color: var(--white);
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 22px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 24px;
  box-shadow: var(--soft-shadow);
}

.overview-cover {
  display: flex;
  align-items: end;
  min-height: 210px;
  padding: 20px;
  color: var(--white);
  background-size: cover;
  background-position: center;
  border-radius: 18px;
}

.overview-cover span {
  font-size: 24px;
  font-weight: 900;
}

.category-overview-card h2 {
  margin: 4px 0 8px;
}

.category-overview-card p {
  color: var(--slate-600);
}

.category-overview-card ul {
  margin: 14px 0;
  padding-left: 20px;
  color: var(--slate-700);
}

.filter-panel {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 20px;
  box-shadow: var(--soft-shadow);
}

.search-box {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 10px;
  min-width: 260px;
  padding: 0 15px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 14px;
}

.search-box input {
  width: 100%;
  height: 46px;
  background: transparent;
  border: 0;
  outline: none;
  font: inherit;
}

.filter-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-select {
  height: 48px;
  padding: 0 14px;
  color: var(--slate-700);
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  font: inherit;
  font-weight: 700;
}

.empty-state {
  margin-bottom: 28px;
  padding: 28px;
  color: var(--slate-500);
  text-align: center;
  background: var(--white);
  border: 1px dashed var(--slate-200);
  border-radius: 18px;
}

.movie-detail-hero {
  padding: 72px 0;
  background-size: cover;
  background-position: center;
}

.detail-hero-grid {
  display: grid;
  grid-template-columns: 1fr 310px;
  gap: 46px;
  align-items: center;
}

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

.detail-meta span {
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-weight: 800;
}

.detail-poster {
  min-height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  box-shadow: 0 26px 70px rgba(2, 6, 23, 0.4);
}

.detail-poster img {
  min-height: 420px;
}

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

.player-card,
.text-card,
.side-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 24px;
  box-shadow: var(--soft-shadow);
}

.player-card {
  overflow: hidden;
}

.video-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--slate-950);
}

.video-shell video {
  width: 100%;
  height: 100%;
  background: var(--slate-950);
  object-fit: contain;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: radial-gradient(circle, rgba(37, 99, 235, 0.30), rgba(2, 6, 23, 0.78));
  border: 0;
  cursor: pointer;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.play-circle {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  padding-left: 5px;
  color: var(--blue-700);
  background: var(--white);
  border-radius: 999px;
  font-size: 30px;
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.3);
}

.play-overlay strong {
  max-width: 80%;
  font-size: 22px;
}

.text-card,
.side-card {
  margin-top: 22px;
  padding: 26px;
}

.text-card:first-child,
.side-card:first-child {
  margin-top: 0;
}

.text-card h2,
.side-card h2 {
  margin: 0 0 14px;
  font-size: 25px;
}

.text-card p {
  margin: 0 0 14px;
  color: var(--slate-700);
  font-size: 17px;
}

.side-card dl {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 12px 14px;
  margin: 0;
}

.side-card dt {
  color: var(--slate-500);
  font-weight: 800;
}

.side-card dd {
  margin: 0;
  color: var(--slate-800);
}

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

.compact-card {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 16px;
}

.compact-poster {
  overflow: hidden;
  width: 66px;
  height: 82px;
  background: linear-gradient(135deg, var(--blue-800), var(--slate-900));
  border-radius: 12px;
}

.compact-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compact-info strong,
.compact-info em {
  display: block;
}

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

.compact-info em {
  margin-top: 4px;
  overflow: hidden;
  color: var(--slate-500);
  font-size: 12px;
  font-style: normal;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.site-footer {
  color: var(--white);
  background: var(--slate-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 42px 0;
}

.footer-brand {
  font-size: 24px;
  font-weight: 900;
}

.site-footer p {
  max-width: 760px;
  margin: 10px 0 0;
  color: #cbd5e1;
}

.footer-links {
  display: flex;
  gap: 16px;
}

.footer-links a {
  color: #dbeafe;
  font-weight: 800;
}

.footer-bottom {
  padding: 18px;
  color: #94a3b8;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

[hidden] {
  display: none !important;
}

@media (max-width: 1100px) {
  .hero-inner,
  .detail-hero-grid,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 620px;
  }

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

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

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

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

  .menu-button {
    display: block;
  }

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

  .hero-inner {
    gap: 30px;
    min-height: auto;
    padding: 48px 0;
  }

  .hero {
    min-height: auto;
  }

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

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

  .filter-panel {
    align-items: stretch;
    flex-direction: column;
  }

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

  .rank-row {
    grid-template-columns: 54px 70px 1fr;
  }

  .rank-action {
    display: none;
  }

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

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, 1280px);
  }

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

  .brand-copy span {
    display: none;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
  }

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

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

  .rank-row {
    grid-template-columns: 48px 1fr;
  }

  .rank-thumb {
    display: none;
  }

  .detail-meta span {
    font-size: 13px;
  }

  .text-card,
  .side-card {
    padding: 20px;
  }
}
