* {
  box-sizing: border-box;
}

:root {
  --sky: #0ea5e9;
  --sky-dark: #0369a1;
  --amber: #f59e0b;
  --amber-dark: #b45309;
  --ink: #111827;
  --muted: #667085;
  --line: rgba(14, 165, 233, 0.18);
  --soft: #f8fafc;
  --card: rgba(255, 255, 255, 0.88);
  --shadow: 0 22px 70px rgba(15, 23, 42, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, rgba(240, 249, 255, 0.65) 48%, rgba(255, 251, 235, 0.8) 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  line-height: 1.65;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(14, 165, 233, 0.18);
  background: linear-gradient(90deg, rgba(240, 249, 255, 0.96), rgba(255, 251, 235, 0.96), rgba(240, 249, 255, 0.96));
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 800;
  font-size: 22px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--sky), var(--amber));
  box-shadow: 0 14px 30px rgba(14, 165, 233, 0.28);
}

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

.brand-copy strong {
  font-size: 22px;
  letter-spacing: -0.03em;
  background: linear-gradient(90deg, var(--sky-dark), var(--amber-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-copy small {
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
}

.brand.small .brand-mark {
  width: 38px;
  height: 38px;
  font-size: 19px;
}

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

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

.main-nav a {
  padding: 10px 16px;
  color: #374151;
  border-radius: 14px;
  transition: 0.25s ease;
}

.main-nav a:hover {
  color: var(--sky-dark);
  background: linear-gradient(90deg, rgba(224, 242, 254, 0.9), rgba(254, 243, 199, 0.9));
}

.nav-search {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
}

.nav-search input,
.filter-bar input,
.filter-bar select {
  height: 42px;
  border: 1px solid rgba(14, 165, 233, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  padding: 0 16px;
  color: var(--ink);
  outline: none;
  box-shadow: 0 8px 22px rgba(14, 165, 233, 0.08);
}

.nav-search input:focus,
.filter-bar input:focus,
.filter-bar select:focus {
  border-color: rgba(14, 165, 233, 0.65);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.13);
}

.nav-search button {
  height: 42px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  color: #ffffff;
  background: linear-gradient(90deg, var(--sky), var(--amber));
  cursor: pointer;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  border-radius: 12px;
  background: rgba(14, 165, 233, 0.1);
  color: var(--sky-dark);
  width: 42px;
  height: 42px;
  font-size: 22px;
  cursor: pointer;
}

.hero {
  position: relative;
  height: 620px;
  overflow: hidden;
  background: #0f172a;
}

.hero-static-title {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

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

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

.hero-slide img,
.detail-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade,
.detail-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 32%, rgba(245, 158, 11, 0.28), transparent 34%),
    linear-gradient(90deg, rgba(2, 6, 23, 0.86) 0%, rgba(15, 23, 42, 0.55) 48%, rgba(15, 23, 42, 0.1) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1240px, calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
  max-width: 760px;
}

.hero-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 8px 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(14, 165, 233, 0.82), rgba(245, 158, 11, 0.82));
  backdrop-filter: blur(12px);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero-content h2 {
  margin: 22px 0 14px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.06em;
  text-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.hero-content p {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 22px);
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

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

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

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

.hero-tags span {
  color: #ffffff;
  padding: 7px 13px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
}

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

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

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

.btn.primary {
  color: #ffffff;
  background: linear-gradient(90deg, var(--sky), var(--amber));
  box-shadow: 0 16px 40px rgba(14, 165, 233, 0.26);
}

.btn.ghost {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(14px);
}

.btn.ghost.light {
  color: var(--sky-dark);
  border-color: rgba(14, 165, 233, 0.25);
  background: rgba(255, 255, 255, 0.76);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  cursor: pointer;
  font-size: 42px;
  line-height: 42px;
  transition: 0.25s ease;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-50%) scale(1.06);
}

.hero-arrow.prev {
  left: 22px;
  transform: translateY(-50%);
}

.hero-arrow.next {
  right: 22px;
  transform: translateY(-50%);
}

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

.hero-dots button {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  cursor: pointer;
  transition: 0.25s ease;
}

.hero-dots button.is-active {
  width: 34px;
  background: #ffffff;
}

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

.soft-section {
  background: linear-gradient(90deg, rgba(224, 242, 254, 0.48), rgba(254, 243, 199, 0.58));
}

.soft-section .inner {
  padding: 72px 0;
}

.section-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
}

.section-title-line {
  width: 5px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--sky), var(--amber));
  flex-shrink: 0;
  margin-top: 5px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.section-head p {
  margin: 8px 0 0;
  color: var(--muted);
}

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

