/**
 * FindEdition Movies Cinema UX — Platform 23.3.5
 * Prefix: mfc-* — complete HTML architecture, not a recolor pass.
 */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --mfc-gold: #f0c040;
  --mfc-gold-soft: rgba(240, 192, 64, 0.14);
  --mfc-gold-glow: rgba(240, 192, 64, 0.45);
  --mfc-red: #ff4757;
  --mfc-stream: #4dabff;
  --mfc-ai: #a78bfa;
  --mfc-bg: #050506;
  --mfc-bg-2: #0a0a0e;
  --mfc-panel: rgba(14, 14, 18, 0.82);
  --mfc-glass: rgba(255, 255, 255, 0.06);
  --mfc-glass-border: rgba(255, 255, 255, 0.1);
  --mfc-text: #ffffff;
  --mfc-text-soft: #e8e8ef;
  --mfc-muted: #9ca3af;
  --mfc-display: 'Bebas Neue', sans-serif;
  --mfc-body: 'Outfit', system-ui, sans-serif;
  --mfc-radius: 14px;
  --mfc-radius-lg: 22px;
  --mfc-shadow: 0 24px 64px rgba(0, 0, 0, 0.65);
  --mfc-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --mfc-nav-h: 58px;
  --mfc-poster: 2 / 3;
}

*, *::before, *::after { box-sizing: border-box; }

.mfc-root {
  font-family: var(--mfc-body);
  background: var(--mfc-bg);
  color: var(--mfc-text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

.mfc-wrap { max-width: 1480px; margin: 0 auto; padding: 0 1.25rem; }
.mfc-wrap-wide { max-width: 1680px; margin: 0 auto; padding: 0 1.25rem; }

/* NAV */
.mfc-nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(5, 5, 6, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--mfc-glass-border);
}
.mfc-nav-inner {
  display: flex; align-items: center; gap: 0.5rem;
  min-height: var(--mfc-nav-h);
  overflow-x: auto; scrollbar-width: none;
}
.mfc-nav-inner::-webkit-scrollbar { display: none; }
.mfc-nav-brand {
  font-family: var(--mfc-display);
  font-size: 1.5rem; letter-spacing: 0.12em;
  color: var(--mfc-gold); text-decoration: none; margin-right: 0.5rem;
}
.mfc-nav a {
  padding: 0.45rem 0.9rem; border-radius: 999px;
  font-size: 0.8125rem; font-weight: 600; color: var(--mfc-muted);
  text-decoration: none; white-space: nowrap;
  transition: 0.25s var(--mfc-ease);
}
.mfc-nav a:hover { color: var(--mfc-text); background: var(--mfc-glass); }
.mfc-nav a.is-active { background: var(--mfc-gold); color: #111; }

/* HERO — full viewport cinematic */
.mfc-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.mfc-hero-backdrop {
  position: absolute; inset: 0; z-index: 0;
}
.mfc-hero-backdrop img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06);
  animation: mfc-kenburns 30s ease-in-out infinite alternate;
}
@keyframes mfc-kenburns {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}
.mfc-hero-backdrop::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(0deg, var(--mfc-bg) 0%, rgba(5,5,6,0.75) 35%, rgba(5,5,6,0.2) 70%, rgba(5,5,6,0.55) 100%),
    linear-gradient(90deg, rgba(5,5,6,0.98) 0%, rgba(5,5,6,0.72) 42%, rgba(5,5,6,0.25) 100%);
}
.mfc-hero-body {
  position: relative; z-index: 2;
  width: 100%;
  padding: calc(var(--mfc-nav-h) + 2rem) 0 3rem;
}
.mfc-hero-grid {
  display: grid;
  grid-template-columns: minmax(160px, 220px) 1fr minmax(240px, 320px);
  gap: 2rem;
  align-items: end;
}
.mfc-hero-poster-wrap { position: relative; perspective: 900px; }
.mfc-hero-poster {
  position: relative;
  aspect-ratio: var(--mfc-poster);
  border-radius: var(--mfc-radius-lg);
  overflow: hidden;
  box-shadow: 0 0 0 1px var(--mfc-glass-border), 0 0 60px var(--mfc-gold-glow), var(--mfc-shadow);
  transform: rotateY(-4deg) rotateX(2deg);
  transition: transform 0.5s var(--mfc-ease);
}
.mfc-hero-poster:hover { transform: rotateY(0) rotateX(0) scale(1.02); }
.mfc-hero-poster img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mfc-hero-poster::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
.mfc-hero-rating-float {
  position: absolute; top: -0.75rem; right: -0.75rem; z-index: 3;
  width: 4.5rem; height: 4.5rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, #fff8dc, var(--mfc-gold));
  color: #111; font-weight: 800; font-size: 1.125rem;
  box-shadow: 0 0 32px var(--mfc-gold-glow);
  border: 3px solid rgba(255,255,255,0.35);
}
.mfc-hero-rating-float small { display: block; font-size: 0.5625rem; font-weight: 700; opacity: 0.75; text-align: center; line-height: 1; }

.mfc-hero-kicker {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--mfc-gold); margin: 0 0 0.5rem;
}
.mfc-hero-title {
  font-family: var(--mfc-display);
  font-size: clamp(2.75rem, 6vw, 5.5rem);
  line-height: 1.05; letter-spacing: 0.04em;
  margin: 0 0 0.75rem; color: var(--mfc-text);
  text-shadow: 0 4px 32px rgba(0,0,0,0.8);
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
}
.mfc-hero-title--film {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  line-height: 1;
  max-width: 14ch;
}
.mfc-hero-tagline {
  font-size: 1.0625rem; line-height: 1.65;
  color: var(--mfc-text-soft); max-width: 52ch; margin: 0 0 1.25rem;
}
.mfc-hero-meta-row {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.25rem;
}
.mfc-chip {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.35rem 0.75rem; border-radius: 999px;
  font-size: 0.75rem; font-weight: 600;
  background: var(--mfc-glass); border: 1px solid var(--mfc-glass-border);
  color: var(--mfc-text-soft); text-decoration: none;
}
.mfc-chip-gold { background: var(--mfc-gold-soft); border-color: rgba(240,192,64,0.35); color: var(--mfc-gold); }
.mfc-chip-stream { background: rgba(77,171,255,0.12); border-color: rgba(77,171,255,0.35); color: var(--mfc-stream); }

.mfc-score-row {
  display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.5rem;
}
.mfc-score-pill {
  min-width: 110px; padding: 0.75rem 1rem;
  border-radius: var(--mfc-radius);
  background: var(--mfc-panel);
  border: 1px solid var(--mfc-glass-border);
  backdrop-filter: blur(12px);
}
.mfc-score-pill span { display: block; font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--mfc-muted); }
.mfc-score-pill strong { font-size: 1.5rem; font-weight: 800; color: var(--mfc-gold); line-height: 1.1; }
.mfc-score-pill--ai strong { color: var(--mfc-ai); }
.mfc-score-pill--audience strong { color: var(--mfc-stream); }

.mfc-hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.mfc-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.25rem; border-radius: 999px;
  font-size: 0.875rem; font-weight: 700; border: none;
  cursor: pointer; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.mfc-btn:hover { transform: translateY(-2px); }
.mfc-btn-gold { background: linear-gradient(135deg, var(--mfc-gold), #ffd95a); color: #111; box-shadow: 0 8px 28px rgba(240,192,64,0.35); }
.mfc-btn-red { background: linear-gradient(135deg, var(--mfc-red), #ff6b7a); color: #fff; }
.mfc-btn-glass { background: var(--mfc-glass); border: 1px solid var(--mfc-glass-border); color: var(--mfc-text); }
.mfc-btn-stream { background: rgba(77,171,255,0.18); border: 1px solid rgba(77,171,255,0.4); color: var(--mfc-stream); }

.mfc-hero-aside {
  padding: 1.25rem; border-radius: var(--mfc-radius-lg);
  background: var(--mfc-panel); border: 1px solid var(--mfc-glass-border);
  backdrop-filter: blur(16px);
}
.mfc-hero-aside h3 {
  font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--mfc-gold); margin: 0 0 1rem;
}
.mfc-dl { display: grid; grid-template-columns: auto 1fr; gap: 0.35rem 1rem; font-size: 0.875rem; }
.mfc-dl dt { color: var(--mfc-muted); font-weight: 500; }
.mfc-dl dd { margin: 0; color: var(--mfc-text-soft); font-weight: 600; }

/* SECTION NAV */
.mfc-section-nav {
  position: sticky; top: var(--mfc-nav-h); z-index: 90;
  background: rgba(5,5,6,0.92); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--mfc-glass-border);
}
.mfc-section-nav-inner {
  display: flex; gap: 0.25rem; overflow-x: auto;
  padding: 0.65rem 0; scrollbar-width: none;
}
.mfc-section-nav-inner::-webkit-scrollbar { display: none; }
.mfc-section-nav a {
  flex: 0 0 auto; padding: 0.45rem 0.85rem;
  border-radius: 999px; font-size: 0.75rem; font-weight: 600;
  color: var(--mfc-muted); text-decoration: none; white-space: nowrap;
}
.mfc-section-nav a.is-active, .mfc-section-nav a:hover { background: var(--mfc-gold-soft); color: var(--mfc-gold); }

/* PAGE STAGE */
.mfc-stage { padding: 2.5rem 0 4rem; }
.mfc-stage-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
  align-items: start;
}
.mfc-main-col { display: flex; flex-direction: column; gap: 2rem; min-width: 0; }
.mfc-rail { position: sticky; top: calc(var(--mfc-nav-h) + 4rem); display: flex; flex-direction: column; gap: 1rem; }

/* SECTIONS — new architecture */
.mfc-section {
  border-radius: var(--mfc-radius-lg);
  background: linear-gradient(145deg, rgba(16,16,22,0.95), rgba(10,10,14,0.88));
  border: 1px solid var(--mfc-glass-border);
  padding: 1.75rem;
  box-shadow: var(--mfc-shadow);
}
.mfc-section-head {
  display: flex; align-items: center; gap: 0.75rem;
  margin: 0 0 1.25rem; padding-bottom: 0.875rem;
  border-bottom: 1px solid var(--mfc-glass-border);
}
.mfc-section-head h2 {
  font-family: var(--mfc-display);
  font-size: 1.75rem; letter-spacing: 0.06em;
  margin: 0; color: var(--mfc-text); font-weight: 400;
}
.mfc-section-head i { color: var(--mfc-gold); font-size: 1.125rem; }
.mfc-prose { color: var(--mfc-text-soft); line-height: 1.8; font-size: 1.0625rem; }

/* TIMELINE */
.mfc-timeline { position: relative; padding-left: 1.5rem; border-left: 2px solid rgba(240,192,64,0.35); }
.mfc-timeline-item { position: relative; padding: 0 0 1.25rem 1rem; }
.mfc-timeline-item::before {
  content: ''; position: absolute; left: -1.6rem; top: 0.4rem;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--mfc-gold); box-shadow: 0 0 16px var(--mfc-gold-glow);
}
.mfc-timeline-item time { font-size: 0.75rem; color: var(--mfc-gold); font-weight: 700; }
.mfc-timeline-item strong { display: block; margin-top: 0.15rem; color: var(--mfc-text); }
.mfc-timeline-item p { margin: 0.35rem 0 0; color: var(--mfc-muted); font-size: 0.9375rem; }

