
/* FORCE html cosmic bg · highest priority · evite fond blanc/texte invisible */
html { background: #050010 !important; background-attachment: fixed !important; overflow-x: hidden !important; }
html body { overflow-x: hidden !important; max-width: 100vw !important; box-sizing: border-box !important; }
.container { max-width: 100% !important; box-sizing: border-box !important; }
body.post-template, body.post-template.tag-newsletter, body.post-template.tag-l-archive, body.post-template.tag-larchive, body.post-template.tag-archive { background: linear-gradient(180deg, #050010 0%, #1a0532 50%, #08010f 100%) !important; background-attachment: fixed !important; color: #FFF5E6 !important; }

:root {
  --ivory: #FFF5E6;
  --gold: #FFD480;
  --magenta: #FF1F8B;
  --rose: #FF5CB8;
  --cyan: #B8E0FF;
  --cosmic-1: #050010;
  --cosmic-2: #1a0532;
  --cosmic-3: #08010f;
  --line: rgba(255, 245, 230, 0.15);
  --line-strong: rgba(255, 245, 230, 0.35);
  --gradient-pop: linear-gradient(135deg, var(--ivory) 0%, var(--gold) 30%, var(--magenta) 55%, var(--gold) 80%, var(--ivory) 100%);
  --gradient-rainbow: linear-gradient(90deg, var(--ivory) 0%, var(--gold) 14%, var(--rose) 28%, var(--magenta) 42%, var(--cyan) 56%, var(--rose) 70%, var(--gold) 84%, var(--ivory) 100%);
  --serif: 'Fraunces', 'Times New Roman', serif;
  --reader: 'Newsreader', 'Georgia', serif;
  --mono: 'JetBrains Mono', 'Courier New', monospace;
  --sans: 'Inter', 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
}

/* OPTION SAFE · cache le footer Ghost natif uniquement sur articles */
body.post-template:not(.tag-l-archive):not(.tag-archive):not(.tag-larchive):not(.tag-newsletter) > footer:not(.zs-footer),
body.post-template:not(.tag-l-archive):not(.tag-archive):not(.tag-larchive):not(.tag-newsletter) .gh-foot,
body.post-template:not(.tag-l-archive):not(.tag-archive):not(.tag-larchive):not(.tag-newsletter) .site-footer { display: none !important; }

/* === BASE · cosmic bg + ivory text appliqué à TOUS les post-template (y compris bypass) pour eviter texte invisible === */
body.post-template {
  background: linear-gradient(180deg, var(--cosmic-1) 0%, var(--cosmic-2) 50%, var(--cosmic-3) 100%) !important;
  background-attachment: fixed !important;
  color: var(--ivory) !important;
  font-family: var(--reader) !important;
  line-height: 1.6;
  -webkit-overflow-scrolling: touch !important;
  touch-action: pan-y !important;
}
/* Force text visible on bypass posts (newsletter, l-archive, larchive, archive) · ivory sur cosmic */
body.post-template.tag-newsletter, body.post-template.tag-l-archive, body.post-template.tag-larchive, body.post-template.tag-archive {
  background: linear-gradient(180deg, var(--cosmic-1) 0%, var(--cosmic-2) 50%, var(--cosmic-3) 100%) !important;
  color: var(--ivory) !important;
}
body.post-template.tag-newsletter .gh-content, body.post-template.tag-newsletter .post-content,
body.post-template.tag-l-archive .gh-content, body.post-template.tag-l-archive .post-content,
body.post-template.tag-larchive .gh-content, body.post-template.tag-larchive .post-content,
body.post-template.tag-archive .gh-content, body.post-template.tag-archive .post-content { color: #FFF5E6 !important; }
body.post-template.tag-newsletter h1, body.post-template.tag-newsletter h2, body.post-template.tag-newsletter h3,
body.post-template.tag-l-archive h1, body.post-template.tag-l-archive h2, body.post-template.tag-l-archive h3 { color: #FFD480 !important; }
body.post-template.tag-newsletter p, body.post-template.tag-newsletter li,
body.post-template.tag-l-archive p, body.post-template.tag-l-archive li { color: #FFF5E6 !important; }

/* === Police Inter pour wordmark (utilise Inter du Code Injection si déjà chargé) === */
.zs-pop * { box-sizing: border-box; }

@keyframes zs-rainbow-shift { 0%{background-position:0% 50%} 100%{background-position:300% 50%} }
@keyframes zs-pop-shift { 0%{background-position:0% 50%} 100%{background-position:100% 50%} }
@keyframes zs-spin-cw { to { transform: rotate(360deg); } }
@keyframes zs-spin-ccw { to { transform: rotate(-360deg); } }
@keyframes zs-pulse-dot-mini { 0%,100%{opacity:1} 50%{opacity:.4} }
@keyframes zs-ticker-scroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
@keyframes zs-arrow-bounce { 0%,100%{transform:translate(0,0)} 50%{transform:translate(4px,-4px)} }
@keyframes zs-orb-pulse {
  0%,100% { box-shadow: 0 4px 24px rgba(255,31,139,.4), 0 0 0 1px rgba(255,212,128,.3); }
  50% { box-shadow: 0 4px 32px rgba(255,31,139,.65), 0 0 0 1px rgba(255,212,128,.6); }
}
@keyframes zs-dropcap-shift { 0%{background-position:50% 0%} 50%{background-position:50% 100%} 100%{background-position:50% 0%} }

/* === SCROLL PROGRESS BAR === */
.zs-pop .zs-scroll-prog-wrap {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px; z-index: 200; pointer-events: none;
}
.zs-pop .zs-scroll-prog {
  height: 100%; width: 0%;
  background: var(--gradient-rainbow);
  background-size: 200% 100%;
  animation: zs-rainbow-shift 6s linear infinite;
  box-shadow: 0 0 8px rgba(255,31,139,.6);
  transition: width 0.05s linear;
}

/* === TICKER BREAKING NEWS === */
.zs-pop .zs-ticker {
  background: var(--cosmic-1);
  border-bottom: 1px dashed var(--line);
  display: flex; align-items: stretch; overflow: hidden;
  min-height: 32px;
  position: sticky;
  top: 0;
  z-index: 99;
}
.zs-pop .zs-ticker-badge {
  flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--magenta); color: var(--cosmic-1);
  font-family: var(--mono); font-weight: 900;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0 14px; position: relative; z-index: 2;
}
.zs-pop .zs-ticker-badge::after {
  content:''; position: absolute; right: -8px; top: 0; bottom: 0;
  width: 16px; background: var(--magenta);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.zs-pop .zs-ticker-pulse {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--cosmic-1);
  animation: zs-pulse-dot-mini 1s ease-in-out infinite;
}
.zs-pop .zs-ticker-marquee {
  flex: 1; overflow: hidden; position: relative;
  display: flex; align-items: center; padding-left: 18px;
  mask-image: linear-gradient(to right, transparent 0, #000 24px, #000 calc(100% - 40px), transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 24px, #000 calc(100% - 40px), transparent 100%);
}
.zs-pop .zs-ticker-track {
  display: inline-flex; gap: 0; white-space: nowrap;
  animation: zs-ticker-scroll 80s linear infinite;
  padding-right: 80px;
}
.zs-pop .zs-ticker-track a {
  font-family: var(--reader); font-style: italic; font-size: 13.5px;
  color: var(--ivory); text-decoration: none;
  padding: 6px 18px 6px 0;
  display: inline-flex; align-items: center; gap: 18px;
  transition: color 0.2s;
}
.zs-pop .zs-ticker-track a:hover { color: var(--gold); }
.zs-pop .zs-ticker-track a::before { content:'✦'; color: var(--magenta); font-size:10px; opacity:.7; }
.zs-pop .zs-ticker-track .zs-ticker-tag {
  font-family: var(--mono); font-weight: 700; font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-right: 8px; opacity: 0.85;
}
.zs-pop .zs-ticker:hover .zs-ticker-track { animation-play-state: paused; }

/* === ARTICLE === */
.zs-pop .zs-article {
  max-width: 720px; margin: 0 auto;
  padding: 40px 20px 60px; position: relative;
}
@media (min-width: 768px) { .zs-pop .zs-article { padding: 48px 24px 70px; } }
@media (min-width: 1024px) { .zs-pop .zs-article { padding: 80px 48px 100px; } }

.zs-pop .zs-tag-line {
  font-family: var(--mono); font-weight: 700; font-size: 11px;
  letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase;
  margin-bottom: 24px; display: flex; flex-wrap: wrap; gap: 8px;
  align-items: center;
}
.zs-pop .zs-tag-line .zs-sep { color: var(--line-strong); }
.zs-pop .zs-tag-line .zs-tag-num {
  color: var(--magenta); border: 1px solid var(--magenta);
  padding: 2px 6px; font-size: 10px; border-radius: 2px;
}
.zs-pop .zs-time-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-weight: 700; font-size: 9.5px;
  letter-spacing: 0.18em; color: var(--magenta);
  text-transform: uppercase;
  background: rgba(255,31,139,.08);
  padding: 4px 8px; border: 1px dashed var(--magenta); border-radius: 3px;
}
.zs-pop .zs-time-badge::before { content:'◉'; color: var(--magenta); animation: zs-pulse-dot-mini 1.5s ease-in-out infinite; }

.zs-pop .zs-title {
  font-family: var(--serif); font-weight: 900; font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  text-transform: uppercase;
  background: var(--gradient-pop); background-size: 200% 100%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 0.98; letter-spacing: -0.015em;
  font-size: clamp(2.4rem, 9vw, 5.5rem);
  margin-bottom: 36px;
  animation: zs-pop-shift 16s ease-in-out infinite alternate;
}

.zs-pop .zs-lede {
  font-family: var(--reader); font-style: italic; font-weight: 400;
  font-size: clamp(1.05rem, 2.4vw, 1.3rem); line-height: 1.5;
  color: var(--ivory); opacity: 0.95;
  border-left: 2px solid var(--gold); padding-left: 18px;
  margin-bottom: 40px; max-width: 620px;
}

/* === HERO FEATURE IMAGE ou fallback vignette === */
.zs-pop .zs-hero-img {
  margin: -8px 0 40px;
  border-radius: 2px; overflow: hidden;
  border: 1px dashed var(--line);
  position: relative;
}
.zs-pop .zs-hero-img img {
  display: block; width: 100%; height: auto;
}
.zs-pop .zs-hero-img figcaption {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--ivory); opacity: 0.55;
  padding: 10px 14px; border-top: 1px dashed var(--line);
  background: rgba(5,0,16,.6);
}
.zs-pop .zs-hero-fallback {
  height: 280px;
  position: relative; overflow: hidden;
  background: radial-gradient(circle at 25% 30%, rgba(255,31,139,.3) 0%, transparent 60%),
              radial-gradient(circle at 75% 70%, rgba(255,212,128,.22) 0%, transparent 55%),
              linear-gradient(135deg, var(--cosmic-2) 0%, #2a0a3f 50%, var(--cosmic-1) 100%);
  display: flex; align-items: center; justify-content: center;
}
.zs-pop .zs-hero-fallback::before {
  content: attr(data-rubrique);
  font-family: var(--serif); font-weight: 900; font-style: italic;
  font-variation-settings: "opsz" 144, "WONK" 1, "SOFT" 100;
  font-size: clamp(3rem, 10vw, 6rem); text-transform: uppercase;
  background: linear-gradient(135deg, var(--ivory) 0%, var(--gold) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; letter-spacing: -0.02em;
}

.zs-pop .zs-meta {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 0;
  border-top: 1px dashed var(--line); border-bottom: 1px dashed var(--line);
  margin-bottom: 48px; flex-wrap: wrap;
}
.zs-pop .zs-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px dashed var(--gold);
  background: linear-gradient(135deg, var(--rose) 0%, var(--gold) 50%, var(--cyan) 100%);
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-weight: 700; font-size: 14px;
  color: var(--cosmic-1); overflow: hidden;
}
.zs-pop .zs-avatar img { width:100%; height:100%; object-fit: cover; border-radius: 50%; }
.zs-pop .zs-meta-text {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  display: flex; flex-direction: column; gap: 3px;
}
.zs-pop .zs-meta-text .zs-author { color: var(--gold); font-weight: 700; }
.zs-pop .zs-meta-text .zs-date { color: var(--ivory); opacity: 0.6; font-size: 10px; }

/* === BODY === */
.zs-pop .zs-body {
  font-family: var(--reader); font-weight: 400;
  font-size: clamp(1.05rem, 2vw, 1.18rem); line-height: 1.75;
  color: var(--ivory); max-width: 660px;
}
.zs-pop .zs-body > p { margin-bottom: 1.4em; }
.zs-pop .zs-body > p:first-of-type::first-letter {
  font-family: var(--serif); font-weight: 900; font-style: italic;
  font-variation-settings: "opsz" 144, "WONK" 1;
  font-size: 5.2em; line-height: 0.85;
  float: left; padding-right: 12px; padding-top: 6px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--magenta) 100%);
  background-size: 100% 200%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: zs-dropcap-shift 12s ease-in-out infinite alternate;
}
.zs-pop .zs-body h2 {
  font-family: var(--serif); font-weight: 700; font-style: italic;
  font-variation-settings: "opsz" 96, "SOFT" 50, "WONK" 1;
  text-transform: uppercase; color: var(--gold);
  font-size: clamp(1.5rem, 4vw, 2.2rem); line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 2.4em 0 0.8em; padding-bottom: 12px;
  border-bottom: 1px dashed var(--line);
}
.zs-pop .zs-body h3 {
  font-family: var(--serif); font-weight: 600; font-style: italic;
  text-transform: uppercase; color: var(--rose);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  margin: 1.8em 0 0.6em; letter-spacing: 0.02em;
}
.zs-pop .zs-body a {
  color: var(--magenta); text-decoration: underline;
  text-decoration-color: var(--gold); text-decoration-thickness: 1px;
  text-underline-offset: 3px; transition: all 0.2s;
}
.zs-pop .zs-body a:hover {
  color: var(--rose); text-decoration-color: var(--magenta);
  text-decoration-thickness: 2px;
}
.zs-pop .zs-body strong { color: var(--gold); font-weight: 700; }
.zs-pop .zs-body em { color: var(--cyan); font-style: italic; }
.zs-pop .zs-body blockquote {
  font-family: var(--serif); font-style: italic;
  font-variation-settings: "opsz" 72, "SOFT" 80;
  font-size: clamp(1.4rem, 3.5vw, 2rem); line-height: 1.25;
  color: var(--gold); margin: 2.4em 0;
  padding: 28px 24px 28px 32px;
  border-left: 3px solid var(--magenta);
  background: linear-gradient(135deg, rgba(255,31,139,.06) 0%, rgba(255,212,128,.04) 100%);
  position: relative;
}
.zs-pop .zs-body blockquote::before {
  content:'«'; font-family: var(--serif); font-size: 4em; line-height: 0.5;
  color: var(--magenta); position: absolute; top: 30px; left: 8px; opacity: 0.3;
}
.zs-pop .zs-body img { max-width: 100%; height: auto; display: block; margin: 1.5em 0; border-radius: 2px; }

/* === SIGNATURE === */
.zs-pop .zs-signature {
  margin: 64px 0 48px; padding: 40px 0;
  text-align: center; position: relative;
}
.zs-pop .zs-signature::before, .zs-pop .zs-signature::after {
  content:''; position: absolute; left: 50%; transform: translateX(-50%);
  width: 80%; max-width: 320px; height: 1px;
}
.zs-pop .zs-signature::before { top: 0; background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%); }
.zs-pop .zs-signature::after  { bottom: 0; background: linear-gradient(90deg, transparent 0%, var(--magenta) 50%, transparent 100%); }
.zs-pop .zs-sig-row {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap; margin-bottom: 8px;
}
.zs-pop .zs-seal {
  width: 56px; height: 56px; position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.zs-pop .zs-seal-prism {
  position: absolute; inset: 6px; border-radius: 50%;
  background: conic-gradient(from 0deg,
    var(--ivory) 0deg, var(--gold) 45deg, var(--rose) 90deg,
    var(--magenta) 135deg, var(--cyan) 180deg, var(--rose) 225deg,
    var(--gold) 270deg, var(--magenta) 315deg, var(--ivory) 360deg);
  animation: zs-spin-cw 9s linear infinite;
  filter: drop-shadow(0 0 12px rgba(255,31,139,.4));
}
.zs-pop .zs-seal::before {
  content:''; position: absolute; inset: 0; border-radius: 50%;
  border: 1px dashed rgba(255,212,128,.6);
  animation: zs-spin-ccw 22s linear infinite;
}
.zs-pop .zs-seal-core {
  width: 24px; height: 24px; border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, var(--ivory) 0%, var(--gold) 35%, var(--magenta) 75%, var(--cosmic-1) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-style: italic;
  font-variation-settings: "opsz" 96, "WONK" 1, "SOFT" 100;
  color: var(--cosmic-1); position: relative; z-index: 4;
  font-size: 11px; font-weight: 900; letter-spacing: -0.04em;
}
.zs-pop .zs-sig-line {
  font-family: var(--mono); font-weight: 700; font-size: 11px;
  letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold);
}
.zs-pop .zs-sig-meta {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--ivory); opacity: 0.5; margin-top: 6px;
}

/* === PROPAGER === */
.zs-pop .zs-propager {
  margin: 48px 0; padding: 32px 0;
  border-top: 1px dashed var(--line); border-bottom: 1px dashed var(--line);
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  text-align: center;
}
.zs-pop .zs-propager-mark {
  font-family: var(--serif); font-weight: 900; font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  text-transform: uppercase; font-size: clamp(2.2rem, 7vw, 3.5rem);
  background: linear-gradient(135deg, var(--ivory) 0%, var(--gold) 50%, var(--magenta) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1; letter-spacing: -0.02em;
}
.zs-pop .zs-propager-mark::after {
  content:'↗'; display: inline-block; margin-left: 12px;
  font-style: normal; font-size: 0.7em;
  background: var(--gradient-pop);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: zs-arrow-bounce 2.4s ease-in-out infinite;
}
.zs-pop .zs-propager-channels {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  font-family: var(--mono); font-weight: 700; font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
}
.zs-pop .zs-propager-channels a {
  color: var(--ivory); text-decoration: none; padding: 6px 16px;
  position: relative; transition: all 0.2s;
  border-bottom: 1px dashed transparent;
}
.zs-pop .zs-propager-channels a:hover {
  color: var(--magenta); border-bottom-color: var(--gold);
}
.zs-pop .zs-propager-channels .zs-sep { color: var(--line-strong); margin: 0 -4px; }
.zs-pop .zs-propager-channels .zs-propager-save { color: var(--gold); font-weight: 700; }
.zs-pop .zs-propager-channels .zs-propager-save:hover { color: var(--magenta); border-bottom-color: var(--magenta); }
.zs-pop .zs-propager-note {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ivory); opacity: 0.45;
  max-width: 360px; line-height: 1.6;
}

/* === CARTE AUTEUR === */
.zs-pop .zs-author-card {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 24px; border: 1px dashed var(--gold);
  background: rgba(255,245,230,.02);
  margin-bottom: 48px;
}
.zs-pop .zs-author-card .zs-avatar { width: 64px; height: 64px; font-size: 18px; }
.zs-pop .zs-author-info { flex: 1; }
.zs-pop .zs-author-info .zs-author-name {
  font-family: var(--serif); font-weight: 700; font-style: italic;
  font-size: 1.3rem; color: var(--gold); margin-bottom: 6px; display: block;
}
.zs-pop .zs-author-info .zs-author-bio {
  font-family: var(--reader); font-size: 0.92rem; line-height: 1.55;
  color: var(--ivory); opacity: 0.85;
}

/* === ORACLE COMPACT === */
.zs-pop .zs-oracle-mini {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px;
  border: 1px dashed var(--magenta);
  background: linear-gradient(135deg, rgba(255,31,139,.06) 0%, rgba(255,92,184,.03) 100%);
  margin-bottom: 64px; text-decoration: none; color: inherit;
  transition: all 0.25s; position: relative; overflow: hidden;
}
.zs-pop .zs-oracle-mini:hover {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(255,212,128,.08) 0%, rgba(255,31,139,.06) 100%);
}
.zs-pop .zs-oracle-mini::before {
  content:''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: conic-gradient(from 0deg, transparent 0%, rgba(255,92,184,.08) 50%, transparent 100%);
  animation: zs-spin-cw 12s linear infinite;
}
.zs-pop .zs-oracle-orb {
  width: 48px; height: 48px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--gold) 0%, var(--rose) 40%, var(--magenta) 100%);
  flex-shrink: 0; position: relative; z-index: 1;
  box-shadow: 0 0 16px rgba(255,31,139,.4);
}
.zs-pop .zs-oracle-text { flex: 1; position: relative; z-index: 1; min-width: 0; }
.zs-pop .zs-oracle-title {
  font-family: var(--mono); font-weight: 700; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 3px;
}
.zs-pop .zs-oracle-sub {
  font-family: var(--reader); font-style: italic; font-size: 0.92rem;
  color: var(--ivory); opacity: 0.85;
}
.zs-pop .zs-oracle-cta {
  font-family: var(--mono); font-weight: 700; font-size: 11px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--gold);
  padding: 8px 14px; border-radius: 999px; white-space: nowrap;
  position: relative; z-index: 1; flex-shrink: 0;
}