.movie-card {
  overflow: hidden;
  border-radius: 24px;
  background: var(--card);
  border: 1px solid rgba(14, 165, 233, 0.14);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.16);
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.16), rgba(245, 158, 11, 0.16));
}

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

.movie-card:hover .poster-link img {
  transform: scale(1.07);
}

.poster-year,
.poster-play {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 800;
  border-radius: 999px;
  backdrop-filter: blur(12px);
}

.poster-year {
  top: 14px;
  left: 14px;
  padding: 5px 11px;
  font-size: 12px;
  background: rgba(14, 165, 233, 0.78);
}

.poster-play {
  right: 14px;
  bottom: 14px;
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--sky), var(--amber));
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.22);
}

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

.card-meta,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.card-meta span,
.detail-meta span {
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.09);
}

.movie-card h3 {
  margin: 12px 0 8px;
  font-size: 19px;
  line-height: 1.28;
}

.movie-card h3 a:hover,
.rank-info h3 a:hover,
.text-link:hover {
  color: var(--sky-dark);
}

.movie-card p {
  min-height: 68px;
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
}

.tag-row span {
  color: var(--sky-dark);
  padding: 5px 10px;
  background: rgba(224, 242, 254, 0.8);
}

.movie-rail {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 4px 4px 20px;
  scroll-snap-type: x proximity;
}

.rail-item {
  width: 340px;
  min-width: 340px;
  scroll-snap-align: start;
}

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

.category-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border-radius: 26px;
  color: #ffffff;
  box-shadow: var(--shadow);
}

.category-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(2, 6, 23, 0.82));
}

.category-card span,
.category-card p {
  position: relative;
  z-index: 2;
  display: block;
  padding: 0 20px;
}

.category-card span {
  margin-top: 120px;
  font-size: 21px;
  font-weight: 900;
}

.category-card p {
  margin: 7px 0 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.category-card:hover img {
  transform: scale(1.08);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.6fr);
  gap: 32px;
  align-items: start;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 58px 104px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 14px;
  border: 1px solid rgba(14, 165, 233, 0.13);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
}

.rank-index {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--sky), var(--amber));
}

.rank-thumb {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

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

.rank-info h3 {
  margin: 0 0 6px;
  font-size: 19px;
}

.rank-info p {
  margin: 0 0 8px;
  color: var(--muted);
}

.rank-action,
.text-link {
  color: var(--sky-dark);
  font-weight: 800;
}

.rank-action {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(224, 242, 254, 0.85);
}

.promo-card {
  position: sticky;
  top: 104px;
  padding: 34px;
  color: #ffffff;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--sky), var(--amber));
  box-shadow: var(--shadow);
}

.promo-card h2 {
  margin: 0 0 14px;
  font-size: 34px;
  line-height: 1.15;
}

.promo-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}

.page-hero {
  position: relative;
  width: min(1240px, calc(100% - 32px));
  margin: 46px auto 0;
  padding: 64px;
  overflow: hidden;
  color: #ffffff;
  border-radius: 34px;
  background:
    radial-gradient(circle at 82% 24%, rgba(255, 255, 255, 0.26), transparent 30%),
    linear-gradient(135deg, var(--sky-dark), var(--sky), var(--amber));
  box-shadow: var(--shadow);
}

.page-hero span {
  display: inline-flex;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-weight: 800;
}

.page-hero h1 {
  max-width: 820px;
  margin: 18px 0 12px;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.06;
  letter-spacing: -0.06em;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.filter-bar {
  display: flex;
  gap: 14px;
  margin-bottom: 28px;
}

.filter-bar input {
  flex: 1;
}

.filter-bar select {
  min-width: 160px;
}

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

.channel-overview-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 22px;
  padding: 20px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  border: 1px solid rgba(14, 165, 233, 0.12);
}