/* CAST CAROUSEL */
.mfc-carousel {
  display: flex; gap: 1rem; overflow-x: auto;
  scroll-snap-type: x mandatory; padding-bottom: 0.5rem;
}
.mfc-carousel::-webkit-scrollbar { height: 4px; }
.mfc-carousel::-webkit-scrollbar-thumb { background: var(--mfc-gold); border-radius: 4px; }
.mfc-person {
  flex: 0 0 108px; scroll-snap-align: start; text-align: center;
}
.mfc-person-photo {
  width: 96px; height: 96px; border-radius: 50%;
  object-fit: cover; margin: 0 auto 0.5rem;
  border: 2px solid var(--mfc-glass-border);
  box-shadow: 0 8px 24px rgba(0,0,0,0.45);
}
.mfc-person-photo-empty {
  display: grid; place-items: center; background: rgba(255,255,255,0.05); color: var(--mfc-muted);
}
.mfc-person strong { display: block; font-size: 0.8125rem; font-weight: 700; line-height: 1.25; color: var(--mfc-text); }
.mfc-person span { font-size: 0.6875rem; color: var(--mfc-muted); }

/* STREAMING */
.mfc-stream-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 0.75rem; }
.mfc-stream-tile {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 1rem; border-radius: var(--mfc-radius);
  background: rgba(77,171,255,0.08); border: 1px solid rgba(77,171,255,0.25);
  text-decoration: none; color: var(--mfc-text);
  transition: 0.25s;
}
.mfc-stream-tile:hover { border-color: var(--mfc-stream); transform: translateY(-2px); }

/* GALLERY / VIDEO */
.mfc-media-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 0.75rem; }
.mfc-media-thumb {
  aspect-ratio: 16/9; border-radius: var(--mfc-radius);
  overflow: hidden; border: 1px solid var(--mfc-glass-border);
  cursor: pointer; position: relative;
}
.mfc-media-thumb img, .mfc-media-thumb video { width: 100%; height: 100%; object-fit: cover; }
.mfc-video-cinema {
  position: relative; padding-bottom: 56.25%;
  border-radius: var(--mfc-radius-lg); overflow: hidden;
  background: #000; border: 1px solid var(--mfc-glass-border);
}
.mfc-video-cinema iframe, .mfc-video-cinema video {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}

/* QUOTES / GOOFS */
.mfc-quote {
  padding: 1.25rem; border-radius: var(--mfc-radius);
  background: rgba(255,255,255,0.03); border-left: 3px solid var(--mfc-gold);
  margin-bottom: 0.75rem;
}
.mfc-quote p { margin: 0; font-style: italic; color: var(--mfc-text-soft); line-height: 1.65; }
.mfc-quote cite { display: block; margin-top: 0.5rem; font-size: 0.8125rem; color: var(--mfc-gold); font-style: normal; font-weight: 600; }
.mfc-goof-list { list-style: none; margin: 0; padding: 0; }
.mfc-goof-list li {
  padding: 0.875rem 0; border-bottom: 1px solid var(--mfc-glass-border);
  color: var(--mfc-text-soft); line-height: 1.65;
}

/* POSTER CARD — Netflix / IMDb inspired */
.mfc-card {
  flex: 0 0 clamp(140px, 14vw, 180px);
  scroll-snap-align: start;
  text-decoration: none; color: inherit;
  perspective: 800px;
}
.mfc-card-inner {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.45s var(--mfc-ease);
}
.mfc-card:hover .mfc-card-inner { transform: rotateX(4deg) rotateY(-6deg) translateY(-8px) scale(1.04); }
.mfc-card-frame {
  position: relative; aspect-ratio: var(--mfc-poster);
  border-radius: var(--mfc-radius);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.55);
  border: 1px solid var(--mfc-glass-border);
}
.mfc-card-frame::after {
  content: '';
  position: absolute; inset: auto 0 0 0; height: 55%;
  background: linear-gradient(0deg, rgba(0,0,0,0.92) 0%, transparent 100%);
  pointer-events: none;
}
.mfc-card-reflection {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 42%);
  pointer-events: none; opacity: 0; transition: opacity 0.35s;
}
.mfc-card:hover .mfc-card-reflection { opacity: 1; }
.mfc-card-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mfc-card-score {
  position: absolute; top: 0.5rem; left: 0.5rem; z-index: 2;
  padding: 0.25rem 0.5rem; border-radius: 6px;
  background: rgba(0,0,0,0.75); backdrop-filter: blur(6px);
  font-size: 0.75rem; font-weight: 800; color: var(--mfc-gold);
  border: 1px solid rgba(240,192,64,0.35);
}
.mfc-card-providers {
  position: absolute; bottom: 0.5rem; left: 0.5rem; right: 0.5rem; z-index: 2;
  display: flex; flex-wrap: wrap; gap: 0.25rem;
}
.mfc-card-provider {
  font-size: 0.5625rem; font-weight: 700; text-transform: uppercase;
  padding: 0.15rem 0.35rem; border-radius: 4px;
  background: rgba(77,171,255,0.85); color: #fff;
}
.mfc-card-actions {
  position: absolute; top: 0.5rem; right: 0.5rem; z-index: 3;
  display: flex; flex-direction: column; gap: 0.35rem;
  opacity: 0; transform: translateX(8px);
  transition: 0.3s var(--mfc-ease);
}
.mfc-card:hover .mfc-card-actions { opacity: 1; transform: none; }
.mfc-card-action {
  width: 2rem; height: 2rem; border-radius: 50%;
  border: 1px solid var(--mfc-glass-border);
  background: rgba(0,0,0,0.8); color: var(--mfc-text);
  display: grid; place-items: center; cursor: pointer; font-size: 0.75rem;
}
.mfc-card-preview {
  position: absolute; inset: 0; z-index: 4;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0.75rem; opacity: 0; transition: opacity 0.3s;
  background: linear-gradient(0deg, rgba(0,0,0,0.95) 0%, transparent 60%);
}
.mfc-card:hover .mfc-card-preview { opacity: 1; }
.mfc-card-preview p { margin: 0; font-size: 0.6875rem; color: var(--mfc-text-soft); line-height: 1.4; }
.mfc-card-meta { padding: 0.65rem 0.15rem 0; }
.mfc-card-title { font-size: 0.875rem; font-weight: 700; margin: 0; line-height: 1.25; color: var(--mfc-text); }
.mfc-card-sub { font-size: 0.6875rem; color: var(--mfc-muted); margin: 0.15rem 0 0; }

