:root {
  color-scheme: dark;
  --bg: #020617;
  --bg-soft: #0f172a;
  --panel: rgba(15, 23, 42, 0.78);
  --panel-strong: rgba(30, 41, 59, 0.9);
  --line: rgba(148, 163, 184, 0.18);
  --text: #f8fafc;
  --muted: #94a3b8;
  --soft: #cbd5e1;
  --amber: #f59e0b;
  --amber-light: #fcd34d;
  --orange: #f97316;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius: 22px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.16), transparent 28rem),
    radial-gradient(circle at top right, rgba(14, 165, 233, 0.12), transparent 30rem),
    linear-gradient(180deg, #020617 0%, #0f172a 46%, #020617 100%);
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.82), rgba(30, 41, 59, 0.78));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.94));
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.32);
}

.nav-shell {
  width: min(1200px, calc(100% - 32px));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

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

.brand-mark,
.footer-logo span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #111827;
  font-weight: 900;
  background: linear-gradient(135deg, var(--amber-light), var(--orange));
  box-shadow: 0 0 36px rgba(245, 158, 11, 0.45);
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong {
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1;
  background: linear-gradient(90deg, var(--amber-light), #fde68a, var(--amber));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-text small {
  color: var(--muted);
  font-size: 12px;
}

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

.nav-link {
  padding: 10px 16px;
  border-radius: 14px;
  color: #d1d5db;
  font-size: 14px;
  font-weight: 650;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #fde68a;
  background: rgba(245, 158, 11, 0.16);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: #e5e7eb;
}

.hero {
  position: relative;
  height: min(820px, 82vh);
  min-height: 620px;
  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-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  filter: saturate(1.06) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.95) 0%, rgba(2, 6, 23, 0.7) 42%, rgba(2, 6, 23, 0.15) 100%),
    linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.12) 45%, rgba(2, 6, 23, 0.28) 100%);
}

.hero-content {
  position: absolute;
  z-index: 2;
  left: max(24px, calc((100vw - 1200px) / 2));
  bottom: 128px;
  width: min(720px, calc(100% - 48px));
  display: grid;
  gap: 22px;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--amber-light);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-kicker span {
  width: 54px;
  height: 4px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--amber-light), var(--orange));
}

.hero h1,
.hero h2 {
  margin: 0;
  font-size: clamp(36px, 6vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.05em;
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.42);
}

.hero p {
  margin: 0;
  color: #d1d5db;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.75;
  max-width: 760px;
}

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

.hero-meta span,
.detail-meta span,
.card-tags span,
.tag-cloud a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 11px;
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 999px;
  color: #f8fafc;
  background: rgba(15, 23, 42, 0.66);
  backdrop-filter: blur(10px);
  font-size: 12px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 14px;
  font-weight: 850;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.btn-primary {
  color: #111827;
  background: linear-gradient(135deg, var(--amber-light), var(--orange));
  box-shadow: 0 16px 40px rgba(245, 158, 11, 0.32);
}

.btn-soft,
.section-link {
  color: #fde68a;
  border: 1px solid rgba(245, 158, 11, 0.26);
  background: rgba(245, 158, 11, 0.1);
}

.hero-dots {
  position: absolute;
  z-index: 4;
  left: max(24px, calc((100vw - 1200px) / 2));
  bottom: 68px;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 36px;
  height: 5px;
  border: 0;
  border-radius: 99px;
  background: rgba(148, 163, 184, 0.48);
  transition: width 0.3s ease, background 0.3s ease;
}

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

.hero-quick {
  position: absolute;
  z-index: 5;
  right: max(24px, calc((100vw - 1200px) / 2));
  bottom: 54px;
  width: min(430px, calc(100% - 48px));
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.hero-quick a {
  padding: 9px 13px;
  border-radius: 999px;
  color: #e2e8f0;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
  font-size: 13px;
}

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

.inner-page {
  padding-top: 96px;
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: -38px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.86), rgba(30, 41, 59, 0.72));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.intro-copy h2,
.section-head h2,
.page-hero h1,
.detail-article h1,
.detail-article h2,
.side-card h2,
.category-overview h2,
.site-footer h2 {
  margin: 0;
  color: var(--text);
}

