/* ══════════════════════════════════════════
   STLKPRO - Y2K WEBCORE DIVA STYLESHEET
   ══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=VT323&family=Abril+Fatface&family=Special+Elite&display=swap');

:root {
  --hot-pink: #ff0080;
  --dark-pink: #cc0066;
  --blood-red: #8b0000;
  --neon-pink: #ff69b4;
  --black: #0a0005;
  --deep-purple: #1a001a;
  --white: #ffe8f5;
  --silver: #c0c0c0;
  --glitter: #ff99cc;
  --sidebar-w: 210px;
}

/* ── RESET & BASE ── */
* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scrollbar-color: var(--hot-pink) var(--black);
  scrollbar-width: thin;
}
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--hot-pink), var(--blood-red));
  border-radius: 4px;
}

body {
  background-color: var(--black);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E"),
    radial-gradient(1px 1px at 5%  8%,  rgba(255,0,128,0.9) 0%, transparent 100%),
    radial-gradient(1px 1px at 13% 22%, rgba(255,105,180,0.7) 0%, transparent 100%),
    radial-gradient(2px 2px at 20% 15%, rgba(255,0,128,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 33% 5%,  rgba(192,192,192,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 47% 38%, rgba(255,0,128,0.5) 0%, transparent 100%),
    radial-gradient(2px 2px at 58% 12%, rgba(255,105,180,0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 72% 28%, rgba(255,0,128,0.8) 0%, transparent 100%),
    radial-gradient(1px 1px at 88% 65%, rgba(255,0,128,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 25% 75%, rgba(192,192,192,0.4) 0%, transparent 100%),
    radial-gradient(2px 2px at 95% 45%, rgba(255,0,128,0.5) 0%, transparent 100%),
    repeating-linear-gradient(0deg, transparent, transparent 38px, rgba(255,0,128,0.06) 38px, rgba(255,0,128,0.06) 39px),
    repeating-linear-gradient(90deg, transparent, transparent 38px, rgba(255,0,128,0.06) 38px, rgba(255,0,128,0.06) 39px),
    radial-gradient(ellipse at top, #2a0020 0%, var(--black) 55%);
  color: var(--white);
  font-family: 'Special Elite', cursive;
  font-size: 14px;
  line-height: 1.6;
  min-height: 100vh;
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath d='M16 28 C16 28 3 18 3 10 C3 6 6 3 10 3 C12.5 3 14.8 4.3 16 6.3 C17.2 4.3 19.5 3 22 3 C26 3 29 6 29 10 C29 18 16 28 16 28Z' fill='%23ff0080' stroke='%23000' stroke-width='1.5'/%3E%3C/svg%3E") 16 28, pointer;
}

/* Grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23g)' opacity='0.12'/%3E%3C/svg%3E");
  opacity: 0.35;
  mix-blend-mode: overlay;
}

/* ══════════════════════════════════════════
   LAYOUT : SIDEBAR + MAIN
   ══════════════════════════════════════════ */

.site-wrapper {
  display: flex;
  min-height: 100vh;
}

/* ── SIDEBAR ── */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-w);
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 100;
  background:
    linear-gradient(180deg, rgba(30,0,20,0.97) 0%, rgba(10,0,5,0.99) 100%);
  border-right: 2px solid var(--hot-pink);
  box-shadow: 4px 0 30px rgba(255,0,128,0.15);
  padding: 20px 0 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  scrollbar-width: none;
}
.sidebar::-webkit-scrollbar { display: none; }

/* Logo sidebar */
.sidebar-logo {
  font-family: 'Abril Fatface', serif;
  font-size: 28px;
  color: transparent;
  background: linear-gradient(135deg, #ff0080, #ff99cc, #cc0066);
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: 4px;
  text-align: center;
  padding: 10px 14px 18px;
  border-bottom: 1px solid rgba(255,0,128,0.3);
  text-decoration: none;
  filter: drop-shadow(0 0 10px rgba(255,0,128,0.5));
  display: block;
}

/* Sections du menu */
.sidebar-section {
  padding: 16px 14px 8px;
}

.sidebar-section-title {
  font-family: 'VT323', monospace;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--hot-pink);
  opacity: 0.7;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.sidebar-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,0,128,0.4), transparent);
}

/* Liens du menu */
.sidebar-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'VT323', monospace;
  font-size: 15px;
  letter-spacing: 2px;
  color: rgba(255,232,245,0.7);
  text-decoration: none;
  border: none;
  padding: 5px 8px;
  border-left: 2px solid transparent;
  transition: all 0.2s;
  line-height: 1.3;
}
.sidebar-link:hover,
.sidebar-link.active {
  color: var(--white);
  border-left-color: var(--hot-pink);
  background: rgba(255,0,128,0.07);
  text-shadow: 0 0 8px rgba(255,0,128,0.5);
}
.sidebar-link .link-icon {
  font-size: 11px;
  opacity: 0.6;
  flex-shrink: 0;
}