/* SHELVES */
.mfc-shelf { margin: 2rem 0; }
.mfc-shelf-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 1rem; padding: 0 0.25rem;
}
.mfc-shelf-title {
  font-family: var(--mfc-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  letter-spacing: 0.06em; margin: 0; color: var(--mfc-text);
}
.mfc-shelf-link { font-size: 0.8125rem; font-weight: 600; color: var(--mfc-gold); text-decoration: none; }
.mfc-shelf-scroller { position: relative; }
.mfc-shelf-track {
  display: flex; gap: 1rem; overflow-x: auto;
  scroll-snap-type: x mandatory; padding: 0.5rem 2.75rem 1rem;
  scrollbar-width: thin; scroll-behavior: smooth;
}
.mfc-shelf-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  border: 1px solid var(--mfc-glass-border);
  background: rgba(5,5,6,0.92); color: var(--mfc-text);
  display: grid; place-items: center; cursor: pointer;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s, background 0.2s;
}
.mfc-shelf-scroller:hover .mfc-shelf-arrow,
.mfc-shelf-scroller:focus-within .mfc-shelf-arrow { opacity: 1; pointer-events: auto; }
.mfc-shelf-arrow:hover { background: var(--mfc-gold); color: #111; border-color: var(--mfc-gold); }
.mfc-shelf-arrow--prev { left: 0; }
.mfc-shelf-arrow--next { right: 0; }
.mfc-shelf-arrow.is-hidden { opacity: 0 !important; pointer-events: none !important; }

/* INDEX SPOTLIGHT */
.mfc-spotlight { position: relative; min-height: 88vh; display: flex; align-items: flex-end; overflow: hidden; }
.mfc-spotlight .mfc-hero-backdrop::after {
  background:
    linear-gradient(0deg, var(--mfc-bg) 0%, transparent 50%),
    linear-gradient(90deg, rgba(5,5,6,0.98) 0%, rgba(5,5,6,0.5) 50%, transparent 100%);
}

/* COMMUNITY — scoped legacy mp-* */
.mfc-community { padding: 0 !important; overflow: hidden; }
.mfc-community .mp-community-summary-panel {
  display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  padding: 1rem; margin: 1rem; background: rgba(255,255,255,0.03);
  border-radius: var(--mfc-radius); border: 1px solid var(--mfc-glass-border);
}
.mfc-community .mp-cs-big { font-size: 2.5rem; font-weight: 800; color: var(--mfc-gold); }
.mfc-community .mp-community-tabs { display: flex; flex-wrap: wrap; gap: 0.35rem; padding: 0 1rem 0.5rem; border-bottom: 1px solid var(--mfc-glass-border); }
.mfc-community .mp-community-tabs button {
  padding: 0.5rem 0.875rem; border: none; background: transparent;
  color: var(--mfc-muted); font-weight: 600; font-size: 0.8125rem; cursor: pointer; border-radius: 999px;
}
.mfc-community .mp-community-tabs button.is-active { background: var(--mfc-gold-soft); color: var(--mfc-gold); }
.mfc-community .mp-tab-panel { padding: 1rem; }
.mfc-community .mp-btn-primary { background: var(--mfc-gold); color: #111; border: none; border-radius: 999px; padding: 0.5rem 1rem; font-weight: 700; }
.mfc-community .mp-comment, .mfc-community .mp-reply {
  padding: 1rem; margin-bottom: 0.75rem;
  background: rgba(255,255,255,0.03); border: 1px solid var(--mfc-glass-border); border-radius: var(--mfc-radius);
}
.mfc-community .mp-empty, .mfc-community .mp-login-prompt { color: var(--mfc-muted); }
.mfc-community .mp-login-prompt a { color: var(--mfc-gold); }
.mfc-community .mp-cs-bar { flex: 1; height: 6px; background: rgba(255,255,255,0.08); border-radius: 999px; overflow: hidden; }
.mfc-community .mp-cs-bar > div { height: 100%; background: var(--mfc-gold); border-radius: 999px; }
.mfc-community .mp-cs-bar-row { display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; color: var(--mfc-muted); }
.mfc-community .mp-review-card { padding: 1rem; margin-bottom: 0.75rem; background: rgba(255,255,255,0.03); border: 1px solid var(--mfc-glass-border); border-radius: var(--mfc-radius); }
.mfc-community .mp-review-head { display: flex; justify-content: space-between; gap: 0.75rem; margin-bottom: 0.5rem; }
.mfc-community .mp-review-author { font-weight: 700; color: var(--mfc-text); }
.mfc-community .mp-verified { color: var(--mfc-stream); font-size: 0.6875rem; font-weight: 700; }
.mfc-community .mp-review-rating { color: var(--mfc-gold); font-weight: 800; }
.mfc-community .mp-review-body { color: var(--mfc-text-soft); line-height: 1.65; font-size: 0.9375rem; }
.mfc-community .mp-spoiler { background: rgba(255,71,87,0.12); border: 1px dashed rgba(255,71,87,0.45); padding: 0.5rem; border-radius: 8px; }
.mfc-community .mp-pagination { display: flex; gap: 0.35rem; flex-wrap: wrap; margin-top: 1rem; }
.mfc-community .mp-pagination a, .mfc-community .mp-pagination span {
  padding: 0.35rem 0.65rem; border-radius: 8px; font-size: 0.8125rem;
  border: 1px solid var(--mfc-glass-border); color: var(--mfc-muted); text-decoration: none;
}
.mfc-community .mp-pagination .is-active { background: var(--mfc-gold); color: #111; border-color: var(--mfc-gold); }

/* DISCOVERY */
.mfc-stage--compact { padding: 1.5rem 0; }
.mfc-discover-hero { min-height: min(88vh, 900px); min-height: min(88svh, 900px); }
.mfc-hero-composition--discover {
  grid-template-columns: minmax(170px, 210px) minmax(0, 1fr);
  grid-template-areas: "poster main";
  grid-template-rows: 1fr;
  align-items: center;
}
.mfc-discover-cats {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 0.75rem;
}
.mfc-discover-cat {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem;
  min-height: 100px; padding: 1rem; border-radius: var(--mfc-radius);
  background: var(--mfc-glass); border: 1px solid var(--mfc-glass-border);
  color: var(--mfc-text-soft); text-decoration: none; font-weight: 600; font-size: 0.8125rem;
  transition: 0.25s var(--mfc-ease);
}
.mfc-discover-cat i { font-size: 1.25rem; color: var(--mfc-gold); }
.mfc-discover-cat:hover { border-color: var(--mfc-gold); color: var(--mfc-text); transform: translateY(-2px); }
.mfc-discover-cat--stream i { color: var(--mfc-stream); }

/* GENRE CARDS */
.mfc-genre-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem; }
.mfc-genre-grid--hub { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
.mfc-genre-grid--compact { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
.mfc-genre-card {
  display: block; text-decoration: none; color: inherit;
  border-radius: var(--mfc-radius-lg); overflow: hidden;
  border: 1px solid var(--mfc-glass-border);
  background: var(--mfc-panel);
  transition: transform 0.35s var(--mfc-ease), box-shadow 0.35s;
}
.mfc-genre-card:hover { transform: translateY(-4px) scale(1.01); box-shadow: var(--mfc-shadow); }
.mfc-genre-card-art { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.mfc-genre-card-art img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.mfc-genre-card:hover .mfc-genre-card-art img { transform: scale(1.06); }
.mfc-genre-card-fallback {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #1a1a24, #0a0a0e);
  color: var(--mfc-gold); font-size: 2rem;
}
.mfc-genre-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(5,5,6,0.95) 0%, transparent 55%);
}
.mfc-genre-badge {
  position: absolute; top: 0.65rem; left: 0.65rem; z-index: 2;
  padding: 0.25rem 0.55rem; border-radius: 999px; font-size: 0.625rem; font-weight: 800;
  background: rgba(255,71,87,0.9); color: #fff; text-transform: uppercase;
}
.mfc-genre-rating {
  position: absolute; top: 0.65rem; right: 0.65rem; z-index: 2;
  padding: 0.25rem 0.55rem; border-radius: 999px; font-size: 0.75rem; font-weight: 800;
  background: rgba(0,0,0,0.75); color: var(--mfc-gold); border: 1px solid rgba(240,192,64,0.35);
}
.mfc-genre-card-body { padding: 1rem; }
.mfc-genre-card-title { font-family: var(--mfc-display); font-size: 1.35rem; letter-spacing: 0.05em; margin: 0 0 0.25rem; color: var(--mfc-text); }
.mfc-genre-card-meta { margin: 0; font-size: 0.8125rem; color: var(--mfc-muted); }
.mfc-genre-card-thumbs { display: flex; gap: 0.35rem; margin-top: 0.75rem; }
.mfc-genre-card-thumbs img {
  width: 36px; height: 54px; object-fit: cover; border-radius: 4px;
  border: 1px solid var(--mfc-glass-border);
}

.mfc-genre-hero { position: relative; min-height: 36vh; display: flex; align-items: flex-end; overflow: hidden; }
.mfc-genre-hero-body { position: relative; z-index: 2; padding: 3rem 0 2rem; width: 100%; }

/* STREAMING HUB */
.mfc-stream-filters { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.25rem; }
.mfc-stream-provider-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem;
}
.mfc-stream-provider-card {
  border-radius: var(--mfc-radius-lg);
  border: 1px solid var(--mfc-glass-border);
  background: linear-gradient(145deg, rgba(16,16,22,0.95), rgba(10,10,14,0.88));
  overflow: hidden;
}
.mfc-stream-provider-head {
  display: flex; align-items: center; gap: 1rem; padding: 1.25rem;
  text-decoration: none; color: inherit;
  border-left: 4px solid var(--provider-color, var(--mfc-stream));
}
.mfc-stream-provider-logo {
  width: 3rem; height: 3rem; border-radius: 12px;
  display: grid; place-items: center;
  background: color-mix(in srgb, var(--provider-color, var(--mfc-stream)) 22%, transparent);
  color: var(--provider-color, var(--mfc-stream)); font-size: 1.25rem;
}
.mfc-stream-provider-head h2 { margin: 0; font-size: 1.125rem; font-weight: 800; color: var(--mfc-text); }
.mfc-stream-provider-head p { margin: 0.15rem 0 0; font-size: 0.8125rem; color: var(--mfc-muted); }
.mfc-stream-provider-posters {
  display: flex; gap: 0.35rem; padding: 0 1.25rem 0.75rem; overflow-x: auto;
}
.mfc-stream-provider-posters img {
  width: 52px; height: 78px; object-fit: cover; border-radius: 6px;
  border: 1px solid var(--mfc-glass-border);
}
.mfc-stream-provider-link {
  display: block; padding: 0.75rem 1.25rem 1.25rem;
  font-size: 0.8125rem; font-weight: 700; color: var(--mfc-gold); text-decoration: none;
}

/* COMPARE — dark cinema theme */
.mfc-compare-body { padding-bottom: 4rem; }
.mfc-breadcrumb { display: flex; flex-wrap: wrap; gap: 0.5rem; font-size: 0.8125rem; color: var(--mfc-muted); margin-bottom: 1rem; }
.mfc-breadcrumb a { color: var(--mfc-gold); text-decoration: none; }
.mfc-alert-error {
  padding: 0.875rem 1rem; border-radius: var(--mfc-radius); margin-bottom: 1rem;
  background: rgba(255,71,87,0.12); border: 1px solid rgba(255,71,87,0.35); color: #fca5a5;
}
.mfc-winners-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 0.75rem; }
.mfc-winner-card {
  padding: 1rem; border-radius: var(--mfc-radius);
  background: rgba(240,192,64,0.08); border: 1px solid rgba(240,192,64,0.25);
}
.mfc-winner-label { display: block; font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--mfc-muted); }
.mfc-winner-card strong { display: block; margin-top: 0.35rem; color: var(--mfc-text); font-size: 1rem; }
.mfc-winner-badge { display: inline-flex; align-items: center; gap: 0.25rem; margin-top: 0.5rem; font-size: 0.6875rem; color: var(--mfc-gold); font-weight: 700; }
.mfc-compare-posters {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem; margin: 1.5rem 0;
}
.mfc-compare-poster-card {
  text-align: center; padding: 1rem;
  border-radius: var(--mfc-radius); border: 1px solid var(--mfc-glass-border);
  background: var(--mfc-panel);
}
.mfc-compare-poster-card.is-winner { border-color: var(--mfc-gold); box-shadow: 0 0 24px var(--mfc-gold-glow); }
.mfc-compare-poster-card img {
  width: 100%; max-width: 120px; aspect-ratio: var(--mfc-poster);
  object-fit: cover; border-radius: var(--mfc-radius); margin: 0 auto 0.75rem;
}
.mfc-compare-poster-card h3 { font-size: 0.875rem; margin: 0 0 0.5rem; }
.mfc-compare-poster-card h3 a { color: var(--mfc-text); text-decoration: none; }
.mfc-compare-nav { margin: 1rem 0; }
.mfc-compare-toolbar {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
  margin: 1.5rem 0; padding: 1rem; border-radius: var(--mfc-radius);
  background: var(--mfc-glass); border: 1px solid var(--mfc-glass-border);
}
.mfc-compare-search { display: flex; align-items: center; gap: 0.5rem; flex: 1; min-width: 200px; }
.mfc-compare-search input {
  flex: 1; background: transparent; border: none; color: var(--mfc-text);
  font-size: 0.875rem; outline: none;
}
.mfc-compare-diff { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--mfc-text-soft); cursor: pointer; }

