:root {
  --rose: #e11d48;
  --rose-dark: #be123c;
  --pink: #db2777;
  --blue: #2563eb;
  --indigo: #4f46e5;
  --emerald: #059669;
  --amber: #d97706;
  --purple: #7c3aed;
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  --soft-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

img.is-missing {
  display: none;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.88);
}

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

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

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  background: linear-gradient(135deg, var(--rose), var(--pink));
  box-shadow: 0 12px 24px rgba(225, 29, 72, 0.28);
}

.brand-text {
  font-size: 18px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  padding: 10px 14px;
  border-radius: 12px;
  color: var(--slate-700);
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--rose);
  background: #fff1f2;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 12px;
  background: var(--slate-100);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--slate-800);
  border-radius: 999px;
}

.hero-slider {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: linear-gradient(135deg, #881337, #9d174d 45%, #be123c);
}

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

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

.hero-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.86;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 72% 22%, rgba(244, 63, 94, 0.38), transparent 34%);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.92), rgba(15, 23, 42, 0.58) 46%, rgba(15, 23, 42, 0.08));
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 1180px;
  color: var(--white);
}

.hero-kicker,
.detail-kicker,
.page-hero span {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--rose), var(--pink));
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(225, 29, 72, 0.25);
}

.hero-content h1 {
  max-width: 760px;
  margin: 18px 0 16px;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.hero-content p {
  max-width: 690px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
}

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

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

.primary-btn {
  color: var(--white);
  background: linear-gradient(135deg, var(--rose), var(--pink));
  box-shadow: 0 14px 28px rgba(225, 29, 72, 0.3);
}

.ghost-btn {
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(12px);
}

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

.hero-arrow {
  position: absolute;
  top: 50%;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  font-size: 36px;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: background 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.32);
}

.hero-arrow.prev {
  left: 22px;
}

.hero-arrow.next {
  right: 22px;
}

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

.hero-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.active {
  width: 34px;
  background: var(--white);
}

.stats-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: -64px;
}

.stat-card {
  min-height: 128px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px;
  border-radius: 22px;
  color: var(--white);
  box-shadow: var(--shadow);
}

.stat-card strong {
  font-size: 34px;
  line-height: 1;
}

.stat-card span {
  margin-top: 10px;
  opacity: 0.86;
}