/* === RECOMMANDÉS · 6 cards éditoriales === */
.zs-pop .zs-recommended-label {
  font-family: var(--mono); font-weight: 700; font-size: 10px;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ivory); opacity: 0.5; margin-bottom: 24px;
  text-align: center; display: flex; align-items: center; gap: 14px;
}
.zs-pop .zs-recommended-label::before, .zs-pop .zs-recommended-label::after {
  content:''; flex: 1; border-top: 1px dashed var(--line);
}
.zs-pop .zs-recommended {
  display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 64px;
}
@media (min-width: 640px)  { .zs-pop .zs-recommended { grid-template-columns: repeat(2, 1fr); gap: 22px; } }
@media (min-width: 1024px) { .zs-pop .zs-recommended { grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1100px; margin-left: -190px; margin-right: -190px; } }
@media (min-width: 1280px) { .zs-pop .zs-recommended { margin-left: -260px; margin-right: -260px; } }
.zs-pop .zs-rec-card {
  display: block; text-decoration: none; color: inherit;
  border: 1px dashed var(--line); padding: 0;
  background: rgba(255,245,230,.015); transition: all 0.3s;
  position: relative; overflow: hidden; isolation: isolate;
}
.zs-pop .zs-rec-card:hover {
  border-color: var(--gold); transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(255,31,139,.12);
}
.zs-pop .zs-rec-vignette {
  height: 180px; position: relative; overflow: hidden;
  background: var(--cosmic-2); border-bottom: 1px dashed var(--line);
}
.zs-pop .zs-rec-card.zs-rec-magenta .zs-rec-vignette {
  background: radial-gradient(circle at 25% 30%, rgba(255,31,139,.35) 0%, transparent 60%),
              radial-gradient(circle at 75% 70%, rgba(255,212,128,.25) 0%, transparent 55%),
              linear-gradient(135deg, var(--cosmic-2) 0%, #2a0a3f 50%, var(--cosmic-1) 100%);
}
.zs-pop .zs-rec-card.zs-rec-cyan .zs-rec-vignette {
  background: radial-gradient(circle at 75% 25%, rgba(184,224,255,.3) 0%, transparent 55%),
              radial-gradient(circle at 25% 75%, rgba(255,31,139,.25) 0%, transparent 55%),
              linear-gradient(135deg, var(--cosmic-2) 0%, #0a1a3f 50%, var(--cosmic-1) 100%);
}
.zs-pop .zs-rec-card .zs-rec-feat-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.85;
}
.zs-pop .zs-rec-num {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--serif); font-style: italic;
  font-variation-settings: "opsz" 144, "WONK" 1;
  font-weight: 900; font-size: 40px; line-height: 0.85;
  background: linear-gradient(135deg, var(--ivory) 0%, var(--gold) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; opacity: 0.95;
}
.zs-pop .zs-rec-rubrique {
  position: absolute; top: 16px; right: 16px;
  font-family: var(--mono); font-weight: 700; font-size: 9px;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--cosmic-1); background: var(--gold);
  padding: 4px 8px; border-radius: 2px;
}
.zs-pop .zs-rec-card.zs-rec-cyan .zs-rec-rubrique { background: var(--cyan); }
.zs-pop .zs-rec-body { padding: 20px 22px 24px; }
.zs-pop .zs-rec-title {
  font-family: var(--serif); font-weight: 900; font-style: italic;
  font-variation-settings: "opsz" 72, "SOFT" 80, "WONK" 1;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--ivory) 0%, var(--gold) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: clamp(1.3rem, 3.5vw, 1.7rem);
  line-height: 1.02; letter-spacing: -0.012em; margin-bottom: 14px;
}
.zs-pop .zs-rec-lede {
  font-family: var(--reader); font-style: italic; font-size: 0.92rem;
  line-height: 1.5; color: var(--ivory); opacity: 0.75; margin-bottom: 14px;
}
.zs-pop .zs-rec-meta {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.12em; color: var(--ivory); opacity: 0.55;
  text-transform: uppercase;
  display: flex; gap: 8px; align-items: center;
  padding-top: 12px; border-top: 1px dashed var(--line);
}
.zs-pop .zs-rec-meta .zs-rec-by { color: var(--gold); font-weight: 700; }
.zs-pop .zs-rec-meta .zs-sep { color: var(--line-strong); }
.zs-pop .zs-rec-meta .zs-arrow { margin-left: auto; color: var(--magenta); font-size: 14px; font-family: var(--serif); font-style: italic; }