.mfc-compare .ac-table-wrap { overflow-x: auto; border-radius: var(--mfc-radius-lg); border: 1px solid var(--mfc-glass-border); }
.mfc-compare .ac-compare-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.mfc-compare .ac-compare-table th, .mfc-compare .ac-compare-table td {
  padding: 0.75rem 1rem; border-bottom: 1px solid var(--mfc-glass-border);
  color: var(--mfc-text-soft); text-align: left; vertical-align: top;
}
.mfc-compare .ac-label-col { color: var(--mfc-muted); font-weight: 600; min-width: 140px; }
.mfc-compare .ac-device-col a { color: var(--mfc-gold); text-decoration: none; font-weight: 700; }
.mfc-compare .ac-group-header th { background: rgba(240,192,64,0.08); color: var(--mfc-gold); }
.mfc-compare .ac-group-toggle { background: none; border: none; color: inherit; font-weight: 700; cursor: pointer; display: flex; align-items: center; gap: 0.5rem; width: 100%; text-align: left; }
.mfc-compare .ac-status-winner { color: var(--mfc-gold); font-weight: 700; }
.mfc-compare .ac-status-loser { color: var(--mfc-muted); }
.mfc-compare .ac-diff-winner { color: var(--mfc-gold); }
.mfc-compare .ac-diff-loser { color: var(--mfc-muted); }

.mfc-compare .mc-sticky-header {
  position: sticky; top: var(--mfc-nav-h); z-index: 80;
  background: rgba(5,5,6,0.95); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--mfc-glass-border);
}
.mfc-compare .mc-sticky-inner {
  max-width: 1680px; margin: 0 auto; padding: 0.75rem 1.25rem;
  display: flex; align-items: center; gap: 1rem; overflow-x: auto;
}
.mfc-compare .mc-sticky-device {
  display: flex; align-items: center; gap: 0.65rem; padding: 0.5rem 0.75rem;
  border-radius: var(--mfc-radius); background: var(--mfc-glass); border: 1px solid var(--mfc-glass-border);
  flex: 0 0 auto;
}
.mfc-compare .mc-sticky-device img { width: 40px; height: 60px; object-fit: cover; border-radius: 6px; }
.mfc-compare .mc-sticky-device strong { color: var(--mfc-text); font-size: 0.8125rem; }
.mfc-compare .mc-sticky-rating { display: block; font-size: 0.6875rem; color: var(--mfc-gold); }
.mfc-compare .mc-overall-winner { border-color: var(--mfc-gold); }
.mfc-compare .mc-remove-btn, .mfc-compare .mc-btn {
  border: 1px solid var(--mfc-glass-border); background: var(--mfc-glass);
  color: var(--mfc-text); border-radius: 999px; padding: 0.45rem 0.85rem;
  font-size: 0.8125rem; cursor: pointer; text-decoration: none;
}
.mfc-compare .mc-add-device { white-space: nowrap; }

.mfc-compare-widgets .ac-widgets-section { margin-top: 2rem; }
.mfc-compare-widgets .ac-section-title { font-family: var(--mfc-display); font-size: 1.5rem; color: var(--mfc-text); margin-bottom: 1rem; }
.mfc-compare-widgets .ac-widget-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 0.75rem; }
.mfc-compare-widgets .ac-widget-card {
  display: flex; flex-direction: column; gap: 0.35rem; padding: 1rem;
  border-radius: var(--mfc-radius); border: 1px solid var(--mfc-glass-border);
  background: var(--mfc-panel); color: var(--mfc-text-soft); text-decoration: none;
  transition: 0.2s;
}
.mfc-compare-widgets .ac-widget-card:hover { border-color: var(--mfc-gold); color: var(--mfc-text); }
.mfc-compare-widgets .ac-widget-card i { color: var(--mfc-gold); }

.mfc-compare .mc-toast {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 999;
  padding: 0.75rem 1.25rem; border-radius: var(--mfc-radius);
  background: var(--mfc-gold); color: #111; font-weight: 700;
  opacity: 0; transform: translateY(8px); transition: 0.25s;
}
.mfc-compare .mc-toast.is-visible { opacity: 1; transform: none; }
.mfc-compare .mc-toast--error { background: var(--mfc-red); color: #fff; }
.mfc-compare .mc-hidden, .mfc-compare .mc-diff-hidden { display: none !important; }

/* PLATFORM 23.4.1 — HERO COMPOSITION + SEARCH + FILTERS */
.mfc-home-hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column; overflow: hidden;
}
.mfc-home-hero-bg { position: absolute; inset: 0; z-index: 0; }
.mfc-home-hero-backdrop-img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 20%;
  transform: scale(1.06); animation: mfc-kenburns 32s ease-in-out infinite alternate;
}
.mfc-home-hero-backdrop-fallback { width: 100%; height: 100%; }
.mfc-home-hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(0deg, var(--mfc-bg) 0%, rgba(5,5,6,0.88) 32%, rgba(5,5,6,0.45) 62%, rgba(5,5,6,0.35) 100%),
    linear-gradient(90deg, rgba(5,5,6,0.96) 0%, rgba(5,5,6,0.82) 28%, rgba(5,5,6,0.55) 55%, rgba(5,5,6,0.78) 78%, rgba(5,5,6,0.92) 100%);
}
.mfc-home-hero-overlay--film {
  background:
    linear-gradient(0deg, var(--mfc-bg) 0%, rgba(5,5,6,0.85) 40%, rgba(5,5,6,0.4) 100%),
    linear-gradient(90deg, rgba(5,5,6,0.95) 0%, rgba(5,5,6,0.7) 45%, rgba(5,5,6,0.85) 100%);
}
.mfc-home-hero-vignette {
  position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 120px rgba(0,0,0,0.55);
}
.mfc-home-hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 45% at 50% 55%, rgba(240,192,64,0.1) 0%, transparent 65%),
    radial-gradient(ellipse 40% 35% at 85% 40%, rgba(77,171,255,0.08) 0%, transparent 70%);
}
.mfc-home-hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.mfc-particle {
  position: absolute; width: 3px; height: 3px; border-radius: 50%;
  background: rgba(240,192,64,0.5); animation: mfc-float-particle linear infinite;
}
@keyframes mfc-float-particle {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.15; }
  50% { transform: translateY(-20px) scale(1.5); opacity: 0.9; }
}
.mfc-home-hero-inner {
  position: relative; z-index: 2; width: 100%; flex: 1;
  display: flex; align-items: center;
  padding: calc(var(--mfc-nav-h) + 1.5rem) 0 4rem;
  min-height: calc(100svh - var(--mfc-nav-h));
}

/* Unified hero grid — poster spans 2 rows, editorial fills right */
.mfc-hero-composition {
  display: grid; width: 100%;
  grid-template-columns: minmax(170px, 210px) minmax(0, 1fr) minmax(280px, 340px);
  grid-template-rows: 1fr auto;
  grid-template-areas:
    "poster main editorial"
    "poster search editorial";
  gap: 1.5rem 2rem;
  align-items: stretch;
}
.mfc-hero-composition--film {
  grid-template-areas: "poster main editorial";
  grid-template-rows: 1fr;
}
.mfc-hero-slot--poster { grid-area: poster; align-self: center; }
.mfc-hero-slot--main { grid-area: main; align-self: center; min-width: 0; }
.mfc-hero-slot--editorial { grid-area: editorial; align-self: stretch; }
.mfc-hero-slot--search { grid-area: search; align-self: end; min-width: 0; }

