:root {
  --cream-50: #fefdfb;
  --cream-100: #fdf9f3;
  --cream-200: #faf3e6;
  --cream-300: #f5e8d0;
  --coffee-100: #f5f0e8;
  --coffee-200: #e8dcc8;
  --coffee-300: #d1bd96;
  --coffee-400: #b89968;
  --coffee-500: #8b6f47;
  --coffee-600: #6f5536;
  --coffee-700: #54402a;
  --coffee-800: #3d2e1f;
  --coffee-900: #2a1f15;
  --shadow-soft: 0 18px 60px rgba(42, 31, 21, 0.14);
  --shadow-card: 0 10px 30px rgba(42, 31, 21, 0.10);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input {
  font: inherit;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(232, 220, 200, 0.68);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 32px rgba(42, 31, 21, 0.12);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coffee-600), var(--coffee-400));
  color: white;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(111, 85, 54, 0.28);
}

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

.brand-text strong {
  font-size: 22px;
  color: var(--coffee-800);
  letter-spacing: 0.03em;
}

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

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  color: var(--coffee-600);
  font-size: 14px;
  font-weight: 700;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--coffee-900);
}

.nav-category-link {
  color: var(--coffee-500);
}

.top-search,
.mobile-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-search input,
.mobile-search input,
.search-box input {
  border: 1px solid var(--cream-300);
  background: var(--cream-100);
  color: var(--coffee-900);
  border-radius: 999px;
  outline: none;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.top-search input {
  width: 190px;
  padding: 10px 16px;
}

.top-search input:focus,
.mobile-search input:focus,
.search-box input:focus {
  border-color: var(--coffee-400);
  box-shadow: 0 0 0 4px rgba(184, 153, 104, 0.18);
}

.top-search button,
.mobile-search button,
.search-box button {
  border: 0;
  border-radius: 999px;
  background: var(--coffee-700);
  color: white;
  padding: 10px 16px;
  cursor: pointer;
  font-weight: 700;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: var(--cream-200);
  color: var(--coffee-800);
  cursor: pointer;
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--cream-300);
  background: white;
}

.mobile-panel.open {
  display: block;
  animation: slideDown 0.25s ease;
}

.mobile-panel-inner {
  padding: 16px 0 20px;
  display: grid;
  gap: 10px;
}

.mobile-nav-link {
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--coffee-700);
  background: var(--cream-100);
  font-weight: 700;
}

.mobile-nav-link.active {
  background: var(--coffee-100);
  color: var(--coffee-900);
}

.mobile-search input {
  flex: 1;
  min-width: 0;
  padding: 11px 15px;
}

.hero {
  position: relative;
  min-height: 82vh;
  overflow: hidden;
  background: var(--coffee-900);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
  background: var(--coffee-900);
}

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

.hero-backdrop {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(42, 31, 21, 0.96), rgba(42, 31, 21, 0.72), rgba(42, 31, 21, 0.28)),
    linear-gradient(0deg, rgba(42, 31, 21, 0.96), rgba(42, 31, 21, 0.18)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  filter: saturate(1.04);
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 82vh;
  padding-top: 120px;
  padding-bottom: 70px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.58fr);
  align-items: center;
  gap: 56px;
}

.hero-copy {
  color: var(--cream-50);
  max-width: 760px;
  animation: fadeIn 0.5s ease;
}

.hero-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--coffee-400);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero h1,
.hero h2 {
  margin: 16px 0 18px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.hero p {
  margin: 0;
  max-width: 700px;
  color: var(--cream-200);
  font-size: clamp(16px, 2vw, 20px);
}

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

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

.hero-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: white;
  padding: 6px 11px;
  font-size: 13px;
  font-weight: 700;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

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

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

.button.primary {
  background: linear-gradient(135deg, var(--coffee-600), var(--coffee-400));
  color: white;
  box-shadow: 0 14px 28px rgba(111, 85, 54, 0.28);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.18);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.button.text {
  color: var(--cream-100);
  padding-left: 0;
  padding-right: 0;
}

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

.hero-poster {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.34);
  transform: rotate(1.5deg);
  transition: transform 0.25s ease;
}

.hero-poster:hover {
  transform: rotate(0deg) scale(1.015);
}

