
:root {
  --bg: #020617;
  --panel: rgba(15, 23, 42, 0.72);
  --panel-strong: rgba(15, 23, 42, 0.92);
  --line: rgba(14, 165, 233, 0.22);
  --line-strong: rgba(56, 189, 248, 0.45);
  --text: #e2e8f0;
  --muted: #94a3b8;
  --subtle: #64748b;
  --sky: #38bdf8;
  --cyan: #22d3ee;
  --amber: #f59e0b;
  --radius: 18px;
  --shadow: 0 22px 70px rgba(2, 132, 199, 0.18);
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top left, rgba(14, 165, 233, 0.16), transparent 38rem),
    radial-gradient(circle at top right, rgba(34, 211, 238, 0.12), transparent 34rem),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
}

img {
  max-width: 100%;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.98), rgba(15, 23, 42, 0.92));
  border-bottom: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(2, 132, 199, 0.16);
  backdrop-filter: blur(18px);
}

.header-inner {
  max-width: 1280px;
  height: 64px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 22px;
}

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

.brand-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: linear-gradient(135deg, var(--sky), var(--cyan));
  box-shadow: 0 0 26px rgba(56, 189, 248, 0.38);
  font-size: 14px;
}

.brand-text {
  font-size: 20px;
  background: linear-gradient(90deg, var(--sky), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

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

.nav-link,
.dropdown-button {
  color: var(--text);
  font-size: 15px;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.dropdown-button:hover {
  color: var(--sky);
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 14px);
  width: 190px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.96);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: all 0.2s ease;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-menu a,
.mobile-panel a {
  display: block;
  padding: 10px 12px;
  color: var(--text);
  border-radius: 10px;
  font-size: 14px;
}

.dropdown-menu a:hover,
.mobile-panel a:hover {
  background: rgba(14, 165, 233, 0.12);
  color: var(--sky);
}

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

.header-search input,
.mobile-search input,
.filter-panel input,
.filter-panel select {
  min-height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(14, 165, 233, 0.25);
  background: rgba(15, 23, 42, 0.78);
  color: var(--text);
  padding: 0 16px;
  outline: none;
}

.header-search input:focus,
.mobile-search input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.14);
}

.header-search button,
.mobile-search button {
  height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(90deg, #0ea5e9, #06b6d4);
  font-weight: 700;
}

.mobile-toggle {
  display: none;
  margin-left: auto;
  color: var(--text);
  font-size: 24px;
}

.mobile-panel {
  border-top: 1px solid var(--line);
  padding: 12px 20px 18px;
  background: rgba(2, 6, 23, 0.98);
}

.mobile-search {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.mobile-search input {
  flex: 1;
}

.main-with-header {
  padding-top: 64px;
}

.page-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.standard-page {
  padding-top: 48px;
  padding-bottom: 72px;
}

.hero-carousel {
  position: relative;
  min-height: 560px;
  height: 72vh;
  overflow: hidden;
  background: #020617;
}

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

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

.hero-poster {
  position: absolute;
  inset: 0;
  border-radius: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(2, 6, 23, 0.76) 48%, rgba(2, 6, 23, 0.18)),
    linear-gradient(0deg, rgba(2, 6, 23, 0.92), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.hero-meta,
.hero-tags,
.detail-meta,
.ranking-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.hero-meta span,
.hero-meta strong {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.7);
  color: white;
  backdrop-filter: blur(8px);
}

.hero-meta strong {
  background: rgba(245, 158, 11, 0.9);
}

.hero-content h1 {
  max-width: 760px;
  margin: 18px 0 16px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1.05;
  font-weight: 900;
  color: white;
  letter-spacing: -0.04em;
  text-shadow: 0 18px 50px rgba(2, 6, 23, 0.9);
}

.hero-content p {
  max-width: 690px;
  color: #cbd5e1;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.7;
}

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

.hero-tags span,
.tag-row span,
.detail-meta span,
.detail-meta a,
.ranking-meta span,
.ranking-meta strong {
  border-radius: 999px;
  border: 1px solid rgba(14, 165, 233, 0.24);
  background: rgba(15, 23, 42, 0.62);
  color: #bae6fd;
  padding: 6px 11px;
  font-size: 13px;
}

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

.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: all 0.25s ease;
}

.primary-button {
  color: white;
  background: linear-gradient(90deg, #0ea5e9, #06b6d4);
  box-shadow: 0 16px 34px rgba(14, 165, 233, 0.28);
}

.primary-button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 22px 45px rgba(14, 165, 233, 0.38);
}

.ghost-button {
  color: #e0f2fe;
  border: 1px solid rgba(125, 211, 252, 0.35);
  background: rgba(15, 23, 42, 0.48);
}

.ghost-button:hover {
  border-color: var(--sky);
  background: rgba(14, 165, 233, 0.16);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  transform: translateY(-50%);
  color: white;
  background: rgba(2, 6, 23, 0.55);
  border: 1px solid rgba(125, 211, 252, 0.2);
  font-size: 34px;
  line-height: 1;
  transition: all 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(14, 165, 233, 0.3);
  transform: translateY(-50%) scale(1.08);
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

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

.hero-dots button {
  width: 20px;
  height: 5px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.6);
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dots button.active {
  width: 42px;
  background: var(--sky);
}

.home-sections {
  padding-top: 56px;
  padding-bottom: 80px;
}

.home-sections,
.content-section,
.detail-main {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.content-section {
  margin-bottom: 54px;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.section-heading > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-heading h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 850;
  color: var(--text);
}

.section-icon {
  color: var(--amber);
  font-size: 24px;
}

.section-more {
  color: var(--sky);
  font-weight: 700;
}

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

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

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

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

.movie-card {
  border: 1px solid rgba(14, 165, 233, 0.18);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.56);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  border-color: rgba(56, 189, 248, 0.56);
  box-shadow: 0 18px 42px rgba(14, 165, 233, 0.18);
}

.poster-frame {
  position: relative;
  overflow: hidden;
  min-height: 180px;
  background:
    linear-gradient(135deg, rgba(14, 165, 233, 0.32), rgba(15, 23, 42, 0.94)),
    radial-gradient(circle at 80% 20%, rgba(34, 211, 238, 0.36), transparent 32rem);
}

.poster-frame::before {
  content: attr(data-title);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: rgba(226, 232, 240, 0.82);
  text-align: center;
  font-weight: 850;
  font-size: 20px;
  line-height: 1.35;
  z-index: 0;
}

.poster-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.poster-frame.image-missing img {
  display: none;
}

.movie-card:hover .poster-frame img,
.ranking-card:hover .ranking-poster img,
.related-side-item:hover img,
.rank-item:hover img {
  transform: scale(1.08);
}

.movie-card .poster-frame {
  aspect-ratio: 2 / 3;
}

.play-mask {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.9), rgba(2, 6, 23, 0.12));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.play-mask span {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
  background: rgba(14, 165, 233, 0.82);
  color: white;
  box-shadow: 0 12px 32px rgba(14, 165, 233, 0.38);
}

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

.year-badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 3;
  border-radius: 999px;
  padding: 5px 10px;
  color: #cbd5e1;
  background: rgba(2, 6, 23, 0.78);
  font-size: 12px;
}

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

