* {
  box-sizing: border-box;
}

:root {
  --bg: #f8fafc;
  --panel: #ffffff;
  --text: #111827;
  --muted: #64748b;
  --line: #e5e7eb;
  --emerald: #10b981;
  --emerald-dark: #059669;
  --cyan: #06b6d4;
  --blue: #3b82f6;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  --soft-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  --radius: 22px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.65;
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  display: inline-grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--emerald), var(--cyan));
  box-shadow: 0 12px 28px rgba(16, 185, 129, 0.32);
}

.brand-text {
  font-size: 23px;
  background: linear-gradient(135deg, var(--emerald-dark), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

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

.nav-link {
  color: #334155;
  font-weight: 650;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--emerald-dark);
}

.nav-link:hover {
  transform: translateY(-1px);
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 310px;
}

.header-search input,
.mobile-panel input,
.page-filter input,
.search-page-form input {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  padding: 11px 16px;
  color: #0f172a;
  background: #ffffff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input:focus,
.mobile-panel input:focus,
.page-filter input:focus,
.search-page-form input:focus {
  border-color: var(--emerald);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.14);
}

.header-search button,
.mobile-panel button,
.page-filter button,
.search-page-form button {
  border: 0;
  border-radius: 999px;
  padding: 11px 18px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--emerald), var(--cyan));
  cursor: pointer;
  font-weight: 700;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: #ecfeff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: #0f766e;
}

.mobile-panel {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
}

.mobile-panel nav,
.mobile-cats,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mobile-panel a,
.mobile-cats a,
.footer-links a {
  padding: 8px 12px;
  border-radius: 999px;
  color: #475569;
  background: #f1f5f9;
}

.mobile-panel form {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 58px 0 42px;
  color: #ffffff;
  background: linear-gradient(135deg, #10b981 0%, #06b6d4 52%, #3b82f6 100%);
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.12);
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  width: 290px;
  height: 290px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  filter: blur(34px);
  mix-blend-mode: overlay;
  animation: pulse 6s ease-in-out infinite;
}

.orb-one {
  top: 12px;
  left: 8%;
}

.orb-two {
  right: 5%;
  bottom: 10px;
  animation-delay: 1.8s;
}

.hero-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  min-height: 520px;
  margin: 0 auto;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.62fr);
  gap: 42px;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(0.985);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.hero-backdrop {
  position: absolute;
  inset: 0;
  border-radius: 34px;
  background-image: linear-gradient(90deg, rgba(15, 23, 42, 0.62), rgba(15, 23, 42, 0.1)), var(--hero-image);
  background-size: cover;
  background-position: center;
  box-shadow: 0 35px 90px rgba(15, 23, 42, 0.24);
  opacity: 0.58;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 56px;
}

.hero-kicker,
.eyebrow {
  margin: 0 0 12px;
  color: #a7f3d0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.hero-desc {
  max-width: 690px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
}

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

.hero-tags {
  margin-top: 24px;
}

.hero-tags span,
.detail-meta span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 700;
}

.hero-tags span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn.primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--emerald), var(--cyan));
  box-shadow: 0 16px 36px rgba(6, 182, 212, 0.26);
}

.btn.ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.btn.ghost.dark {
  color: #0f172a;
  background: #ffffff;
  border-color: #e2e8f0;
}

.btn.small {
  padding: 10px 16px;
  font-size: 14px;
}

.hero-poster {
  position: relative;
  z-index: 2;
  width: min(340px, 100%);
  aspect-ratio: 2 / 3;
  justify-self: center;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.24);
  border-radius: 28px;
  box-shadow: 0 34px 70px rgba(15, 23, 42, 0.32);
  transform: rotate(2deg);
}

.hero-controls {
  position: absolute;
  z-index: 3;
  left: 56px;
  bottom: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-prev,
.hero-next,
.hero-dot {
  border: 0;
  cursor: pointer;
}

.hero-prev,
.hero-next {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
  font-size: 30px;
  line-height: 1;
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 255, 255, 0.42);
}