.hero-poster img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.hero-controls {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 34px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.hero-dot.active {
  background: white;
}

.section {
  padding: 76px 0;
}

.cream-section {
  background: var(--cream-100);
}

.coffee-section {
  background: var(--coffee-800);
  color: var(--cream-50);
}

.section-heading {
  margin-bottom: 30px;
}

.section-heading h2,
.page-hero h1,
.detail-copy h1 {
  margin: 8px 0 10px;
  color: var(--coffee-900);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.section-heading h2 {
  font-size: clamp(28px, 4vw, 44px);
}

.section-heading p {
  max-width: 720px;
  margin: 0;
  color: var(--coffee-600);
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
}

.light-heading h2,
.light-heading p {
  color: var(--cream-50);
}

.section-link {
  color: var(--coffee-700);
  font-weight: 800;
  border-bottom: 2px solid var(--coffee-300);
}

.section-link.light {
  color: var(--cream-100);
  border-color: var(--coffee-400);
}

.search-panel {
  position: relative;
  z-index: 4;
  margin-top: -30px;
}

.search-panel-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1fr);
  gap: 24px;
  align-items: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--cream-300);
}

.search-panel h2 {
  margin: 0 0 4px;
  color: var(--coffee-900);
}

.search-panel p {
  margin: 0;
  color: var(--coffee-600);
}

.search-box {
  display: flex;
  gap: 10px;
}

.search-box input {
  flex: 1;
  min-width: 0;
  padding: 13px 18px;
}

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

.category-card {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background-image: linear-gradient(180deg, rgba(42, 31, 21, 0.15), rgba(42, 31, 21, 0.88)), var(--category-image);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.category-card strong {
  color: white;
  font-size: 22px;
  position: relative;
  z-index: 1;
}

.category-card small {
  color: var(--cream-200);
  position: relative;
  z-index: 1;
  margin-top: 8px;
}

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

.movie-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(232, 220, 200, 0.72);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--coffee-100);
}

.poster-link img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.poster-shade {
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(42, 31, 21, 0.86), transparent);
}

.score-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  border-radius: 999px;
  color: white;
  background: rgba(42, 31, 21, 0.68);
  backdrop-filter: blur(6px);
  padding: 5px 9px;
  font-weight: 800;
  font-size: 12px;
}

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

.movie-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--coffee-500);
  font-size: 12px;
  font-weight: 700;
}

.movie-card h3 {
  margin: 8px 0 6px;
  color: var(--coffee-900);
  font-size: 17px;
  line-height: 1.3;
}

.movie-card p {
  margin: 0 0 12px;
  color: var(--coffee-600);
  font-size: 14px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tag-row span {
  background: var(--cream-200);
  color: var(--coffee-700);
  padding: 5px 9px;
  font-size: 12px;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 56px 82px minmax(0, 1fr) 80px;
  gap: 16px;
  align-items: center;
  padding: 14px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(232, 220, 200, 0.7);
}

.coffee-section .rank-row {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.rank-number {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--coffee-700);
  color: white;
  font-weight: 900;
}

.coffee-section .rank-number {
  background: var(--coffee-400);
  color: var(--coffee-900);
}

.rank-cover {
  border-radius: 12px;
  overflow: hidden;
}

.rank-cover img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.rank-info h3 {
  margin: 0 0 4px;
  font-size: 20px;
  color: var(--coffee-900);
}

.coffee-section .rank-info h3,
.coffee-section .rank-info p,
.coffee-section .movie-meta-line {
  color: var(--cream-100);
}

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

.rank-score {
  text-align: center;
  color: var(--coffee-700);
}

.coffee-section .rank-score {
  color: var(--cream-100);
}

.rank-score strong {
  display: block;
  font-size: 24px;
  line-height: 1;
}

.rank-score span {
  font-size: 12px;
  font-weight: 800;
}

.page-main {
  padding-top: 76px;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  background: var(--coffee-900);
  color: var(--cream-50);
}

.page-hero::before,
.detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(42, 31, 21, 0.96), rgba(42, 31, 21, 0.68)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  opacity: 0.9;
}

.compact-hero::before,
.ranking-hero::before {
  background-image: linear-gradient(135deg, rgba(42, 31, 21, 0.98), rgba(111, 85, 54, 0.86));
}

.page-hero .container {
  position: relative;
  padding: 72px 0;
}

.page-hero h1 {
  color: var(--cream-50);
  font-size: clamp(34px, 5vw, 58px);
}

.page-hero p {
  max-width: 760px;
  color: var(--cream-200);
  margin: 0;
}

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

.breadcrumb a {
  color: var(--coffee-300);
  font-weight: 800;
}

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

.category-overview {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 22px;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--cream-300);
}