.stat-card.blue {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.stat-card.green {
  background: linear-gradient(135deg, #10b981, #059669);
}

.stat-card.amber {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.stat-card.purple {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

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

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

.section-heading h2 {
  margin: 0 0 8px;
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.section-heading p {
  margin: 0;
  color: var(--slate-600);
}

.section-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--rose);
  font-weight: 800;
  white-space: nowrap;
}

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

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

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

.movie-card {
  min-width: 0;
}

.movie-link {
  display: block;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.movie-link:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

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

.poster-wrap.wide {
  aspect-ratio: 16 / 10;
  min-height: 168px;
}

.poster-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.36s ease, opacity 0.25s ease;
}

.movie-link:hover .poster-wrap img {
  transform: scale(1.06);
}

.play-hover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(2, 6, 23, 0.48);
  font-size: 34px;
  opacity: 0;
  transition: opacity 0.22s ease;
}

.movie-link:hover .play-hover {
  opacity: 1;
}

.year-badge,
.card-rank {
  position: absolute;
  z-index: 2;
  right: 12px;
  bottom: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(2, 6, 23, 0.78);
  font-size: 12px;
  font-weight: 800;
}

.card-rank {
  left: 12px;
  right: auto;
  background: linear-gradient(135deg, #f59e0b, #e11d48);
}

.movie-info {
  display: grid;
  gap: 9px;
  padding: 16px;
}

.movie-info strong {
  font-size: 17px;
  line-height: 1.32;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-desc {
  min-height: 44px;
  color: var(--slate-600);
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.meta-line,
.tag-line,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.meta-line em,
.tag-line span,
.detail-meta span {
  font-style: normal;
  padding: 4px 9px;
  border-radius: 999px;
  color: var(--slate-700);
  background: var(--slate-100);
  font-size: 12px;
}

.tag-line span {
  color: var(--rose-dark);
  background: #fff1f2;
}

.movie-card.horizontal .movie-link {
  display: grid;
  grid-template-columns: 210px 1fr;
}

.movie-card.horizontal .poster-wrap {
  height: 100%;
}

.category-band {
  padding: 66px 0;
  background: linear-gradient(135deg, #eef2ff, #faf5ff 52%, #fff1f2);
}

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

.category-card,
.overview-card a {
  position: relative;
  display: block;
  min-height: 190px;
  overflow: hidden;
  border-radius: 24px;
  color: var(--white);
  box-shadow: var(--soft-shadow);
  background: linear-gradient(135deg, var(--rose), var(--pink));
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-card:hover,
.overview-card a:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: var(--shadow);
}

.category-card img,
.overview-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  transition: opacity 0.2s ease, transform 0.3s ease;
}

.category-card:hover img,
.overview-card a:hover img {
  opacity: 0.58;
  transform: scale(1.05);
}

.category-card span,
.overview-copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px;
  text-align: center;
}

.category-card strong,
.overview-copy strong {
  font-size: 22px;
  line-height: 1.2;
}

.category-card em,
.overview-copy em {
  margin-top: 8px;
  font-style: normal;
  color: rgba(255, 255, 255, 0.84);
}

.overview-copy b {
  margin-top: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.tone-1 {
  background: linear-gradient(135deg, #e11d48, #db2777);
}

.tone-2 {
  background: linear-gradient(135deg, #2563eb, #4f46e5);
}

.tone-3 {
  background: linear-gradient(135deg, #059669, #0f766e);
}

.tone-4 {
  background: linear-gradient(135deg, #d97706, #ea580c);
}

.tone-5 {
  background: linear-gradient(135deg, #7c3aed, #c026d3);
}

.tone-6 {
  background: linear-gradient(135deg, #0891b2, #2563eb);
}

.white-band {
  padding: 66px 0;
  background: var(--white);
}

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

.scroll-row {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 6px 4px 18px;
  scroll-snap-type: x proximity;
}

.scroll-item {
  width: 280px;
  flex: 0 0 auto;
  scroll-snap-align: start;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.rank-list {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.mini-card + .mini-card {
  border-top: 1px solid var(--slate-100);
  padding-top: 12px;
}

.mini-link {
  display: grid;
  grid-template-columns: auto 84px 1fr;
  gap: 12px;
  align-items: center;
  border-radius: 14px;
  transition: background 0.2s ease;
}

.mini-link:hover {
  background: var(--slate-50);
}

.rank-num {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--white);
  background: linear-gradient(135deg, #f59e0b, var(--rose));
  font-weight: 900;
  font-size: 13px;
}

.mini-poster {
  width: 84px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(135deg, #e11d48, #4f46e5);
}

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

.mini-copy {
  display: grid;
  min-width: 0;
}

.mini-copy strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mini-copy em {
  font-style: normal;
  color: var(--slate-500);
  font-size: 13px;
}

.page-hero {
  padding: 78px 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--rose), var(--pink));
}

.page-hero.rose {
  background: linear-gradient(135deg, #be123c, #db2777);
}

.page-hero.pink {
  background: linear-gradient(135deg, #e11d48, #9333ea);
}

.page-hero.blue {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
}

.page-hero.purple {
  background: linear-gradient(135deg, #6d28d9, #c026d3);
}

.page-hero h1 {
  margin: 18px 0 12px;
  font-size: clamp(36px, 6vw, 58px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.05em;
}

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

.page-actions {
  margin-top: 24px;
}

.filter-panel {
  margin-top: -32px;
  padding: 22px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.filter-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.filter-title-row h2 {
  margin: 0;
  font-size: 20px;
}

.filter-title-row span {
  color: var(--slate-500);
  font-size: 14px;
}

.filter-controls {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) repeat(3, minmax(150px, 190px));
  gap: 12px;
}

.filter-controls input,
.filter-controls select {
  width: 100%;
  height: 46px;
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  padding: 0 14px;
  color: var(--slate-800);
  background: var(--slate-50);
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.filter-controls input:focus,
.filter-controls select:focus {
  border-color: rgba(225, 29, 72, 0.54);
  box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.12);
  background: var(--white);
}

.filter-item.is-hidden {
  display: none;
}

.overview-card {
  min-height: 246px;
}

.overview-card a {
  height: 100%;
}

.overview-media {
  position: absolute;
  inset: 0;
}

.ranking-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.player-band {
  background: #020617;
}

.player-container {
  padding: 24px 0;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: 0 28px 70px rgba(2, 6, 23, 0.5);
}

.movie-video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
}

.player-start {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  border: 0;
  color: var(--white);
  background: radial-gradient(circle, rgba(225, 29, 72, 0.42), rgba(2, 6, 23, 0.72));
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.player-start span {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  padding-left: 5px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rose), var(--pink));
  box-shadow: 0 20px 40px rgba(225, 29, 72, 0.35);
  font-size: 34px;
}

.player-start strong {
  font-size: 18px;
}

.player-shell.is-started .player-start {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  padding: 40px 0 74px;
}

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

.breadcrumb a:hover {
  color: var(--rose);
}

.detail-card,
.review-card,
.side-card {
  padding: 28px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.review-card,
.side-card {
  margin-top: 18px;
}

.detail-card h1 {
  margin: 18px 0 14px;
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.detail-card h2,
.review-card h2,
.side-card h2 {
  margin: 26px 0 12px;
  font-size: 24px;
  line-height: 1.2;
}

.side-card h2 {
  margin-top: 0;
}

.detail-card p,
.review-card p {
  color: var(--slate-700);
  margin: 0 0 14px;
}

.lead-text {
  font-size: 18px;
  color: var(--slate-900) !important;
  font-weight: 700;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.tag-cloud span {
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--rose-dark);
  background: #fff1f2;
  font-size: 14px;
  font-weight: 700;
}

.review-card {
  background: linear-gradient(135deg, #fffbeb, #fff7ed);
  border: 1px solid #fed7aa;
}

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

.side-card {
  position: sticky;
  top: 94px;
}

.site-footer {
  margin-top: 40px;
  padding: 48px 0 24px;
  color: var(--white);
  background: linear-gradient(135deg, #020617, #1e293b);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 36px;
}

.footer-grid p {
  color: rgba(255, 255, 255, 0.64);
}

.footer-grid h2 {
  margin: 0 0 14px;
  font-size: 18px;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.64);
  transition: color 0.2s ease;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.54);
  font-size: 14px;
}

@media (max-width: 1040px) {
  .movie-grid,
  .compact-grid,
  .all-grid,
  .category-grid,
  .overview-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .feature-grid,
  .horizontal-grid,
  .ranking-grid,
  .split-section,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .detail-side .side-card {
    position: static;
  }

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

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

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

  .brand-text {
    font-size: 16px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .main-nav {
    position: absolute;
    left: 12px;
    right: 12px;
    top: 70px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .hero-slider {
    height: 560px;
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-arrow {
    display: none;
  }

  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -48px;
  }

  .stat-card {
    min-height: 110px;
    padding: 20px;
  }

  .movie-grid,
  .compact-grid,
  .all-grid,
  .category-grid,
  .overview-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .movie-info {
    padding: 13px;
  }

  .card-desc,
  .tag-line {
    display: none;
  }

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

  .movie-card.horizontal .movie-link {
    grid-template-columns: 132px 1fr;
  }

  .poster-wrap.wide {
    min-height: 126px;
  }

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

  .page-hero {
    padding: 56px 0 72px;
  }

  .player-container {
    width: 100%;
    padding: 0;
  }

  .player-shell {
    border-radius: 0;
  }

  .detail-layout {
    padding-top: 24px;
  }

  .detail-card,
  .review-card,
  .side-card {
    padding: 20px;
    border-radius: 20px;
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .movie-grid,
  .compact-grid,
  .all-grid,
  .category-grid,
  .overview-grid,
  .stats-strip {
    grid-template-columns: 1fr;
  }

  .mini-link {
    grid-template-columns: auto 74px 1fr;
  }

  .mini-poster {
    width: 74px;
  }
}