/* Séparateur sidebar */
.sidebar-sep {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,0,128,0.2), transparent);
  margin: 10px 14px;
}

/* Deco bas sidebar */
.sidebar-deco {
  margin-top: auto;
  padding: 14px;
  font-family: 'VT323', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  color: rgba(255,0,128,0.3);
  text-align: center;
  animation: sparkle 3s infinite;
}

/* ── MAIN CONTENT ── */
.main-content {
  margin-left: var(--sidebar-w);
  flex: 1;
  min-width: 0;
}

/* ══════════════════════════════════════════
   MARQUEE
   ══════════════════════════════════════════ */
marquee {
  background: linear-gradient(90deg, var(--hot-pink), var(--blood-red), var(--hot-pink));
  color: var(--white);
  font-family: 'VT323', monospace;
  font-size: 16px;
  letter-spacing: 4px;
  padding: 4px 0;
  text-shadow: 0 0 10px rgba(255,0,128,0.8);
}

/* ══════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════ */
header {
  position: relative;
  text-align: center;
  padding: 50px 20px 40px;
  border-bottom: 3px solid var(--hot-pink);
  overflow: visible;
  background:
    linear-gradient(180deg, rgba(139,0,0,0.3) 0%, transparent 100%),
    repeating-linear-gradient(-45deg, transparent, transparent 6px, rgba(255,0,128,0.025) 6px, rgba(255,0,128,0.025) 7px);
  box-shadow: 0 4px 30px rgba(255,0,128,0.2);
}
header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(93deg, transparent 30%, rgba(255,0,128,0.06) 30.5%, transparent 31%),
    linear-gradient(97deg, transparent 55%, rgba(255,0,128,0.04) 55.5%, transparent 56%);
  pointer-events: none;
}
header::after {
  content: '♥ ✦ ♥ ✦ ♥ ✦ ♥ ✦ ♥ ✦ ♥ ✦ ♥ ✦ ♥ ✦ ♥ ✦ ♥ ✦ ♥';
  display: block;
  font-size: 9px;
  color: var(--hot-pink);
  letter-spacing: 5px;
  opacity: 0.5;
  animation: sparkle 2.5s infinite;
  margin-top: 6px;
}