.category-overview-cover {
  min-height: 250px;
  background-image: linear-gradient(180deg, transparent, rgba(42, 31, 21, 0.78)), var(--category-image);
  background-size: cover;
  background-position: center;
}

.category-overview-body {
  padding: 24px 24px 24px 0;
}

.category-overview-body h2 {
  margin: 0 0 8px;
  color: var(--coffee-900);
}

.category-overview-body p {
  margin: 0 0 16px;
  color: var(--coffee-600);
}

.category-sample-links {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.category-sample-links a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--coffee-700);
  font-weight: 700;
}

.category-sample-links span {
  color: var(--coffee-400);
}

.detail-hero::before {
  filter: blur(1px);
}

.detail-hero-grid {
  position: relative;
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 42px;
  align-items: center;
  padding: 72px 0;
}

.detail-copy h1 {
  color: var(--cream-50);
  font-size: clamp(36px, 6vw, 70px);
}

.detail-copy p {
  max-width: 780px;
  color: var(--cream-200);
  font-size: 18px;
}

.detail-poster {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.36);
}

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

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

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

.player-shell {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #050403;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 16 / 9;
}

.movie-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: black;
  cursor: pointer;
}

.play-button {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  background: linear-gradient(0deg, rgba(42, 31, 21, 0.42), rgba(42, 31, 21, 0.16));
  color: white;
  cursor: pointer;
  z-index: 2;
}

.play-button span {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  font-size: 34px;
  padding-left: 6px;
}

.player-shell.player-started .play-button {
  opacity: 0;
  pointer-events: none;
}

.content-card {
  background: white;
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-card);
}

.content-card h2 {
  margin: 0 0 14px;
  color: var(--coffee-900);
}

.content-card p {
  color: var(--coffee-700);
  margin: 0 0 14px;
}

.content-card p:last-child {
  margin-bottom: 0;
}

.detail-sidebar {
  min-width: 0;
}

.sticky-card {
  position: sticky;
  top: 98px;
}

.info-list {
  display: grid;
  gap: 12px;
  margin: 0 0 18px;
}

.info-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--cream-200);
  padding-bottom: 10px;
}

.info-list dt {
  color: var(--coffee-500);
}

.info-list dd {
  margin: 0;
  color: var(--coffee-900);
  font-weight: 800;
  text-align: right;
}

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

.related-section {
  margin-top: 10px;
}

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

.compact-heading {
  margin-bottom: 18px;
}

.hidden-by-search {
  display: none !important;
}

.site-footer {
  background: var(--coffee-800);
  color: var(--cream-100);
}

.footer-grid {
  padding: 54px 0;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 0.8fr;
  gap: 34px;
}

.footer-logo .brand-text strong,
.footer-logo .brand-text small {
  color: var(--cream-50);
}

.footer-brand p {
  color: var(--cream-300);
  margin: 18px 0 0;
  max-width: 420px;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: white;
}

.site-footer a {
  display: block;
  color: var(--cream-300);
  margin: 8px 0;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0;
  color: var(--cream-300);
  font-size: 14px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .menu-button {
    display: grid;
    place-items: center;
  }

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

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

@media (max-width: 920px) {
  .top-search {
    display: none;
  }

  .hero-content,
  .detail-hero-grid,
  .detail-layout,
  .search-panel-inner,
  .category-overview,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .header-inner {
    min-height: 66px;
  }

  .brand-text small {
    display: none;
  }

  .brand-text strong {
    font-size: 20px;
  }

  .hero,
  .hero-content {
    min-height: auto;
  }

  .hero-slide {
    position: relative;
    display: none;
  }

  .hero-slide.active {
    display: block;
  }

  .hero-content {
    padding-top: 108px;
    padding-bottom: 76px;
  }

  .hero h1,
  .hero h2 {
    font-size: 42px;
  }

  .hero-actions,
  .search-box {
    flex-direction: column;
    align-items: stretch;
  }

  .section {
    padding: 54px 0;
  }

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

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

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

  .rank-score {
    grid-column: 3;
    text-align: left;
  }

  .page-main {
    padding-top: 66px;
  }

  .page-hero .container,
  .detail-hero-grid {
    padding: 48px 0;
  }

  .detail-copy h1 {
    font-size: 40px;
  }

  .content-card {
    padding: 20px;
  }
}

@media (max-width: 460px) {
  .category-grid,
  .movie-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

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

  .rank-info h3 {
    font-size: 17px;
  }

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

  .hero-poster,
  .detail-poster {
    max-width: 100%;
  }
}