.channel-covers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.channel-covers img {
  width: 100%;
  height: 96px;
  object-fit: cover;
  border-radius: 16px;
}

.channel-covers img:first-child {
  grid-row: span 2;
  height: 200px;
}

.channel-overview-card h2 {
  margin: 4px 0 8px;
  font-size: 26px;
}

.channel-overview-card p {
  color: var(--muted);
}

.detail-hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: #0f172a;
}

.detail-bg {
  position: absolute;
  inset: 0;
  filter: blur(1px);
  transform: scale(1.02);
}

.detail-shell {
  position: relative;
  z-index: 2;
  width: min(1240px, calc(100% - 32px));
  min-height: 640px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  gap: 44px;
  align-items: center;
  color: #ffffff;
}

.detail-poster {
  overflow: hidden;
  border-radius: 32px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

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

.detail-copy h1 {
  margin: 20px 0 14px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.06em;
}

.detail-copy p {
  max-width: 780px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
}

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

.player-section {
  padding-top: 56px;
}

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

.player-head span {
  color: var(--sky-dark);
  font-weight: 800;
}

.player-head h2 {
  margin: 4px 0 0;
  font-size: clamp(28px, 3vw, 42px);
}

.player-box {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #030712;
  box-shadow: 0 28px 90px rgba(15, 23, 42, 0.28);
  aspect-ratio: 16 / 9;
}

.player-box video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #030712;
}

.player-cover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: radial-gradient(circle at center, rgba(14, 165, 233, 0.24), rgba(2, 6, 23, 0.42));
  cursor: pointer;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.player-cover span {
  width: 86px;
  height: 86px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border-radius: 50%;
  font-size: 34px;
  background: linear-gradient(135deg, var(--sky), var(--amber));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.player-box.is-playing .player-cover {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.article-card {
  padding: 38px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(14, 165, 233, 0.12);
  box-shadow: var(--shadow);
}

.article-card h2 {
  margin: 0 0 14px;
  font-size: 30px;
}

.article-card h2:not(:first-child) {
  margin-top: 34px;
}

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

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

.site-footer {
  margin-top: 40px;
  border-top: 1px solid rgba(14, 165, 233, 0.12);
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.9), rgba(241, 245, 249, 0.98));
}

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

.footer-brand p,
.footer-links p,
.footer-links a {
  color: var(--muted);
}

.footer-links h3 {
  margin: 0 0 14px;
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li + li {
  margin-top: 8px;
}

.footer-bottom {
  padding: 18px 16px;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid rgba(14, 165, 233, 0.1);
}

.is-hidden {
  display: none !important;
}

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

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

  .split-section,
  .detail-shell,
  .footer-shell,
  .channel-overview-grid {
    grid-template-columns: 1fr;
  }

  .promo-card {
    position: static;
  }
}

@media (max-width: 820px) {
  .nav-shell {
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav {
    display: none;
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    margin-left: 0;
  }

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

  .nav-search {
    width: 100%;
    order: 4;
    margin-left: 0;
  }

  .nav-search input {
    flex: 1;
  }

  .hero,
  .detail-hero,
  .detail-shell {
    min-height: 560px;
    height: auto;
  }

  .hero-content {
    padding: 120px 0 90px;
  }

  .hero-arrow {
    display: none;
  }

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

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

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

  .page-hero {
    padding: 42px 24px;
  }

  .detail-shell {
    padding: 44px 0;
  }

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

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

  .rank-action {
    display: none;
  }

  .filter-bar {
    flex-direction: column;
  }

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

@media (max-width: 560px) {
  .brand-copy strong {
    font-size: 18px;
  }

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

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

  .rail-item {
    width: 286px;
    min-width: 286px;
  }

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

  .rank-index {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    font-size: 13px;
  }

  .rank-info p,
  .rank-info .card-meta {
    display: none;
  }

  .article-card {
    padding: 24px;
  }
}