.mfc-hero-stack { display: flex; flex-direction: column; gap: 0.875rem; max-width: 62ch; }
.mfc-hero-badge-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.mfc-hero-eyebrow {
  margin: -0.25rem 0 0; font-size: 0.9375rem; font-weight: 600;
  color: var(--mfc-gold); letter-spacing: 0.02em;
}
.mfc-hero-desc {
  margin: 0; font-size: 1rem; line-height: 1.7; color: var(--mfc-text-soft);
  max-width: 56ch;
}
.mfc-score-row--compact { margin: 0; gap: 0.5rem; }

/* Floating poster */
.mfc-hero-poster-float { position: relative; display: block; text-decoration: none; }
.mfc-hero-poster-frame {
  position: relative; aspect-ratio: var(--mfc-poster);
  border-radius: var(--mfc-radius-lg); overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.12), 0 0 60px rgba(240,192,64,0.25), 0 32px 80px rgba(0,0,0,0.75);
  transform: perspective(1000px) rotateY(-6deg) rotateX(2deg);
  transition: transform 0.5s var(--mfc-ease);
}
.mfc-hero-poster-float:hover .mfc-hero-poster-frame { transform: perspective(1000px) rotateY(0) scale(1.02); }
.mfc-hero-poster-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mfc-hero-poster-frame--empty {
  aspect-ratio: var(--mfc-poster); display: grid; place-items: center;
  color: var(--mfc-gold); border-radius: var(--mfc-radius-lg);
  border: 1px solid var(--mfc-glass-border);
}
.mfc-hero-poster-shine {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,0.22) 0%, transparent 50%);
}
.mfc-hero-poster-score {
  position: absolute; top: -0.65rem; right: -0.65rem; z-index: 3;
  padding: 0.5rem 0.7rem; border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #fff8dc, var(--mfc-gold));
  color: #111; font-weight: 800; font-size: 0.875rem;
  box-shadow: 0 0 28px var(--mfc-gold-glow); border: 2px solid rgba(255,255,255,0.25);
}

.mfc-hero-badge {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.35rem 0.7rem; border-radius: 999px; font-size: 0.6875rem; font-weight: 700;
  border: 1px solid var(--mfc-glass-border); background: rgba(255,255,255,0.05); color: var(--mfc-text-soft);
  letter-spacing: 0.04em; text-transform: uppercase;
}
.mfc-hero-badge--gold { border-color: rgba(240,192,64,0.4); color: var(--mfc-gold); background: var(--mfc-gold-soft); }
.mfc-hero-badge--ai { border-color: rgba(167,139,250,0.4); color: var(--mfc-ai); background: rgba(167,139,250,0.1); }
.mfc-hero-badge--award { border-color: rgba(255,71,87,0.4); color: #ff9aa3; background: rgba(255,71,87,0.1); }
.mfc-btn-lg { padding: 0.875rem 1.625rem; font-size: 0.9375rem; font-weight: 700; }
.mfc-btn-block { width: 100%; justify-content: center; display: inline-flex; }

/* Editorial card — integrated right column */
.mfc-editorial-card {
  height: 100%; display: flex; flex-direction: column; gap: 1rem;
  padding: 1.5rem; border-radius: var(--mfc-radius-lg);
  background: linear-gradient(160deg, rgba(18,18,24,0.92) 0%, rgba(10,10,14,0.88) 100%);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 0 0 1px rgba(240,192,64,0.08), 0 24px 64px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
}
.mfc-editorial-card-head { display: flex; flex-direction: column; gap: 0.25rem; }
.mfc-editorial-label {
  font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mfc-gold); display: flex; align-items: center; gap: 0.4rem;
}
.mfc-editorial-pick { font-size: 1.125rem; font-weight: 700; color: var(--mfc-text); }
.mfc-editorial-ai {
  display: flex; gap: 0.65rem; padding: 0.875rem; border-radius: var(--mfc-radius);
  background: rgba(167,139,250,0.1); border: 1px solid rgba(167,139,250,0.25);
  font-size: 0.875rem; line-height: 1.55; color: var(--mfc-text-soft);
}
.mfc-editorial-ai i { color: var(--mfc-ai); margin-top: 0.15rem; flex-shrink: 0; }
.mfc-editorial-quote {
  margin: 0; padding: 0.875rem 1rem; border-left: 3px solid var(--mfc-gold);
  font-size: 0.9375rem; line-height: 1.6; color: var(--mfc-text-soft); font-style: italic;
  background: rgba(255,255,255,0.03); border-radius: 0 var(--mfc-radius) var(--mfc-radius) 0;
}
.mfc-editorial-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem;
}
.mfc-editorial-stat {
  text-align: center; padding: 0.65rem 0.35rem; border-radius: var(--mfc-radius);
  background: rgba(255,255,255,0.04); border: 1px solid var(--mfc-glass-border);
}
.mfc-editorial-stat span { display: block; font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--mfc-muted); }
.mfc-editorial-stat strong { display: block; font-size: 1.25rem; font-weight: 800; color: var(--mfc-gold); margin-top: 0.15rem; }
.mfc-editorial-details { display: flex; flex-direction: column; gap: 0.5rem; margin: 0; font-size: 0.8125rem; }
.mfc-editorial-details div { display: flex; justify-content: space-between; gap: 0.75rem; padding: 0.35rem 0; border-bottom: 1px solid var(--mfc-glass-border); }
.mfc-editorial-details dt { color: var(--mfc-muted); font-weight: 500; margin: 0; }
.mfc-editorial-details dd { margin: 0; color: var(--mfc-text); font-weight: 600; text-align: right; }
.mfc-editorial-awards { font-size: 0.8125rem; font-weight: 700; color: #ff9aa3; display: flex; align-items: center; gap: 0.4rem; }
.mfc-editorial-empty { font-size: 0.9375rem; color: var(--mfc-muted); line-height: 1.6; margin: 0; }
.mfc-editorial-card .mfc-btn { margin-top: auto; }

.mfc-scroll-indicator {
  position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 0.35rem;
  color: var(--mfc-muted); text-decoration: none; font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; animation: mfc-bounce 2.2s ease-in-out infinite;
}
@keyframes mfc-bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* PREMIUM SEARCH */
.mfc-search-premium { position: relative; width: 100%; }
.mfc-search-premium-form { display: flex; align-items: stretch; gap: 0.65rem; }
.mfc-search-premium-field {
  flex: 1; display: flex; align-items: center; gap: 0.65rem;
  padding: 0.5rem 0.75rem 0.5rem 1rem;
  border-radius: var(--mfc-radius-lg);
  background: rgba(12,12,16,0.92);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 0 0 1px rgba(240,192,64,0.06), 0 12px 40px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.05);
  backdrop-filter: blur(16px);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.mfc-search-premium-field:focus-within {
  border-color: rgba(240,192,64,0.45);
  box-shadow: 0 0 0 3px rgba(240,192,64,0.12), 0 16px 48px rgba(0,0,0,0.5);
}
.mfc-search-premium-icon { color: var(--mfc-gold); font-size: 1rem; flex-shrink: 0; }
.mfc-search-premium-input {
  flex: 1; border: none; background: transparent; color: var(--mfc-text);
  font-size: 1rem; outline: none; min-width: 0; line-height: 1.4;
  -webkit-appearance: none; appearance: none;
}
.mfc-search-premium-input::placeholder { color: var(--mfc-muted); }
.mfc-search-premium-clear,
.mfc-search-premium-voice {
  width: 2.25rem; height: 2.25rem; border-radius: 50%; flex-shrink: 0;
  border: 1px solid var(--mfc-glass-border); background: var(--mfc-glass);
  color: var(--mfc-text-soft); cursor: pointer; display: grid; place-items: center;
  transition: background 0.2s, color 0.2s;
}
.mfc-search-premium-clear:hover,
.mfc-search-premium-voice:hover { background: var(--mfc-gold-soft); color: var(--mfc-gold); }
.mfc-search-kbd {
  display: none; padding: 0.15rem 0.45rem; border-radius: 6px; font-size: 0.6875rem;
  background: rgba(255,255,255,0.06); border: 1px solid var(--mfc-glass-border); color: var(--mfc-muted);
}
@media (min-width: 768px) { .mfc-search-kbd { display: inline-block; } }
.mfc-search-premium-submit { flex-shrink: 0; align-self: stretch; padding-left: 1.5rem; padding-right: 1.5rem; }
.mfc-search-premium-loader {
  position: absolute; top: 50%; right: 7rem; transform: translateY(-50%);
  display: flex; gap: 0.25rem;
}
.mfc-search-premium-loader span {
  width: 5px; height: 5px; border-radius: 50%; background: var(--mfc-gold);
  animation: mfc-search-pulse 0.9s ease-in-out infinite;
}
.mfc-search-premium-loader span:nth-child(2) { animation-delay: 0.15s; }
.mfc-search-premium-loader span:nth-child(3) { animation-delay: 0.3s; }
@keyframes mfc-search-pulse { 0%, 100% { opacity: 0.3; transform: scale(0.85); } 50% { opacity: 1; transform: scale(1.15); } }
.mfc-search-premium-dropdown {
  position: absolute; top: calc(100% + 0.65rem); left: 0; right: 0; z-index: 150;
  background: rgba(10,10,14,0.98); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--mfc-radius-lg); box-shadow: var(--mfc-shadow);
  max-height: 400px; overflow-y: auto; padding: 0.5rem;
}
.mfc-search-item, .mfc-search-premium-dropdown .mfc-search-item {
  display: flex; align-items: center; gap: 0.75rem; padding: 0.7rem 0.85rem;
  border-radius: var(--mfc-radius); text-decoration: none; color: var(--mfc-text-soft);
  transition: background 0.2s;
}
.mfc-search-item:hover, .mfc-search-item.is-active { background: var(--mfc-gold-soft); color: var(--mfc-text); }
.mfc-search-item-icon { width: 44px; height: 66px; display: grid; place-items: center; background: var(--mfc-glass); border-radius: 6px; color: var(--mfc-muted); }
.mfc-search-item-body strong { display: block; color: var(--mfc-text); font-size: 0.875rem; line-height: 1.3; }
.mfc-search-item-body span { font-size: 0.75rem; color: var(--mfc-muted); }
.mfc-search-item mark { background: rgba(240,192,64,0.35); color: var(--mfc-gold); padding: 0 2px; border-radius: 2px; }
.mfc-search-type { margin-left: auto; font-size: 0.625rem; font-weight: 700; text-transform: uppercase; color: var(--mfc-gold); padding: 0.2rem 0.45rem; border-radius: 4px; background: var(--mfc-gold-soft); }
.mfc-search-section-label { padding: 0.5rem 0.85rem; font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--mfc-muted); }
.mfc-search-empty { padding: 1.25rem; text-align: center; color: var(--mfc-muted); }
.mfc-search-premium-trending { margin-top: 0.75rem; display: flex; flex-wrap: wrap; align-items: center; gap: 0.65rem; }
.mfc-search-premium-trending-label { font-size: 0.75rem; font-weight: 700; color: var(--mfc-muted); white-space: nowrap; }