header h1 {
  font-family: 'Abril Fatface', serif;
  font-size: clamp(52px, 9vw, 100px);
  color: transparent;
  background: linear-gradient(135deg, #ff0080, #ff99cc, #cc0066, #ff0080);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 25px rgba(255,0,128,0.7)) drop-shadow(4px 4px 0 rgba(139,0,0,1));
  letter-spacing: 10px;
  animation: gradient-shift 4s ease infinite, header-wobble 8s ease-in-out infinite;
  margin-bottom: 12px;
  display: inline-block;
}

header h2 {
  font-family: 'VT323', monospace;
  font-size: clamp(13px, 2.5vw, 20px);
  color: var(--silver);
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.85;
  text-shadow: 0 0 10px rgba(192,192,192,0.5);
  line-height: 1.8;
}

/* ══════════════════════════════════════════
   ANIMATIONS GLOBALES
   ══════════════════════════════════════════ */
@keyframes sparkle   { 0%,100%{opacity:.6} 50%{opacity:1} }
@keyframes blink     { 50%{opacity:0} }
@keyframes gradient-shift { 0%{background-position:0% 50%} 50%{background-position:100% 50%} 100%{background-position:0% 50%} }
@keyframes header-wobble  { 0%,100%{transform:rotate(-.4deg) skewX(-.3deg)} 30%{transform:rotate(.3deg) skewX(.4deg)} 60%{transform:rotate(-.2deg) skewX(-.5deg)} 80%{transform:rotate(.5deg) skewX(.2deg)} }
@keyframes sticker-drift  { 0%,100%{transform:rotate(var(--r,0deg)) translateY(0)} 50%{transform:rotate(var(--r,0deg)) translateY(-6px)} }
@keyframes glitch {
  0%,90%,100%{ text-shadow:0 0 20px rgba(255,0,128,.8),0 0 40px rgba(255,0,128,.4),3px 3px 0 rgba(139,0,0,.9); transform:none; }
  92%{ text-shadow:-3px 0 rgba(0,255,255,.5),3px 0 rgba(255,0,128,1),0 0 20px rgba(255,0,128,.8); transform:translateX(-2px); }
  94%{ text-shadow:3px 0 rgba(0,255,255,.5),-3px 0 rgba(255,0,128,1),0 0 20px rgba(255,0,128,.8); transform:translateX(2px); }
}

/* ══════════════════════════════════════════
   H3 TAGLINE
   ══════════════════════════════════════════ */
h3 {
  font-family: 'VT323', monospace;
  font-size: 20px;
  text-align: center;
  color: var(--neon-pink);
  padding: 12px 20px;
  letter-spacing: 2px;
  background: rgba(255,0,128,0.05);
  border-top: 1px dashed rgba(255,0,128,0.3);
  border-bottom: 1px dashed rgba(255,0,128,0.3);
  border-left: 3px solid var(--hot-pink);
  border-right: 3px solid var(--hot-pink);
  transform: rotate(-0.5deg);
}
h3::before { content: '☆ '; }
h3::after  { content: ' ☆'; }

/* ══════════════════════════════════════════
   BLOC GOSSIP (bannière titre)
   ══════════════════════════════════════════ */
.GOSSIP {
  position: relative;
  margin: 35px auto;
  max-width: 860px;
  padding: 22px 40px;
  background:
    repeating-linear-gradient(-60deg, transparent, transparent 8px, rgba(255,0,128,0.03) 8px, rgba(255,0,128,0.03) 9px),
    linear-gradient(135deg, rgba(255,0,128,0.16) 0%, rgba(139,0,0,0.2) 50%, rgba(255,0,128,0.1) 100%);
  border: 2px solid var(--hot-pink);
  border-image: linear-gradient(90deg, transparent, var(--hot-pink), var(--blood-red), var(--hot-pink), transparent) 1;
  text-align: center;
  overflow: hidden;
  transform: rotate(-0.3deg);
  box-shadow: 0 0 40px rgba(255,0,128,0.15), inset 0 0 60px rgba(139,0,0,0.1);
}
.GOSSIP::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px dashed rgba(255,0,128,0.3);
  pointer-events: none;
}
.GOSSIP::after {
  content: '⚠ TEA ⚠';
  position: absolute;
  top: 10px; right: 14px;
  color: var(--hot-pink);
  font-family: 'VT323', monospace;
  font-size: 13px;
  letter-spacing: 3px;
  opacity: 0.7;
  animation: sparkle 1.5s infinite;
  transform: rotate(3deg);
}
.GOSSIP h1 {
  font-family: 'Abril Fatface', serif;
  font-size: clamp(26px, 5vw, 48px);
  color: var(--hot-pink);
  letter-spacing: 6px;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(255,0,128,.8), 0 0 40px rgba(255,0,128,.4), 3px 3px 0 rgba(139,0,0,.9);
  animation: glitch 6s infinite;
}

/* ══════════════════════════════════════════
   GRID PERSONNES (accueil — 4 max)
   ══════════════════════════════════════════ */
.personnes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 860px;
  margin: 30px auto;
  padding: 0 20px;
}

.personne-card {
  position: relative;
  background: linear-gradient(145deg, rgba(26,0,26,0.9), rgba(10,0,5,0.95));
  border: 1px solid rgba(255,0,128,0.4);
  padding: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
}
.personne-card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,0,128,0.1), transparent);
  transition: left 0.5s ease;
}
.personne-card:hover::before { left: 100%; }
.personne-card:hover {
  border-color: var(--hot-pink);
  box-shadow: 0 0 15px rgba(255,0,128,0.3), inset 0 0 15px rgba(255,0,128,0.05);
  transform: translateY(-3px);
}
.personne-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: sepia(20%) saturate(120%) hue-rotate(300deg);
  transition: filter 0.3s ease;
  display: block;
  border: 1px solid rgba(255,0,128,0.3);
}
.personne-card:hover img { filter: sepia(40%) saturate(150%) hue-rotate(300deg) contrast(110%); }
.personne-card .nom {
  font-family: 'VT323', monospace;
  font-size: 18px;
  color: var(--hot-pink);
  letter-spacing: 2px;
  margin-top: 8px;
  text-transform: uppercase;
}
.personne-card .tea {
  font-size: 11px;
  color: var(--silver);
  opacity: 0.8;
  margin-top: 3px;
  font-style: italic;
}