/* === FOOTER 6 colonnes === */
.zs-pop .zs-footer {
  border-top: 1px dashed var(--gold);
  padding: 56px 20px 40px;
  background: linear-gradient(180deg, transparent 0%, rgba(5,0,16,.6) 100%);
  position: relative;
}
@media (min-width: 768px) { .zs-pop .zs-footer { padding: 72px 48px 48px; } }
.zs-pop .zs-footer-hero {
  text-align: center; margin-bottom: 56px;
  padding-bottom: 48px; border-bottom: 1px dashed var(--line);
}
.zs-pop .zs-footer-mark {
  font-family: var(--serif); font-weight: 700; font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  font-size: clamp(2.4rem, 7vw, 3.6rem);
  text-transform: lowercase; letter-spacing: -0.02em;
  margin-bottom: 16px; line-height: 0.95;
}
.zs-pop .zs-footer-mark .zs-z {
  background: var(--gradient-rainbow); background-size: 300% 100%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: zs-rainbow-shift 8s linear infinite;
  display: inline-block;
}
.zs-pop .zs-footer-mark .zs-slash { color: var(--magenta); font-weight: 400; -webkit-text-fill-color: var(--magenta); }
.zs-pop .zs-footer-mark .zs-S { color: var(--gold); text-transform: uppercase; font-weight: 900; -webkit-text-fill-color: var(--gold); }
.zs-pop .zs-footer-mark .zs-systems {
  font-family: var(--mono); font-weight: 700; font-style: normal;
  font-size: 0.3em; letter-spacing: 0.4em; vertical-align: middle;
  margin-left: 12px; color: var(--ivory); -webkit-text-fill-color: var(--ivory); opacity: 0.7;
}
.zs-pop .zs-footer-manifeste {
  font-family: var(--reader); font-style: italic;
  font-size: clamp(0.95rem, 2vw, 1.1rem); color: var(--ivory);
  opacity: 0.85; max-width: 540px; margin: 18px auto 22px;
  line-height: 1.5;
}
.zs-pop .zs-triade, .zs-pop .zs-triade-en {
  font-family: var(--mono); font-weight: 700;
  text-transform: uppercase;
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 8px 14px;
}
.zs-pop .zs-triade { font-size: clamp(11px,2vw,13px); letter-spacing: 0.25em; margin-bottom: 8px; }
.zs-pop .zs-triade span { color: var(--magenta); }
.zs-pop .zs-triade .zs-sep { color: var(--line-strong); }
.zs-pop .zs-triade-en { font-weight: 400; font-size: clamp(10px,1.5vw,11px); letter-spacing: 0.25em; color: var(--ivory); opacity: 0.55; gap: 6px 12px; }
.zs-pop .zs-footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 36px 32px;
  max-width: 1280px; margin: 0 auto 48px;
}
@media (min-width: 560px)  { .zs-pop .zs-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px)  { .zs-pop .zs-footer-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .zs-pop .zs-footer-grid { grid-template-columns: repeat(6, 1fr); } }
.zs-pop .zs-fc-title {
  font-family: var(--mono); font-weight: 700; font-size: 10px;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px; padding-bottom: 10px;
  border-bottom: 1px dashed var(--line);
}
.zs-pop .zs-fc ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.zs-pop .zs-fc ul a {
  font-family: var(--reader); font-style: italic; font-size: 0.95rem;
  color: var(--ivory); text-decoration: none; opacity: 0.82;
  transition: all 0.2s; display: inline-flex; align-items: baseline; gap: 6px;
}
.zs-pop .zs-fc ul a:hover { color: var(--magenta); opacity: 1; transform: translateX(3px); }
.zs-pop .zs-fc-tag {
  font-family: var(--mono); font-style: normal; font-size: 8px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ivory); opacity: 0.4;
}
.zs-pop .zs-fc-tag.zs-tag-paid { color: var(--gold); opacity: 0.7; }
.zs-pop .zs-fc-tag.zs-tag-live { color: var(--magenta); opacity: 0.9; }
.zs-pop .zs-footer-bottom {
  display: flex; flex-wrap: wrap; gap: 20px 32px;
  justify-content: space-between; align-items: center;
  padding-top: 28px; border-top: 1px dashed var(--line);
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ivory); opacity: 0.55;
}
.zs-pop .zs-footer-bottom a { color: var(--gold); text-decoration: none; border-bottom: 1px dashed var(--gold); padding-bottom: 1px; }
.zs-pop .zs-footer-genealogy {
  margin-top: 32px; padding-top: 24px;
  border-top: 1px dashed var(--line);
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ivory); opacity: 0.42;
  text-align: center; line-height: 1.8;
}
.zs-pop .zs-footer-genealogy strong { color: var(--gold); font-weight: 700; opacity: 1; }
.zs-pop .zs-footer-genealogy .zs-sep { color: var(--magenta); opacity: 0.6; }