/* FILTER PILLS */
.mfc-filter-premium { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.mfc-filter-group { display: flex; flex-direction: column; gap: 0.65rem; }
.mfc-filter-group-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--mfc-muted); display: flex; align-items: center; gap: 0.4rem;
}
.mfc-filter-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.mfc-filter-pills--scroll {
  flex-wrap: nowrap; overflow-x: auto; padding-bottom: 0.35rem;
  scrollbar-width: thin; scrollbar-color: rgba(240,192,64,0.35) transparent;
}
.mfc-filter-pills--inline { flex-wrap: wrap; }
.mfc-filter-pill {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  min-height: 2.5rem; padding: 0.5rem 1.125rem; border-radius: 999px;
  font-size: 0.8125rem; font-weight: 600; text-decoration: none;
  border: 1px solid var(--mfc-glass-border); background: rgba(255,255,255,0.04);
  color: var(--mfc-text-soft); white-space: nowrap; cursor: pointer;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.mfc-filter-pill i { flex-shrink: 0; width: 1rem; text-align: center; font-size: 0.8125rem; opacity: 0.9; }
.mfc-filter-count {
  margin-left: 0.15rem; padding: 0.1rem 0.45rem; border-radius: 999px;
  font-size: 0.6875rem; font-weight: 700; background: rgba(255,255,255,0.08); color: var(--mfc-muted);
}
.mfc-filter-pill:hover { border-color: rgba(240,192,64,0.35); color: var(--mfc-text); transform: translateY(-1px); }
.mfc-filter-pill.is-active {
  background: var(--mfc-gold-soft); border-color: rgba(240,192,64,0.5);
  color: var(--mfc-gold); box-shadow: 0 0 20px rgba(240,192,64,0.15);
}
.mfc-filter-pill.is-active .mfc-filter-count { background: rgba(240,192,64,0.2); color: var(--mfc-gold); }

/* UNIFIED FILTER SYSTEM */
.mfc-filter-system {
  margin-bottom: 2rem; padding: 1.25rem 1.5rem;
  border-radius: var(--mfc-radius-lg);
  background: linear-gradient(160deg, rgba(18,18,24,0.95) 0%, rgba(10,10,14,0.92) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 0 0 1px rgba(240,192,64,0.06), 0 20px 56px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.05);
  backdrop-filter: blur(16px);
}
.mfc-filter-system-head {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem;
  margin-bottom: 1rem; flex-wrap: wrap;
}
.mfc-filter-system-title {
  display: flex; align-items: center; gap: 0.75rem;
}
.mfc-filter-system-title > i {
  width: 2.5rem; height: 2.5rem; border-radius: 12px; flex-shrink: 0;
  display: grid; place-items: center; font-size: 1rem;
  background: var(--mfc-gold-soft); color: var(--mfc-gold);
  border: 1px solid rgba(240,192,64,0.25);
}
.mfc-filter-system-title strong {
  display: block; font-family: var(--mfc-display); font-size: 1.35rem;
  letter-spacing: 0.06em; color: var(--mfc-text); line-height: 1.1;
}
.mfc-filter-system-title span { display: block; font-size: 0.8125rem; color: var(--mfc-muted); margin-top: 0.15rem; }
.mfc-filter-system-reset {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.45rem 0.85rem; border-radius: 999px; font-size: 0.8125rem; font-weight: 600;
  text-decoration: none; color: var(--mfc-muted);
  border: 1px solid var(--mfc-glass-border); background: rgba(255,255,255,0.03);
  transition: color 0.2s, border-color 0.2s;
}
.mfc-filter-system-reset:hover { color: var(--mfc-gold); border-color: rgba(240,192,64,0.35); }
.mfc-filter-system-active {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem;
  padding-bottom: 1rem; border-bottom: 1px solid var(--mfc-glass-border);
}
.mfc-filter-active-chip {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.35rem 0.75rem; border-radius: 999px; font-size: 0.75rem; font-weight: 600;
  background: rgba(240,192,64,0.12); border: 1px solid rgba(240,192,64,0.3); color: var(--mfc-gold);
}
.mfc-filter-system-tabs {
  display: flex; gap: 0.35rem; margin-bottom: 1rem;
  padding: 0.35rem; border-radius: 999px;
  background: rgba(0,0,0,0.35); border: 1px solid var(--mfc-glass-border);
  width: fit-content; max-width: 100%; overflow-x: auto;
}
.mfc-filter-system-tab {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.55rem 1.1rem; border-radius: 999px; border: none;
  background: transparent; color: var(--mfc-muted);
  font-size: 0.8125rem; font-weight: 600; cursor: pointer; white-space: nowrap;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  font-family: inherit;
}
.mfc-filter-system-tab:hover { color: var(--mfc-text); }
.mfc-filter-system-tab.is-active {
  background: var(--mfc-gold); color: #111;
  box-shadow: 0 4px 16px rgba(240,192,64,0.25);
}
.mfc-filter-system-tab.is-active i { color: #111; }
.mfc-filter-tab-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--mfc-gold); flex-shrink: 0;
}
.mfc-filter-system-tab.is-active .mfc-filter-tab-dot { background: #111; }
.mfc-filter-system-body { min-height: 3rem; }
.mfc-filter-system-panel { animation: mfc-filter-fade 0.25s var(--mfc-ease); }
.mfc-filter-system-panel[hidden] { display: none !important; }
@keyframes mfc-filter-fade {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: none; }
}

.mfc-shelves-flow { padding-bottom: 1rem; }
.mfc-genre-rail { padding: 1rem 0 0.5rem; }
.mfc-shelf-track--grid { flex-wrap: wrap; }
.mfc-pagination { margin-top: 2rem; }

/* Typography tightening */
.mfc-hero-title { line-height: 1.05; margin: 0; overflow-wrap: break-word; word-break: normal; }
.mfc-hero-tagline { line-height: 1.65; }
.mfc-shelf-title { line-height: 1.15; letter-spacing: 0.04em; }
.mfc-shelf-subtitle { margin: 0.25rem 0 0; font-size: 0.8125rem; color: var(--mfc-muted); line-height: 1.5; max-width: 52ch; }
.mfc-card-reason {
  display: block; margin-top: 0.35rem; font-size: 0.6875rem; font-weight: 600;
  color: var(--mfc-gold); line-height: 1.35;
}
.mfc-card-reason i { opacity: 0.85; margin-right: 0.2rem; }

/* EMPTY STATE + CARDS + COMPARE + COMMUNITY — retained from 23.4 */
.mfc-empty-state {
  text-align: center; padding: 3rem 1.5rem;
  border-radius: var(--mfc-radius-lg); border: 1px dashed var(--mfc-glass-border);
  background: linear-gradient(145deg, rgba(16,16,22,0.6), rgba(10,10,14,0.4));
}
.mfc-empty-state-icon {
  width: 4rem; height: 4rem; margin: 0 auto 1rem; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.5rem;
  background: var(--mfc-gold-soft); color: var(--mfc-gold);
}
.mfc-empty-state-title { font-family: var(--mfc-display); font-size: 1.75rem; letter-spacing: 0.05em; margin: 0 0 0.5rem; color: var(--mfc-text); }
.mfc-empty-state-text { color: var(--mfc-muted); max-width: 42ch; margin: 0 auto 1.25rem; line-height: 1.65; }
.mfc-empty-state-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }

/* CARD UPGRADES */
.mfc-card-glow {
  position: absolute; inset: -20%; background: radial-gradient(circle, var(--mfc-gold-glow) 0%, transparent 65%);
  opacity: 0; transition: opacity 0.35s; pointer-events: none;
}
.mfc-card:hover .mfc-card-glow { opacity: 0.35; }
.mfc-card-award {
  position: absolute; top: 0.5rem; right: 0.5rem; z-index: 2;
  width: 1.75rem; height: 1.75rem; border-radius: 50%;
  display: grid; place-items: center; background: rgba(255,71,87,0.9); color: #fff; font-size: 0.625rem;
}
.mfc-card-fallback { height: 100%; display: grid; place-items: center; color: var(--mfc-gold); }
.mfc-card-poster-link { display: block; width: 100%; height: 100%; }
.mfc-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s var(--mfc-ease); }
.mfc-card:hover .mfc-card-img { transform: scale(1.08); }
.mfc-card-trailer {
  position: absolute; inset: 0; z-index: 1; opacity: 0; transition: opacity 0.35s;
  pointer-events: none;
}
.mfc-card-trailer img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.55); }
.mfc-card-trailer-play {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-size: 2rem; color: #fff; text-shadow: 0 4px 24px rgba(0,0,0,0.8);
}
.mfc-card.is-trailer-active .mfc-card-trailer { opacity: 1; }

/* COMPARE VS + CHARTS */
.mfc-compare-vs-row {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 1rem; margin: 1.5rem 0;
}
.mfc-compare-vs-badge {
  font-family: var(--mfc-display); font-size: 2rem; letter-spacing: 0.08em;
  color: var(--mfc-red); text-shadow: 0 0 24px rgba(255,71,87,0.45);
}
.mfc-compare-genres { font-size: 0.75rem; color: var(--mfc-muted); margin: 0.35rem 0 0; }
.mfc-compare-charts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1rem; }
.mfc-chart-panel {
  padding: 1rem; border-radius: var(--mfc-radius);
  background: rgba(255,255,255,0.03); border: 1px solid var(--mfc-glass-border);
}
.mfc-chart-panel h3 { font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--mfc-muted); margin: 0 0 0.75rem; }