/* ══════════════════════════════════════════
   ARTICLES GOSSIP — CARDS (accueil, 4 max)
   ══════════════════════════════════════════ */
.gossip-feed {
  max-width: 860px;
  margin: 0 auto 40px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Sur l'accueil les articles sont cliquables comme liens */
a.gossip-article {
  display: block;
  text-decoration: none;
  color: inherit;
}

.gossip-article {
  position: relative;
  background:
    repeating-linear-gradient(-55deg, transparent, transparent 10px, rgba(255,0,128,0.02) 10px, rgba(255,0,128,0.02) 11px),
    linear-gradient(160deg, rgba(26,0,20,0.95), rgba(10,0,5,0.98));
  border: 1px solid rgba(255,0,128,0.35);
  border-left: 4px solid var(--hot-pink);
  padding: 20px 24px 16px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.gossip-article:nth-child(even) { transform: rotate(0.2deg); border-left-color: var(--blood-red); }
.gossip-article:nth-child(odd)  { transform: rotate(-0.15deg); }
.gossip-article:hover {
  border-color: var(--hot-pink);
  box-shadow: 0 0 20px rgba(255,0,128,0.2), inset 0 0 20px rgba(255,0,128,0.04);
}

.article-kicker {
  font-family: 'VT323', monospace;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--hot-pink);
  opacity: 0.8;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.article-kicker::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,0,128,0.5), transparent);
}

.article-titre {
  font-family: 'Abril Fatface', serif;
  font-size: clamp(18px, 3.5vw, 26px);
  color: var(--white);
  line-height: 1.15;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-shadow: 2px 2px 0 rgba(139,0,0,0.7);
}
.article-titre .accroche { color: var(--hot-pink); }

.article-meta {
  font-family: 'VT323', monospace;
  font-size: 12px;
  color: var(--silver);
  opacity: 0.6;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: flex;
  gap: 14px;
}
.article-meta::before { content: '📰'; font-size: 11px; }

.article-corps {
  font-family: 'Special Elite', cursive;
  font-size: 13px;
  color: rgba(255,232,245,0.85);
  line-height: 1.75;
  border-top: 1px dashed rgba(255,0,128,0.2);
  padding-top: 12px;
}
.article-corps p + p { margin-top: 10px; text-indent: 1.5em; }

/* Résumé court sur l'accueil */
.article-resume {
  font-family: 'Special Elite', cursive;
  font-size: 12.5px;
  color: rgba(255,232,245,0.7);
  line-height: 1.65;
  border-top: 1px dashed rgba(255,0,128,0.2);
  padding-top: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: calc(1.65em * 3); /* fallback au cas où */
}

.tag-personne {
  color: var(--hot-pink);
  font-style: italic;
  cursor: pointer;
  border-bottom: 1px dashed var(--hot-pink);
  transition: color 0.2s;
}
.tag-personne:hover { color: var(--white); }

.badge-exclu {
  display: inline-block;
  background: var(--hot-pink);
  color: var(--black);
  font-family: 'VT323', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  padding: 2px 8px;
  margin-left: 8px;
  transform: rotate(-2deg);
  vertical-align: middle;
  animation: sparkle 2s infinite;
}

/* Lire la suite */
.lire-suite {
  display: inline-block;
  margin-top: 10px;
  font-family: 'VT323', monospace;
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--hot-pink);
  border: none;
  border-bottom: 1px dashed var(--hot-pink);
  text-decoration: none;
}
.lire-suite::after { content: ' →'; }
.lire-suite:hover { color: var(--white); border-bottom-color: var(--white); }

/* ══════════════════════════════════════════
   PAGE ARTICLE COMPLÈTE
   ══════════════════════════════════════════ */
.article-page {
  max-width: 820px;
  margin: 30px auto;
  padding: 0 24px 60px;
}

.article-page .article-full-titre {
  font-family: 'Abril Fatface', serif;
  font-size: clamp(28px, 5vw, 48px);
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 2px;
  margin: 18px 0 14px;
  text-shadow: 3px 3px 0 rgba(139,0,0,0.8), 0 0 30px rgba(255,0,128,0.2);
}
.article-page .article-full-titre .accroche { color: var(--hot-pink); }