.intro-copy h2,
.section-head h2 {
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.15;
}

.intro-copy p,
.section-head span,
.category-overview p,
.page-hero span,
.detail-article p,
.site-footer p {
  color: var(--muted);
  line-height: 1.75;
}

.intro-copy p {
  margin: 12px 0 0;
}

.intro-stats {
  display: flex;
  gap: 14px;
}

.intro-stats span {
  min-width: 110px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(2, 6, 23, 0.36);
  border: 1px solid var(--line);
  text-align: center;
}

.intro-stats strong {
  display: block;
  font-size: 24px;
  color: #fde68a;
}

.intro-stats small {
  color: var(--muted);
}

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

.section-head p,
.page-hero p,
.detail-title-row p {
  margin: 0 0 8px;
  color: var(--amber-light);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.section-link {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

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

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

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

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

.movie-card {
  display: grid;
  gap: 12px;
  min-width: 0;
  padding: 12px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.56);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.18);
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
  content-visibility: auto;
  contain-intrinsic-size: 330px;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 158, 11, 0.42);
  background: rgba(30, 41, 59, 0.82);
}

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

.poster-wrap img,
.category-card img,
.cover-side img,
.player-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poster-wrap img,
.category-card img {
  transition: transform 0.5s ease;
}

.movie-card:hover .poster-wrap img,
.category-card:hover img {
  transform: scale(1.08);
}

.poster-shade,
.category-card-shade,
.player-dim {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.78), transparent 58%);
}

.poster-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  font-size: 38px;
  color: white;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
}

.movie-card:hover .poster-play {
  opacity: 1;
}

.poster-duration {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 5px 8px;
  border-radius: 8px;
  color: white;
  background: rgba(0, 0, 0, 0.62);
  font-size: 12px;
}

.movie-card-body {
  display: grid;
  gap: 8px;
}

.movie-card-body strong {
  display: -webkit-box;
  min-height: 48px;
  overflow: hidden;
  color: var(--text);
  font-size: 17px;
  line-height: 1.4;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-card-body small {
  color: var(--muted);
  font-size: 12px;
}

.movie-card-body em {
  display: -webkit-box;
  min-height: 44px;
  overflow: hidden;
  color: #cbd5e1;
  font-size: 13px;
  line-height: 1.65;
  font-style: normal;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.card-compact .movie-card-body strong {
  min-height: auto;
}

.card-compact .movie-card-body em {
  display: none;
}

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

.category-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.72);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.2);
}

.category-card strong,
.category-card em {
  position: absolute;
  left: 18px;
  right: 18px;
  z-index: 2;
}

.category-card strong {
  bottom: 58px;
  color: white;
  font-size: 22px;
}

.category-card em {
  bottom: 20px;
  color: #cbd5e1;
  font-size: 13px;
  font-style: normal;
  line-height: 1.5;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 16px;
  align-items: end;
  margin: 0 0 26px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.68);
  backdrop-filter: blur(16px);
}

.search-box input,
.filter-fields input,
.filter-fields select {
  width: 100%;
  height: 46px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 14px;
  color: var(--text);
  outline: 0;
  background: rgba(2, 6, 23, 0.56);
  padding: 0 14px;
}

.search-box input:focus,
.filter-fields input:focus,
.filter-fields select:focus {
  border-color: rgba(245, 158, 11, 0.62);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.08);
}

.filter-fields {
  display: grid;
  grid-template-columns: repeat(3, 150px);
  gap: 12px;
}

.filter-fields label {
  display: grid;
  gap: 6px;
}

.filter-fields span {
  color: var(--muted);
  font-size: 12px;
}

.empty-state {
  padding: 42px;
  border: 1px dashed rgba(148, 163, 184, 0.3);
  border-radius: 20px;
  color: var(--muted);
  text-align: center;
}

.page-hero {
  width: min(1200px, calc(100% - 32px));
  min-height: 320px;
  margin: 0 auto;
  display: grid;
  align-items: end;
  padding: 58px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(245, 158, 11, 0.2), transparent 42%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.78));
  box-shadow: var(--shadow);
}

.page-hero h1 {
  font-size: clamp(34px, 5vw, 62px);
  letter-spacing: -0.04em;
}