/* COMMUNITY FORMS — dark premium */
.mfc-community .mp-review-form,
.mfc-community .mp-comment-form,
.mfc-community .mp-question-form {
  padding: 1.25rem; margin: 1rem;
  border-radius: var(--mfc-radius-lg);
  background: rgba(255,255,255,0.03); border: 1px solid var(--mfc-glass-border);
}
.mfc-community .mp-form-title,
.mfc-community .mp-tab-subhead { color: var(--mfc-text); font-weight: 700; margin: 0 0 1rem; }
.mfc-community .mp-input,
.mfc-community textarea,
.mfc-community select {
  width: 100%; padding: 0.65rem 0.875rem;
  border-radius: var(--mfc-radius); border: 1px solid var(--mfc-glass-border);
  background: rgba(5,5,6,0.85); color: var(--mfc-text); font-family: inherit; font-size: 0.9375rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.mfc-community .mp-input:focus,
.mfc-community textarea:focus,
.mfc-community select:focus {
  outline: none; border-color: var(--mfc-gold);
  box-shadow: 0 0 0 3px rgba(240,192,64,0.15);
}
.mfc-community label { display: block; font-size: 0.8125rem; font-weight: 600; color: var(--mfc-muted); margin-bottom: 0.35rem; }
.mfc-community .mp-star-rating { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 1rem; }
.mfc-community .mp-star-pick {
  display: flex; flex-direction: column; align-items: center; gap: 0.15rem;
  padding: 0.45rem 0.55rem; border-radius: 8px; border: 1px solid var(--mfc-glass-border);
  cursor: pointer; color: var(--mfc-muted); font-size: 0.6875rem;
}
.mfc-community .mp-star-pick input { position: absolute; opacity: 0; pointer-events: none; }
.mfc-community .mp-star-pick:has(input:checked) { background: var(--mfc-gold-soft); border-color: var(--mfc-gold); color: var(--mfc-gold); }
.mfc-community .mp-file-input {
  padding: 0.5rem; border-radius: var(--mfc-radius); border: 1px dashed var(--mfc-glass-border);
  background: rgba(255,255,255,0.02); color: var(--mfc-muted); width: 100%;
}
.mfc-community .mp-review-card {
  margin: 0 1rem 0.75rem; padding: 1.25rem;
  border-radius: var(--mfc-radius-lg); border: 1px solid var(--mfc-glass-border);
  background: linear-gradient(145deg, rgba(16,16,22,0.95), rgba(10,10,14,0.88));
}
.mfc-community .mp-review-avatar {
  width: 48px; height: 48px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--mfc-glass-border);
}
.mfc-community .mp-review-avatar-fb {
  display: grid; place-items: center; background: var(--mfc-gold-soft); color: var(--mfc-gold); font-weight: 800;
}
.mfc-community .mp-review-card-head { display: flex; gap: 0.875rem; margin-bottom: 0.75rem; }
.mfc-community .mp-rbadge {
  display: inline-flex; align-items: center; gap: 0.25rem;
  padding: 0.15rem 0.45rem; border-radius: 999px; font-size: 0.625rem; font-weight: 700;
  background: var(--mfc-glass); color: var(--mfc-muted); border: 1px solid var(--mfc-glass-border);
}
.mfc-community .mp-rbadge.critic { color: #f472b6; border-color: rgba(244,114,182,0.35); }
.mfc-community .mfc-insights-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 0.75rem; margin-top: 0.75rem; }
.mfc-community .mfc-insights-grid div { padding: 0.75rem; background: rgba(255,255,255,0.03); border-radius: var(--mfc-radius); border: 1px solid var(--mfc-glass-border); }
.mfc-community .mfc-insights-grid strong { display: block; font-size: 1.25rem; color: var(--mfc-gold); }
.mfc-community .mfc-insights-grid span { font-size: 0.6875rem; color: var(--mfc-muted); text-transform: uppercase; }
.mfc-community .mfc-review-body-wrap.is-collapsed .mfc-review-body { max-height: 6rem; overflow: hidden; mask-image: linear-gradient(#000 60%, transparent); }
.mfc-compare-charts-grid--4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.mfc-profile-card { display: flex; gap: 1rem; align-items: center; }
.mfc-profile-avatar { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; }
.mfc-profile-avatar-fb { width: 72px; height: 72px; border-radius: 50%; display: grid; place-items: center; background: var(--mfc-gold-soft); color: var(--mfc-gold); font-weight: 800; font-size: 1.5rem; }
.mfc-card-progress { position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: rgba(0,0,0,0.45); z-index: 3; }
.mfc-card-progress span { display: block; height: 100%; background: var(--mfc-gold); border-radius: 0 2px 2px 0; }
.mfc-smart-list-fields { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.mfc-comment-pinned { border-left: 3px solid var(--mfc-gold); padding-left: 0.75rem; }
.mfc-comment-locked { opacity: 0.85; }
.mfc-comment-locked { opacity: 0.85; }
.mfc-community .mp-empty {
  padding: 2.5rem 1rem; text-align: center; color: var(--mfc-muted);
  border: 1px dashed var(--mfc-glass-border); border-radius: var(--mfc-radius); margin: 1rem;
}

/* SECTION VARIANTS */
.mfc-section--editorial { border-color: rgba(240,192,64,0.2); }
.mfc-section--ai { border-color: rgba(167,139,250,0.25); background: linear-gradient(145deg, rgba(22,18,32,0.95), rgba(10,10,14,0.88)); }
.mfc-section--awards { border-left: 4px solid var(--mfc-gold); }

.mfc-compare-intro { position: relative; z-index: 2; padding-top: 1.5rem; }
.mfc-compare-hero-banner {
  position: relative; height: 220px; overflow: hidden; margin-bottom: -4rem;
}
.mfc-compare-hero-banner img {
  width: 100%; height: 100%; object-fit: cover; filter: blur(8px) brightness(0.35);
  transform: scale(1.08);
}
.mfc-compare-hero-banner .mfc-home-hero-overlay { opacity: 0.9; }

/* RESPONSIVE 23.4.1 */
@media (max-width: 1200px) {
  .mfc-hero-composition {
    grid-template-columns: 160px 1fr 260px;
    gap: 1.25rem 1.5rem;
  }
}
@media (max-width: 1024px) {
  .mfc-hero-composition {
    grid-template-columns: 150px 1fr;
    grid-template-areas:
      "poster main"
      "search search"
      "editorial editorial";
  }
  .mfc-hero-slot--editorial { align-self: auto; }
  .mfc-editorial-card { height: auto; }
}
@media (max-width: 768px) {
  .mfc-home-hero { min-height: auto; }
  .mfc-hero-composition--discover {
    grid-template-columns: 1fr;
    grid-template-areas: "poster" "main";
    gap: 1.25rem;
  }
  .mfc-hero-slot--poster { max-width: 180px; margin: 0 auto; }
  .mfc-hero-title--film { max-width: none; font-size: clamp(2rem, 9vw, 3rem); }
  .mfc-home-hero-inner { min-height: auto; padding: calc(var(--mfc-nav-h) + 1rem) 0 3.5rem; align-items: flex-start; }
  .mfc-hero-composition {
    grid-template-columns: 1fr;
    grid-template-areas: "poster" "main" "editorial" "search";
    gap: 1.25rem;
  }
  .mfc-hero-slot--poster { max-width: 200px; margin: 0 auto; }
  .mfc-hero-stack { max-width: none; }
  .mfc-search-premium-form { flex-direction: column; }
  .mfc-search-premium-submit { width: 100%; justify-content: center; }
  .mfc-compare-vs-row { flex-direction: column; }
  .mfc-compare-vs-badge { transform: rotate(90deg); }
}
@media (max-width: 640px) {
  .mfc-filter-system { padding: 1rem; }
  .mfc-filter-system-tabs { width: 100%; }
  .mfc-filter-system-tab { flex: 1; justify-content: center; padding: 0.55rem 0.65rem; font-size: 0.75rem; }
  .mfc-section { padding: 1.25rem; }
  .mfc-card { flex: 0 0 132px; }
  .mfc-hero-title { font-size: clamp(2.25rem, 10vw, 3.5rem); }
}
@media (prefers-reduced-motion: reduce) {
  .mfc-home-hero-backdrop-img, .mfc-particle, .mfc-scroll-indicator { animation: none; }
  .mfc-hero-poster-frame { transform: none; }
}

/* PLATFORM 23.4.2 — COMPARE WIDGETS */
.mfc-compare-widget-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem;
}
.mfc-compare-widget-card {
  padding: 1.25rem; border-radius: var(--mfc-radius-lg);
  border: 1px solid var(--mfc-glass-border);
  background: linear-gradient(145deg, rgba(16,16,22,0.95), rgba(10,10,14,0.88));
  box-shadow: var(--mfc-shadow);
}
.mfc-compare-widget-films { display: flex; align-items: center; gap: 0.65rem; margin-bottom: 0.75rem; }
.mfc-compare-widget-film { flex: 1; min-width: 0; display: flex; gap: 0.5rem; align-items: flex-start; }
.mfc-compare-widget-film img { width: 56px; height: 84px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.mfc-compare-widget-fallback {
  width: 56px; height: 84px; border-radius: 8px; display: grid; place-items: center;
  background: var(--mfc-glass); color: var(--mfc-muted); flex-shrink: 0;
}
.mfc-compare-widget-meta { min-width: 0; display: flex; flex-direction: column; gap: 0.2rem; }
.mfc-compare-widget-meta strong { font-size: 0.8125rem; line-height: 1.25; color: var(--mfc-text); word-break: break-word; }
.mfc-compare-widget-meta span { font-size: 0.6875rem; color: var(--mfc-muted); }
.mfc-compare-widget-vs {
  flex-shrink: 0; font-weight: 800; font-size: 0.75rem; color: var(--mfc-gold);
  padding: 0.35rem 0.5rem; border-radius: 999px; background: var(--mfc-gold-soft);
}
.mfc-compare-widget-views { font-size: 0.75rem; color: var(--mfc-muted); margin: 0 0 0.75rem; }
.mfc-compare-widget-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.mfc-btn-sm { padding: 0.45rem 0.85rem; font-size: 0.8125rem; }

.mfc-compare-winner-badge {
  position: absolute; top: 0.5rem; left: 0.5rem; z-index: 2;
  padding: 0.25rem 0.55rem; border-radius: 999px; font-size: 0.625rem; font-weight: 800;
  background: var(--mfc-gold); color: #111;
}
.mfc-compare-poster-card { position: relative; }
.mfc-compare-card-meta {
  display: flex; flex-wrap: wrap; gap: 0.5rem; font-size: 0.75rem; color: var(--mfc-muted); margin-bottom: 0.35rem;
}
.mfc-compare-widgets-section { margin-top: 2.5rem; }
.mfc-compare-widgets-section .mfc-shelf-title { margin-bottom: 1rem; }

.mfc-input {
  padding: 0.65rem 0.875rem; border-radius: var(--mfc-radius);
  border: 1px solid var(--mfc-glass-border); background: rgba(5,5,6,0.85);
  color: var(--mfc-text); font-family: inherit; font-size: 0.875rem;
}
.mfc-input-select { min-width: 140px; cursor: pointer; }

/* Form controls — library, lists, bookmarks (no browser defaults) */
.mfc-root select,
.mfc-root .mp-input,
.mfc-root .mfc-input-select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  padding: 0.55rem 2rem 0.55rem 0.75rem;
  border-radius: var(--mfc-radius);
  border: 1px solid var(--mfc-glass-border);
  background: rgba(5, 5, 6, 0.85) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23a8a29e' d='M1 1l5 5 5-5'/%3E%3C/svg%3E") no-repeat right 0.65rem center;
  color: var(--mfc-text);
  font-family: inherit;
  font-size: 0.875rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.mfc-root select:focus,
.mfc-root .mp-input:focus,
.mfc-root .mfc-input-select:focus {
  outline: none;
  border-color: var(--mfc-gold);
  box-shadow: 0 0 0 3px rgba(240, 192, 64, 0.15);
}
.mfc-root .mp-input-sm,
.mfc-root select.mp-input-sm { padding: 0.4rem 1.75rem 0.4rem 0.6rem; font-size: 0.8125rem; }
.mfc-root .mfc-chip select { width: auto; padding: 0.2rem 1.5rem 0.2rem 0.5rem; font-size: inherit; background-color: transparent; border: none; }

/* Platform 26.4.1 — Enterprise navigation */
.mfc-nav--enterprise { border-bottom: 1px solid var(--mfc-glass-border); }
.mfc-nav-inner--enterprise { flex-wrap: nowrap; overflow: visible; min-height: var(--mfc-nav-h); }
.mfc-nav-brand span { color: var(--mfc-muted); font-size: 0.75em; margin-left: 0.35rem; }
.mfc-nav__primary { display: flex; align-items: center; gap: 0.15rem; flex: 1 1 auto; min-width: 0; overflow: hidden; flex-wrap: nowrap; }
.mfc-nav__primary .mfc-nav__link { display: inline-flex; align-items: center; gap: 0.35rem; white-space: nowrap; flex-shrink: 0; padding: 0.45rem 0.75rem; border-radius: 999px; font-size: 0.8125rem; font-weight: 600; color: var(--mfc-muted); border: none; background: transparent; cursor: pointer; text-decoration: none; }
.mfc-nav__primary .mfc-nav__link:hover, .mfc-nav__primary .mfc-nav__link.is-active { color: var(--mfc-text); background: var(--mfc-glass); }
.mfc-nav__primary .mfc-nav__link.is-active { background: var(--mfc-gold); color: #111; }
.mfc-nav__primary .mfc-nav__link.is-overflow-hidden,
.mfc-nav__primary [data-mfc-nav-item].is-overflow-hidden { display: none !important; }
.mfc-nav__chevron { font-size: 0.625rem; opacity: 0.7; margin-left: 0.15rem; }
.mfc-nav__dropdown { position: relative; flex-shrink: 0; }
.mfc-nav__dropdown-panel { position: absolute; top: calc(100% + 0.35rem); left: 0; min-width: 12rem; padding: 0.5rem; border-radius: var(--mfc-radius-lg); background: rgba(14, 14, 16, 0.98); border: 1px solid var(--mfc-glass-border); box-shadow: var(--mfc-shadow); z-index: 220; }
.mfc-nav__dropdown-panel--mega { display: grid; grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr)); gap: 0.75rem 1.25rem; min-width: min(90vw, 28rem); max-height: min(70vh, 24rem); overflow-y: auto; }
.mfc-nav__dropdown-panel[hidden] { display: none !important; }
.mfc-nav__dropdown-item { display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem 0.65rem; border-radius: 8px; color: var(--mfc-muted); font-size: 0.8125rem; white-space: nowrap; text-decoration: none; }
.mfc-nav__dropdown-item:hover, .mfc-nav__dropdown-item.is-active { color: var(--mfc-text); background: rgba(240, 192, 64, 0.15); }
.mfc-nav__mega-group { display: flex; flex-direction: column; gap: 0.15rem; min-width: 10rem; }
.mfc-nav__mega-label { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--mfc-muted); margin: 0.25rem 0 0; padding: 0 0.35rem; }
.mfc-nav__actions { display: flex; align-items: center; gap: 0.35rem; flex-shrink: 0; margin-left: auto; }
.mfc-nav__action { display: inline-flex; align-items: center; justify-content: center; min-width: 2.25rem; height: 2.25rem; padding: 0 0.5rem; border-radius: 999px; border: 1px solid var(--mfc-glass-border); background: var(--mfc-glass); color: var(--mfc-muted); text-decoration: none; }
.mfc-nav__action:hover, .mfc-nav__action.is-active { color: var(--mfc-gold); border-color: var(--mfc-gold); }
.mfc-mobile-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 180; background: rgba(5,5,6,0.96); border-top: 1px solid var(--mfc-glass-border); padding: 0.35rem 0 calc(0.35rem + env(safe-area-inset-bottom)); }
.mfc-mobile-bar__item { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 0.15rem; padding: 0.35rem; border: none; background: transparent; color: var(--mfc-muted); font-size: 0.625rem; text-decoration: none; cursor: pointer; }
.mfc-mobile-bar__item.is-active { color: var(--mfc-gold); }
.mfc-drawer[hidden] { display: none !important; }
.mfc-drawer { position: fixed; inset: 0; z-index: 300; }
.mfc-drawer__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.55); }
.mfc-drawer__panel { position: absolute; top: 0; right: 0; width: min(88vw, 320px); height: 100%; background: var(--mfc-bg); border-left: 1px solid var(--mfc-glass-border); display: flex; flex-direction: column; overflow: hidden; }
.mfc-drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 1rem; border-bottom: 1px solid var(--mfc-glass-border); }
.mfc-drawer__close { border: none; background: transparent; color: var(--mfc-text); cursor: pointer; }
.mfc-drawer__body { overflow-y: auto; padding: 0.5rem 0 1.5rem; }
.mfc-drawer__link, .mfc-drawer__sublink { display: block; padding: 0.65rem 1rem; color: var(--mfc-text); text-decoration: none; }
.mfc-drawer__sublink { padding-left: 1.75rem; color: var(--mfc-muted); font-size: 0.875rem; }
.mfc-drawer__accordion summary { padding: 0.65rem 1rem; cursor: pointer; font-weight: 600; }
@media (max-width: 768px) {
  .mfc-nav__primary, .mfc-nav__actions { display: none; }
  .mfc-mobile-bar { display: flex; }
  .mfc-root { padding-bottom: 4.5rem; }
}