.movie-card h3 {
  min-height: 42px;
  color: var(--text);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-card p {
  min-height: 38px;
  margin-top: 8px;
  color: var(--subtle);
  font-size: 13px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}

.tag-row span {
  padding: 4px 8px;
  color: var(--sky);
  background: rgba(14, 165, 233, 0.1);
  font-size: 12px;
}

.rail-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 240px;
  gap: 18px;
  overflow-x: auto;
  padding: 4px 4px 18px;
  scroll-snap-type: x proximity;
}

.rail-scroll .movie-card {
  scroll-snap-align: start;
}

.ranking-strip,
.filter-panel,
.text-card,
.detail-info-card,
.sticky-panel {
  border: 1px solid rgba(14, 165, 233, 0.18);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.78), rgba(30, 41, 59, 0.44));
  box-shadow: 0 24px 70px rgba(2, 6, 23, 0.25);
}

.ranking-strip {
  padding: 28px;
}

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

.rank-item {
  display: grid;
  grid-template-columns: auto 74px 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(14, 165, 233, 0.12);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.48);
  transition: all 0.2s ease;
}

.rank-item:hover {
  border-color: var(--line-strong);
  background: rgba(15, 23, 42, 0.72);
}

.rank-number,
.ranking-index {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 900;
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.rank-thumb {
  width: 74px;
  aspect-ratio: 2 / 3;
  border-radius: 12px;
}

.rank-item strong {
  display: block;
  color: var(--text);
  font-size: 15px;
}

.rank-item small {
  display: block;
  margin-top: 5px;
  color: var(--subtle);
}

.page-title-block {
  margin-bottom: 34px;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--sky);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-title-block h1 {
  font-size: clamp(34px, 6vw, 56px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: white;
}

.page-title-block p {
  max-width: 760px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

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

.category-tile {
  min-height: 180px;
  padding: 24px;
  border: 1px solid rgba(14, 165, 233, 0.18);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(14, 165, 233, 0.18), transparent 14rem),
    rgba(15, 23, 42, 0.64);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.category-tile:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}

.category-tile span {
  color: var(--sky);
  font-weight: 850;
  font-size: 22px;
}

.category-tile strong {
  display: block;
  margin-top: 18px;
  color: white;
  font-size: 44px;
  line-height: 1;
}

.category-tile p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 42px;
}

.pagination a,
.pagination span {
  min-width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(14, 165, 233, 0.2);
  background: rgba(15, 23, 42, 0.62);
  color: var(--text);
}

.pagination .current {
  color: white;
  border-color: var(--sky);
  background: linear-gradient(90deg, #0ea5e9, #06b6d4);
}

.pagination .disabled,
.pagination .ellipsis {
  color: var(--subtle);
}

.ranking-page-list {
  display: grid;
  gap: 18px;
}

.ranking-card {
  border-radius: 22px;
  border: 1px solid rgba(14, 165, 233, 0.16);
  background: rgba(15, 23, 42, 0.58);
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.ranking-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
}

.ranking-card a {
  display: grid;
  grid-template-columns: 58px 120px 1fr;
  gap: 18px;
  align-items: center;
  padding: 16px;
}

.ranking-card.top-three {
  background: linear-gradient(135deg, rgba(146, 64, 14, 0.28), rgba(15, 23, 42, 0.72));
}

.ranking-poster {
  width: 120px;
  aspect-ratio: 2 / 3;
  border-radius: 14px;
}

.ranking-info h2 {
  color: white;
  font-size: 22px;
  font-weight: 850;
}

.ranking-info p {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.65;
}

.ranking-meta {
  margin-top: 12px;
}

.filter-panel {
  padding: 24px;
  margin-bottom: 28px;
}

.filter-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.filter-panel label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  border-radius: 14px;
}

.search-summary {
  margin: 0 0 22px;
  color: var(--muted);
}

.detail-page {
  padding-top: 34px;
  padding-bottom: 80px;
}

.detail-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.player-wrap {
  position: relative;
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: 24px;
  overflow: hidden;
  background: #020617;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
}

.movie-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #020617;
}