.article-page .article-meta {
  font-size: 13px;
  margin-bottom: 20px;
  opacity: 0.7;
}

.article-page .article-body {
  font-family: 'Special Elite', cursive;
  font-size: 14.5px;
  line-height: 1.85;
  color: rgba(255,232,245,0.9);
  border-top: 2px solid rgba(255,0,128,0.3);
  padding-top: 20px;
}
.article-page .article-body p + p {
  margin-top: 16px;
  text-indent: 2em;
}
.article-page .article-body p:first-child::first-letter {
  font-family: 'Abril Fatface', serif;
  font-size: 3.5em;
  color: var(--hot-pink);
  float: left;
  line-height: 0.75;
  margin: 6px 8px 0 0;
  text-shadow: 3px 3px 0 rgba(139,0,0,0.8);
}

/* Personnes citées dans l'article */
.article-personnes-citees {
  margin-top: 30px;
  padding: 16px 20px;
  border: 1px solid rgba(255,0,128,0.25);
  border-left: 4px solid var(--blood-red);
  background: rgba(255,0,128,0.04);
}
.article-personnes-citees .label {
  font-family: 'VT323', monospace;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--hot-pink);
  opacity: 0.7;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.article-personnes-citees .tags { display: flex; flex-wrap: wrap; gap: 8px; }
.article-personnes-citees .tags a {
  font-family: 'VT323', monospace;
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--neon-pink);
  background: rgba(255,0,128,0.1);
  border: 1px solid rgba(255,0,128,0.3);
  padding: 3px 12px;
  text-decoration: none;
  transition: all 0.2s;
}
.article-personnes-citees .tags a:hover {
  background: rgba(255,0,128,0.2);
  color: var(--white);
}

/* ══════════════════════════════════════════
   PAGE PERSONNE
   ══════════════════════════════════════════ */
.personne-page {
  max-width: 820px;
  margin: 30px auto;
  padding: 0 24px 60px;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'VT323', monospace;
  font-size: 15px;
  letter-spacing: 3px;
  color: var(--silver);
  text-decoration: none;
  border: none;
  border-bottom: 1px dashed rgba(192,192,192,0.4);
  margin-bottom: 26px;
  transition: color 0.2s;
  background: none;
  cursor: pointer;
}
.back-btn:hover { color: var(--hot-pink); border-bottom-color: var(--hot-pink); }
.back-btn::before { content: '← '; }

.personne-fiche {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  margin-bottom: 34px;
  background: linear-gradient(135deg, rgba(26,0,20,0.95), rgba(10,0,5,0.98));
  border: 1px solid rgba(255,0,128,0.4);
  border-top: 4px solid var(--hot-pink);
  padding: 24px;
  position: relative;
  transform: rotate(-0.2deg);
}
.personne-fiche::before {
  content: 'DOSSIER #' attr(data-id);
  position: absolute;
  top: 10px; right: 16px;
  font-family: 'VT323', monospace;
  font-size: 12px;
  color: rgba(255,0,128,0.5);
  letter-spacing: 3px;
}
.personne-fiche img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: sepia(20%) saturate(120%) hue-rotate(300deg);
  border: 2px solid rgba(255,0,128,0.4);
  display: block;
}
.personne-fiche-infos { display: flex; flex-direction: column; gap: 12px; }
.personne-fiche-infos h1 {
  font-family: 'Abril Fatface', serif;
  font-size: clamp(28px, 4.5vw, 44px);
  color: var(--hot-pink);
  letter-spacing: 4px;
  text-shadow: 3px 3px 0 rgba(139,0,0,0.8), 0 0 20px rgba(255,0,128,0.4);
  line-height: 1.1;
}
.personne-fiche-infos .surnom {
  font-family: 'VT323', monospace;
  font-size: 17px;
  color: var(--silver);
  letter-spacing: 3px;
  opacity: 0.7;
}
.personne-fiche-infos .bio {
  font-family: 'Special Elite', cursive;
  font-size: 13px;
  color: rgba(255,232,245,0.8);
  line-height: 1.7;
  border-top: 1px dashed rgba(255,0,128,0.25);
  padding-top: 12px;
  margin-top: 4px;
}
.personne-stats { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; }
.personne-stats .stat {
  font-family: 'VT323', monospace;
  font-size: 13px;
  letter-spacing: 2px;
  background: rgba(255,0,128,0.1);
  border: 1px solid rgba(255,0,128,0.3);
  padding: 3px 10px;
  color: var(--neon-pink);
}
.personne-stats .stat span { color: var(--white); font-size: 15px; }