.hero-dot.active {
  width: 28px;
  background: #ffffff;
}

.hero-stats {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 26px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.hero-stats a {
  display: block;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 22px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}

.hero-stats strong {
  display: block;
  font-size: 22px;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.82);
}

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

.content-section.tinted {
  width: 100%;
  max-width: none;
  padding: 62px max(16px, calc((100vw - 1180px) / 2));
  background: linear-gradient(180deg, #f8fafc, #eefdf8);
}

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

.section-head h2,
.panel-head h2,
.site-footer h2,
.article-card h2 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(24px, 3.5vw, 38px);
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.section-head p:not(.eyebrow) {
  max-width: 740px;
  margin: 8px 0 0;
  color: var(--muted);
}

.section-more,
.panel-head a {
  color: var(--emerald-dark);
  font-weight: 800;
}

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

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(16, 185, 129, 0.38);
  box-shadow: var(--shadow);
}

.poster-wrap {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #d1fae5, #cffafe);
}

.poster-wrap img {
  transition: transform 0.35s ease, filter 0.35s ease;
}

.movie-card:hover .poster-wrap img {
  transform: scale(1.06);
  filter: saturate(1.1);
}

.poster-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  border-radius: 999px;
  padding: 5px 10px;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.62);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 800;
}

.card-body {
  padding: 16px;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--emerald-dark);
  font-size: 12px;
  font-weight: 800;
}

.card-meta span {
  color: #94a3b8;
}

.card-body h2 {
  margin: 0;
  color: #0f172a;
  font-size: 18px;
  line-height: 1.32;
  letter-spacing: -0.02em;
}

.card-body h2 a:hover {
  color: var(--emerald-dark);
}

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

.tag-row span {
  color: #047857;
  background: #ecfdf5;
}

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

.category-tile,
.category-overview-card {
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover,
.category-overview-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.category-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 140px;
}

.category-tile strong {
  display: block;
  margin: 16px 16px 6px;
  color: #0f172a;
  font-size: 19px;
}

.category-tile span {
  display: block;
  margin: 0 16px 18px;
  color: var(--muted);
  font-size: 14px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 30px;
  align-items: start;
}

.ranking-panel {
  border: 1px solid #e2e8f0;
  border-radius: 28px;
  padding: 22px;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
}

.sticky-panel {
  position: sticky;
  top: 92px;
}

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

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

.rank-item {
  display: grid;
  grid-template-columns: auto 54px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 18px;
  background: #f8fafc;
  transition: background 0.2s ease, transform 0.2s ease;
}

.rank-item:hover {
  background: #ecfdf5;
  transform: translateX(3px);
}

.rank-item img {
  width: 54px;
  height: 74px;
  border-radius: 12px;
}

.rank-number {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--emerald), var(--cyan));
  font-size: 13px;
  font-weight: 900;
}

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

.rank-item strong {
  color: #0f172a;
}

.rank-item em {
  color: #64748b;
  font-size: 13px;
  font-style: normal;
}

.page-hero {
  padding: 74px max(16px, calc((100vw - 1180px) / 2));
  color: #ffffff;
  background: linear-gradient(135deg, #059669, #06b6d4 55%, #3b82f6);
}

.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.page-hero p:not(.eyebrow) {
  max-width: 820px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.page-filter,
.search-page-form {
  max-width: 680px;
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
}

.category-cover {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  min-height: 300px;
}

.category-overview-body {
  padding: 22px;
}

.category-overview-body h2 {
  margin: 0 0 8px;
  font-size: 25px;
}

.category-overview-body p {
  margin: 0 0 18px;
  color: var(--muted);
}

.rank-list.slim {
  margin-bottom: 18px;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: #0f172a;
}

.detail-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.68)), var(--detail-image);
  background-size: cover;
  background-position: center;
  filter: blur(2px) saturate(1.08);
  transform: scale(1.04);
}