/* === ORB z/S flottant === */
.zs-pop .zs-orb {
  position: fixed; bottom: 22px; right: 22px;
  width: 58px; height: 58px; border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, var(--ivory) 0%, var(--gold) 25%, var(--rose) 55%, var(--magenta) 85%, var(--cosmic-1) 100%);
  box-shadow: 0 4px 24px rgba(255,31,139,.4), 0 0 0 1px rgba(255,212,128,.3);
  text-decoration: none; display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 700; font-style: italic;
  font-variation-settings: "opsz" 96, "WONK" 1;
  font-size: 17px; color: var(--cosmic-1); letter-spacing: -0.02em;
  z-index: 99; cursor: pointer; transition: all 0.3s;
  animation: zs-orb-pulse 4s ease-in-out infinite;
}
.zs-pop .zs-orb:hover { transform: scale(1.08); }
.zs-pop .zs-orb::before {
  content:''; position: absolute; inset: -8px; border-radius: 50%;
  border: 1px dashed var(--magenta); opacity: 0.5;
  animation: zs-spin-cw 20s linear infinite;
}

/* Responsive */
@media (max-width: 480px) {
  .zs-pop .zs-article { padding: 24px 10px 40px; max-width: 100% !important; }
  .zs-pop .zs-lede { padding-left: 10px; }
  .zs-pop .zs-body { font-size: 1.05rem; }
  .zs-pop .zs-body > p:first-of-type::first-letter { font-size: 4.2em; padding-right: 8px; }
  .zs-pop .zs-orb { width: 50px; height: 50px; font-size: 15px; bottom: 16px; right: 16px; }
}