.page-hero span {
  display: block;
  max-width: 820px;
  margin-top: 16px;
  font-size: 17px;
}

.category-overview {
  margin-bottom: 34px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.54);
}

.category-overview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.category-overview h2 {
  font-size: 28px;
}

.category-overview p {
  margin: 8px 0 0;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 52px 112px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.58);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.rank-row:hover {
  transform: translateX(4px);
  border-color: rgba(245, 158, 11, 0.38);
  background: rgba(30, 41, 59, 0.78);
}

.rank-number {
  color: #fde68a;
  font-size: 20px;
  font-weight: 900;
  text-align: center;
}

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

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

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

.rank-info small,
.rank-views {
  color: var(--muted);
  font-size: 13px;
}

.breadcrumb {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a:hover {
  color: #fde68a;
}

.detail-layout {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 2fr) 360px;
  gap: 28px;
}

.detail-main {
  display: grid;
  gap: 24px;
}

.player-card {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 24px;
  background: #000;
  box-shadow: var(--shadow);
}

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

.player-cover {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  border: 0;
  color: white;
  background: transparent;
  padding: 0;
}

.player-cover.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-cover strong {
  position: absolute;
  z-index: 5;
  margin-top: 112px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(12px);
}

.big-play {
  position: relative;
  z-index: 5;
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #111827;
  background: linear-gradient(135deg, var(--amber-light), var(--orange));
  box-shadow: 0 20px 58px rgba(245, 158, 11, 0.42);
  font-size: 34px;
}

.detail-article,
.side-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.68);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
}

.detail-article {
  display: grid;
  gap: 24px;
  padding: 28px;
}

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

.detail-article h1 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.16;
}

.detail-article h2,
.side-card h2 {
  margin-bottom: 10px;
  font-size: 22px;
}

.lead-text {
  padding: 18px;
  border-left: 4px solid var(--amber);
  border-radius: 14px;
  background: rgba(245, 158, 11, 0.08);
  color: #e5e7eb !important;
  font-size: 17px;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.detail-side {
  display: grid;
  align-content: start;
  gap: 22px;
}

.side-card {
  padding: 18px;
}

.cover-side {
  display: grid;
  gap: 14px;
}

.cover-side img {
  height: 220px;
  border-radius: 18px;
}

.cover-side strong {
  display: block;
  margin-bottom: 6px;
  font-size: 20px;
}

.cover-side span {
  color: var(--muted);
}

.side-related {
  display: grid;
  gap: 10px;
}

.side-related .rank-row {
  grid-template-columns: 34px 76px minmax(0, 1fr);
  padding: 8px;
}

.side-related .rank-row img {
  width: 76px;
  height: 52px;
}

.side-related .rank-views {
  display: none;
}

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

.site-footer {
  margin-top: 40px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.58), rgba(2, 6, 23, 0.96));
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 22px;
}

.site-footer h2 {
  margin-bottom: 14px;
  font-size: 18px;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: var(--muted);
  font-size: 14px;
}

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

.footer-bottom {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

[hidden] {
  display: none !important;
}

@media (max-width: 1024px) {
  .movie-grid,
  .featured-grid,
  .compact-grid,
  .all-grid,
  .mini-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-side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .filter-panel,
  .intro-band {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .nav-shell {
    height: 66px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 66px;
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.96);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-link {
    width: 100%;
  }

  .brand-text small {
    display: none;
  }

  .hero {
    height: 720px;
    min-height: 720px;
  }

  .hero-content {
    bottom: 164px;
  }

  .hero-quick {
    left: 24px;
    right: 24px;
    bottom: 28px;
    justify-content: flex-start;
  }

  .hero-dots {
    bottom: 110px;
  }

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

  .intro-stats {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .intro-stats span {
    min-width: 0;
    padding: 14px 8px;
  }

  .movie-grid,
  .featured-grid,
  .compact-grid,
  .all-grid,
  .mini-grid,
  .category-grid,
  .footer-grid,
  .detail-side {
    grid-template-columns: 1fr;
  }

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

  .page-hero {
    min-height: 260px;
    padding: 34px 24px;
  }

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

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

  .rank-views {
    display: none;
  }

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