.player-tip {
  padding: 10px 16px;
  color: var(--muted);
  font-size: 13px;
  background: rgba(15, 23, 42, 0.88);
}

.detail-info-card,
.text-card,
.sticky-panel {
  padding: 24px;
}

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

.detail-title-row h1 {
  color: white;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.18;
}

.type-pill {
  flex: none;
  border-radius: 999px;
  padding: 8px 13px;
  color: white;
  background: linear-gradient(90deg, #0ea5e9, #06b6d4);
  font-weight: 800;
}

.detail-meta,
.detail-tags {
  margin-top: 16px;
}

.one-line {
  margin-top: 20px;
  color: #bae6fd;
  font-weight: 700;
  line-height: 1.7;
}

.text-card h2,
.sticky-panel h2 {
  color: white;
  font-size: 22px;
  font-weight: 850;
  margin-bottom: 14px;
}

.text-card p {
  color: #cbd5e1;
  line-height: 1.85;
}

.review-card {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.85), rgba(30, 41, 59, 0.5));
}

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

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

.related-side-item {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 12px;
  align-items: center;
}

.side-thumb {
  width: 78px;
  aspect-ratio: 2 / 3;
  border-radius: 12px;
}

.related-side-item strong {
  display: block;
  color: var(--text);
  font-size: 14px;
  line-height: 1.45;
}

.related-side-item span {
  display: block;
  margin-top: 6px;
  color: var(--subtle);
  font-size: 12px;
}

.more-related {
  margin-top: 54px;
}

.site-footer {
  border-top: 1px solid rgba(14, 165, 233, 0.18);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.78), rgba(2, 6, 23, 0.98));
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 30px 20px;
  display: grid;
  gap: 16px;
  text-align: center;
  justify-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

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

.footer-links a:hover {
  color: var(--sky);
}

.footer-copy {
  color: var(--subtle);
  font-size: 13px;
}

@media (min-width: 640px) {
  .movie-grid,
  .featured-grid,
  .latest-grid,
  .listing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

@media (min-width: 900px) {
  .featured-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

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

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

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

  .detail-layout {
    grid-template-columns: minmax(0, 2fr) minmax(300px, 0.86fr);
  }
}

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

  .mobile-toggle {
    display: inline-flex;
  }
}

@media (max-width: 700px) {
  .hero-carousel {
    height: 68vh;
    min-height: 540px;
  }

  .hero-arrow {
    display: none;
  }

  .hero-content {
    justify-content: flex-end;
    padding-bottom: 82px;
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.96), rgba(2, 6, 23, 0.55));
  }

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

  .ranking-card a {
    grid-template-columns: 48px 82px 1fr;
    gap: 12px;
  }

  .ranking-poster {
    width: 82px;
  }

  .ranking-info h2 {
    font-size: 18px;
  }

  .ranking-info p,
  .ranking-meta,
  .ranking-info .tag-row {
    display: none;
  }

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