.personne-gossip-titre {
  font-family: 'Abril Fatface', serif;
  font-size: 20px;
  color: var(--hot-pink);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 18px;
  text-shadow: 2px 2px 0 rgba(139,0,0,0.7);
  display: flex;
  align-items: center;
  gap: 14px;
}
.personne-gossip-titre::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,0,128,0.6), transparent);
}

/* ══════════════════════════════════════════
   DÉCORATIONS
   ══════════════════════════════════════════ */
.hearts-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.hearts-bg span {
  position: absolute;
  font-size: 12px;
  color: rgba(255,0,128,0.15);
  animation: float-up linear infinite;
}
@keyframes float-up {
  from { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.5; }
  to   { transform: translateY(-10vh) rotate(360deg); opacity: 0; }
}

.sticker {
  position: absolute;
  left: var(--x, 5%);
  top: var(--y, 300px);
  transform: rotate(var(--r, 0deg));
  font-size: 1.4em;
  color: var(--hot-pink);
  text-shadow: 0 0 8px rgba(255,0,128,0.6);
  pointer-events: none;
  z-index: 1;
  opacity: 0.7;
  animation: sticker-drift 6s ease-in-out infinite;
}

hr.diva-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blood-red) 20%, var(--hot-pink) 50%, var(--blood-red) 80%, transparent);
  margin: 18px auto;
  max-width: 800px;
  position: relative;
}
hr.diva-divider::before {
  content: '♥';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--hot-pink);
  background: var(--black);
  padding: 0 10px;
  font-size: 12px;
  animation: sparkle 2s infinite;
}

/* Image flottante dans un article */
.article-img-float {
  float: right;
  width: 260px;
  margin: 0 0 18px 26px;
  border: 2px solid rgba(255,0,128,0.4);
  background: rgba(10,0,5,0.9);
  padding: 6px 6px 0;
  transform: rotate(1.2deg);
  box-shadow:
    0 0 20px rgba(255,0,128,0.15),
    4px 4px 0 rgba(139,0,0,0.6);
  position: relative;
}

.article-img-float::before {
  content: '⚠ PREUVE ⚠';
  position: absolute;
  top: -11px;
  left: 10px;
  font-family: 'VT323', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--black);
  background: var(--hot-pink);
  padding: 1px 8px;
  transform: rotate(-1deg);
}

.article-img-float img {
  width: 100%;
  display: block;
  filter: sepia(15%) saturate(110%) hue-rotate(300deg) contrast(105%);
}

.article-img-float figcaption {
  font-family: 'VT323', monospace;
  font-size: 12px;
  letter-spacing: 1px;
  color: rgba(255,232,245,0.55);
  text-align: center;
  padding: 6px 4px 8px;
  line-height: 1.3;
}

/* Nettoyage du float après le bloc article-body */
.article-body::after {
  content: '';
  display: table;
  clear: both;
}

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
footer {
  text-align: center;
  padding: 20px;
  font-family: 'VT323', monospace;
  font-size: 14px;
  color: rgba(255,0,128,0.4);
  letter-spacing: 3px;
  border-top: 1px solid rgba(255,0,128,0.2);
  margin-top: 40px;
}
footer::before { content: '✦ '; color: var(--hot-pink); }
footer::after  { content: ' ✦'; color: var(--hot-pink); }

/* ══════════════════════════════════════════
   UTILITAIRES
   ══════════════════════════════════════════ */
::selection { background: var(--hot-pink); color: var(--black); }

a {
  color: var(--neon-pink);
  text-decoration: none;
  border-bottom: 1px dashed rgba(255,105,180,0.5);
  transition: all 0.2s;
}
a:hover {
  color: var(--white);
  border-bottom-color: var(--white);
  text-shadow: 0 0 8px rgba(255,0,128,0.8);
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 800px) {
  :root { --sidebar-w: 0px; }
  .sidebar { display: none; }
  .main-content { margin-left: 0; }
  .personnes { grid-template-columns: repeat(2, 1fr); }
  .personne-fiche { grid-template-columns: 1fr; }
  .personne-fiche img { max-width: 180px; }
  .article-page, .personne-page { padding: 0 14px 40px; }
}