.detail-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 44px 0 58px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.breadcrumbs a:hover {
  color: #ffffff;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 34px;
  align-items: center;
}

.player-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: #020617;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.42);
  aspect-ratio: 16 / 9;
}

.player-video {
  display: block;
  width: 100%;
  height: 100%;
  background: #020617;
  cursor: pointer;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.18), rgba(15, 23, 42, 0.42));
  cursor: pointer;
}

.play-overlay span {
  width: 82px;
  height: 82px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  padding-left: 5px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--emerald), var(--cyan));
  box-shadow: 0 20px 45px rgba(6, 182, 212, 0.36);
  font-size: 32px;
}

.play-overlay.is-hidden {
  display: none;
}

.detail-info h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.detail-one-line {
  margin: 18px 0 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.detail-meta span {
  color: #d1fae5;
  background: rgba(255, 255, 255, 0.12);
}

.detail-tags {
  margin-top: 18px;
}

.detail-tags span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
}

.detail-content {
  display: grid;
  gap: 18px;
}

.article-card {
  border: 1px solid #e2e8f0;
  border-radius: 28px;
  padding: 28px;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
}

.article-card h2 {
  margin-bottom: 12px;
  font-size: 28px;
}

.article-card p {
  margin: 0;
  color: #334155;
  font-size: 17px;
}

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

.prev-next a {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 14px 16px;
  color: #0f766e;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
  font-weight: 800;
}

.site-footer {
  border-top: 1px solid #e2e8f0;
  background: linear-gradient(180deg, #ffffff, #f1f5f9);
}

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

.footer-brand p {
  max-width: 420px;
  color: var(--muted);
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  border-top: 1px solid #e2e8f0;
  padding: 18px 0;
  color: #64748b;
  font-size: 14px;
}

[hidden] {
  display: none !important;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.56;
  }
  50% {
    transform: scale(1.12);
    opacity: 0.9;
  }
}

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

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

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

  .menu-toggle {
    display: block;
  }

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

  .hero-slide,
  .detail-grid,
  .split-section,
  .footer-grid,
  .category-overview-card {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 34px;
  }

  .hero-poster {
    width: min(280px, 78vw);
  }

  .hero-controls {
    left: 34px;
    bottom: 28px;
  }

  .hero-stats,
  .category-overview-grid,
  .rank-list.expanded,
  .prev-next {
    grid-template-columns: 1fr;
  }

  .sticky-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  .brand-text {
    font-size: 19px;
  }

  .hero-section {
    padding-top: 34px;
  }

  .hero-shell {
    min-height: 760px;
  }

  .hero-slide {
    gap: 20px;
  }

  .hero-backdrop {
    border-radius: 26px;
  }

  .hero-copy {
    padding: 28px;
  }

  .hero-desc,
  .detail-one-line,
  .page-hero p:not(.eyebrow) {
    font-size: 16px;
  }

  .movie-grid,
  .home-grid,
  .mini-grid,
  .ranking-grid,
  .category-movie-grid,
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .card-body {
    padding: 13px;
  }

  .card-body h2 {
    font-size: 16px;
  }

  .section-head,
  .panel-head {
    align-items: start;
    flex-direction: column;
  }

  .page-filter,
  .search-page-form,
  .mobile-panel form {
    flex-direction: column;
  }

  .rank-item {
    grid-template-columns: auto 48px minmax(0, 1fr);
  }

  .rank-item img {
    width: 48px;
    height: 66px;
  }

  .footer-grid {
    gap: 22px;
  }
}

@media (max-width: 460px) {
  .nav-shell {
    width: min(100% - 22px, 1180px);
  }

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

  .brand-text {
    max-width: 145px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-shell {
    min-height: 700px;
  }

  .hero-copy {
    padding: 22px;
  }

  .hero-actions,
  .detail-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .movie-grid,
  .home-grid,
  .mini-grid,
  .ranking-grid,
  .category-movie-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats a,
  .article-card,
  .ranking-panel {
    padding: 18px;
  }
}
