/* ============================================================
   STYLE.CSS — réécriture complète
   Thème : cyberpunk néon (cyan / rose / rouge sur fond sombre)
   ============================================================ */

/* ===== RESET & VARIABLES ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Couleurs de base (canaux RGB pour composer les alphas) */
  --cyan-rgb: 0, 245, 255;
  --pink-rgb: 255, 45, 120;
  --purple-rgb: 180, 79, 255;
  --red-rgb: 255, 58, 58;
  --orange-rgb: 255, 140, 0;

  --cyan: rgb(var(--cyan-rgb));
  --pink: rgb(var(--pink-rgb));
  --purple: rgb(var(--purple-rgb));
  --red: rgb(var(--red-rgb));
  --orange: rgb(var(--orange-rgb));

  /* Fonds */
  --dark: #05050f;
  --dark2: #080818;
  --dark3: #0b0b22;
  --card-bg: rgba(10, 10, 30, 0.85);
  --border-cyan: rgba(var(--cyan-rgb), 0.25);

  /* Texte */
  --text: #d0d8ff;
  --text-soft: rgba(200, 210, 255, 0.75);
  --text-dim: rgba(200, 210, 255, 0.55);

  /* Typographies */
  --font-main: 'Rajdhani', sans-serif;
  --font-mono: 'Share Tech Mono', monospace;
  --font-title: 'Orbitron', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--dark);
  color: var(--text);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

/* ===== ICÔNES SVG ===== */
/* Icône inline : suit la taille et la couleur du texte parent */
svg.icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: -0.15em;
  fill: none;
}

/* Marqueur de liste SVG (listes comparatives) */
svg.marker {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

/* ===== OVERLAYS PLEIN ÉCRAN (scanlines + particules) ===== */
.scanlines {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0 2px,
    rgba(0, 0, 0, 0.07) 2px 4px
  );
}

#particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 2.5rem;
  background: rgba(5, 5, 20, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-cyan);
}

.nav-logo {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 4px;
  color: var(--cyan);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--cyan);
}

/* ===== EFFET GLITCH ===== */
.glitch {
  position: relative;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
}

.glitch::before {
  text-shadow: -2px 0 var(--pink);
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
  animation: glitch-a 2.5s infinite;
}

.glitch::after {
  text-shadow: 2px 0 var(--cyan);
  clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
  animation: glitch-b 2.5s infinite;
}

@keyframes glitch-a {
  0%, 100% { transform: translate(0); opacity: 0.7; }
  20%      { transform: translate(-3px, 1px); }
  40%      { transform: translate(3px, -1px); opacity: 0.3; }
  60%      { transform: translate(-1px, 2px); }
  80%      { transform: translate(1px, -2px); opacity: 0.8; }
}

@keyframes glitch-b {
  0%, 100% { transform: translate(0); opacity: 0.6; }
  20%      { transform: translate(3px, -1px); opacity: 0.2; }
  40%      { transform: translate(-2px, 1px); }
  60%      { transform: translate(2px, -2px); opacity: 0.9; }
  80%      { transform: translate(-1px, 1px); }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem 4rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(var(--pink-rgb), 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(var(--cyan-rgb), 0.08) 0%, transparent 60%),
    var(--dark);
}

.hero-glitch-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    90deg,
    transparent 0 98%,
    rgba(var(--cyan-rgb), 0.03) 98% 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.warning-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 1.2rem;
  margin-bottom: 2rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--red);
  background: rgba(var(--red-rgb), 0.15);
  border: 1px solid rgba(var(--red-rgb), 0.4);
  border-radius: 2px;
  animation: pulse-red 2s ease-in-out infinite;
}

@keyframes pulse-red {
  0%, 100% { box-shadow: 0 0 8px rgba(var(--red-rgb), 0.3); }
  50%      { box-shadow: 0 0 20px rgba(var(--red-rgb), 0.6); }
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 900;
  letter-spacing: 8px;
  line-height: 1;
  color: #fff;
  text-shadow:
    0 0 40px rgba(var(--pink-rgb), 0.6),
    0 0 80px rgba(var(--pink-rgb), 0.2);
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  letter-spacing: 3px;
  color: var(--red);
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 1.15rem;
  color: rgba(200, 210, 255, 0.8);
  margin-bottom: 2.5rem;
}

.hero-desc strong {
  color: var(--cyan);
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ===== BOUTONS ===== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  overflow: hidden;
  font-family: var(--font-title);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-decoration: none;
  border: 1px solid;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}

.btn-red {
  color: var(--red);
  border-color: var(--red);
  background: rgba(var(--red-rgb), 0.08);
}

.btn-red:hover {
  background: rgba(var(--red-rgb), 0.2);
  box-shadow: 0 0 20px rgba(var(--red-rgb), 0.4);
  transform: translateY(-2px);
}

.btn-cyan {
  color: var(--cyan);
  border-color: var(--cyan);
  background: rgba(var(--cyan-rgb), 0.06);
}

.btn-cyan:hover {
  background: rgba(var(--cyan-rgb), 0.15);
  box-shadow: 0 0 20px rgba(var(--cyan-rgb), 0.4);
  transform: translateY(-2px);
}

.btn-glow {
  padding: 1rem 2.5rem;
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--cyan);
  border-color: var(--cyan);
}

.btn-glow:hover {
  background: #fff;
  box-shadow:
    0 0 30px rgba(var(--cyan-rgb), 0.8),
    0 0 60px rgba(var(--cyan-rgb), 0.4);
  transform: translateY(-3px);
}

/* ===== STRUCTURE DES SECTIONS ===== */
.container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  position: relative;
  padding: 6rem 0;
}

.section-dark   { background: var(--dark2); }
.section-darker { background: var(--dark3); }

.section-cyber {
  background:
    radial-gradient(ellipse 70% 50% at 50% 50%, rgba(var(--cyan-rgb), 0.06) 0%, transparent 70%),
    var(--dark);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: block;
  margin-bottom: 1rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 3px;
}

.section-tag.red    { color: var(--red); }
.section-tag.cyan   { color: var(--cyan); }
.section-tag.purple { color: var(--purple); }

.section-title {
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 900;
  letter-spacing: 3px;
  color: #fff;
  margin-bottom: 1rem;
}

.section-title.neon-cyan {
  color: var(--cyan);
  text-shadow:
    0 0 20px var(--cyan),
    0 0 40px rgba(var(--cyan-rgb), 0.4);
}

.section-desc {
  max-width: 600px;
  margin: 0 auto;
  color: rgba(200, 210, 255, 0.7);
}

/* ===== GRILLE DES ACCUSATIONS ===== */
.accusations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.acc-card {
  position: relative;
  overflow: hidden;
  padding: 2rem 1.5rem;
  background: var(--card-bg);
  border: 1px solid;
  border-radius: 4px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.acc-card:hover {
  transform: translateY(-4px);
}

/* Liseré lumineux en haut de chaque carte */
.acc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
}

.acc-card.red           { border-color: rgba(var(--red-rgb), 0.3); }
.acc-card.red::before   { background: var(--red); box-shadow: 0 0 10px var(--red); }
.acc-card.red:hover     { box-shadow: 0 0 30px rgba(var(--red-rgb), 0.2); }

.acc-card.orange         { border-color: rgba(var(--orange-rgb), 0.3); }
.acc-card.orange::before { background: var(--orange); box-shadow: 0 0 10px var(--orange); }
.acc-card.orange:hover   { box-shadow: 0 0 30px rgba(var(--orange-rgb), 0.2); }

.acc-card.purple         { border-color: rgba(var(--purple-rgb), 0.3); }
.acc-card.purple::before { background: var(--purple); box-shadow: 0 0 10px var(--purple); }
.acc-card.purple:hover   { box-shadow: 0 0 30px rgba(var(--purple-rgb), 0.2); }

.acc-icon {
  width: 1.6rem;
  height: 1.6rem;
  margin-bottom: 0.9rem;
}

.acc-icon svg {
  width: 100%;
  height: 100%;
}

/* L'icône reprend la couleur d'accent de la carte */
.acc-card.red    .acc-icon { color: var(--red); }
.acc-card.orange .acc-icon { color: var(--orange); }
.acc-card.purple .acc-icon { color: var(--purple); }

.acc-card h3 {
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 0.75rem;
}

.acc-card p {
  font-size: 0.95rem;
  color: var(--text-soft);
}

/* ===== GALERIE ===== */
.gallery-header {
  text-align: center;
  margin-bottom: 2rem;
}

.gallery-warning {
  margin-top: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: rgba(200, 210, 255, 0.5);
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.screenshot-card {
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--border-cyan);
  border-radius: 4px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.screenshot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(var(--cyan-rgb), 0.1);
}

.screenshot-card.wide {
  grid-column: span 2;
}

.ss-label {
  padding: 0.4rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: bold;
  letter-spacing: 2px;
}

.ss-label.red    { background: rgba(var(--red-rgb), 0.2);    color: var(--red); }
.ss-label.orange { background: rgba(var(--orange-rgb), 0.2); color: var(--orange); }
.ss-label.purple { background: rgba(var(--purple-rgb), 0.2); color: var(--purple); }
.ss-label.cyan   { background: rgba(var(--cyan-rgb), 0.1);   color: var(--cyan); }

.screenshot-card img {
  display: block;
  width: 100%;
  max-height: 340px;
  object-fit: contain;
  background: #000;
  cursor: zoom-in;
  transition: filter 0.2s;
}

.screenshot-card img:hover {
  filter: brightness(1.1);
}

.ss-caption {
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  font-style: italic;
  color: rgba(180, 195, 255, 0.7);
}

/* ===== PREUVES VOCALES ===== */
.voice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 760px;
  margin: 0 auto;
}

.voice-card {
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid rgba(var(--purple-rgb), 0.3);
  border-radius: 6px;
  box-shadow: inset 0 0 30px rgba(var(--purple-rgb), 0.04);
}

.voice-head {
  display: flex;
}

.voice-player {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.25rem 0.75rem;
}

.voice-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  color: var(--purple);
  background: rgba(var(--purple-rgb), 0.12);
  border: 1px solid rgba(var(--purple-rgb), 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
}

.voice-btn:hover {
  background: rgba(var(--purple-rgb), 0.25);
  box-shadow: 0 0 18px rgba(var(--purple-rgb), 0.45);
}

.voice-btn svg {
  width: 1.4rem;
  height: 1.4rem;
}

/* Bascule play / pause */
.voice-icon-pause { display: none; }
.voice-card.playing .voice-icon-play { display: none; }
.voice-card.playing .voice-icon-pause { display: inline-block; }

.voice-wave {
  position: relative;
  flex: 1;
  height: 8px;
  background: rgba(var(--purple-rgb), 0.12);
  border-radius: 999px;
  cursor: pointer;
  overflow: hidden;
}

.voice-progress {
  position: absolute;
  inset: 0;
  width: 0%;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  box-shadow: 0 0 12px rgba(var(--purple-rgb), 0.6);
}

.voice-time {
  flex-shrink: 0;
  min-width: 3.2ch;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: rgba(210, 200, 255, 0.8);
  text-align: right;
}

.voice-fallback {
  padding: 0 1.25rem 0.5rem;
  font-size: 0.85rem;
  color: var(--red);
}

.voice-fallback a {
  color: var(--cyan);
}

.voice-card .ss-caption {
  padding-top: 0;
}

/* ===== SECTION ITSUKI ===== */
.itsuki-content {
  max-width: 760px;
  margin: 0 auto;
}

.itsuki-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(200, 210, 255, 0.8);
  margin-bottom: 1.5rem;
}

.itsuki-text p strong {
  color: #fff;
}

.accusation-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.accusation-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  color: rgba(200, 210, 255, 0.8);
}

.dot {
  flex-shrink: 0;
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-top: 7px;
  border-radius: 50%;
}

.dot.red {
  background: var(--red);
  box-shadow: 0 0 6px var(--red);
}

.warning-box {
  padding: 1.25rem 1.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(220, 220, 255, 0.85);
  background: rgba(var(--red-rgb), 0.08);
  border: 1px solid rgba(var(--red-rgb), 0.3);
  border-left: 3px solid var(--red);
  border-radius: 4px;
}

.warning-box strong { color: var(--red); }
.warning-box em     { color: var(--cyan); }

/* ===== SECTION SANCTUAIRE ===== */
.sanctuaire-card {
  position: relative;
  overflow: hidden;
  max-width: 680px;
  margin: 0 auto;
  padding: 3rem 2.5rem;
  text-align: center;
  background: rgba(var(--cyan-rgb), 0.04);
  border: 1px solid rgba(var(--cyan-rgb), 0.2);
  border-radius: 8px;
  box-shadow:
    0 0 60px rgba(var(--cyan-rgb), 0.08),
    inset 0 0 60px rgba(var(--cyan-rgb), 0.03);
}

.sanc-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sanc-circle,
.sanc-circle2 {
  position: absolute;
  border-radius: 50%;
}

.sanc-circle {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -100px;
  border: 1px solid rgba(var(--cyan-rgb), 0.06);
}

.sanc-circle2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: -50px;
  border: 1px solid rgba(var(--cyan-rgb), 0.04);
}

.sanc-content {
  position: relative;
  z-index: 1;
}

.sanc-badge {
  display: inline-block;
  padding: 0.3rem 1rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 3px;
  color: var(--cyan);
  background: rgba(var(--cyan-rgb), 0.1);
  border: 1px solid rgba(var(--cyan-rgb), 0.3);
  border-radius: 2px;
}

.sanc-name {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 900;
  letter-spacing: 4px;
  color: #fff;
  text-shadow: 0 0 20px rgba(var(--cyan-rgb), 0.3);
  margin-bottom: 1rem;
}

.sanc-name svg.icon {
  width: 1.3rem;
  height: 1.3rem;
  color: var(--cyan);
}

.sanc-desc {
  max-width: 500px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(200, 220, 255, 0.75);
}

/* Compteur de membres connectés (live) */
.sanc-live {
  --live: #3bff9e;
  --live-rgb: 59, 255, 158;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 auto 2rem;
  padding: 0.5rem 1.1rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: rgba(210, 255, 235, 0.85);
  background: rgba(var(--live-rgb), 0.07);
  border: 1px solid rgba(var(--live-rgb), 0.3);
  border-radius: 999px;
}

.live-dot {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--live);
  box-shadow: 0 0 8px var(--live);
}

/* Anneau qui pulse autour du point */
.live-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid var(--live);
  animation: live-ping 1.8s ease-out infinite;
}

@keyframes live-ping {
  0%   { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(2.2); opacity: 0; }
}

.live-count {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--live);
  text-shadow: 0 0 10px rgba(var(--live-rgb), 0.5);
  font-variant-numeric: tabular-nums;
}

.live-label {
  letter-spacing: 1px;
  color: rgba(210, 255, 235, 0.7);
}

.sanc-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.feat {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: rgba(180, 240, 255, 0.8);
  background: rgba(var(--cyan-rgb), 0.06);
  border: 1px solid rgba(var(--cyan-rgb), 0.15);
  border-radius: 2px;
}

.feat svg.icon {
  color: var(--cyan);
}

/* ===== ANTI-PUB (fausse carte barrée) ===== */
.antipub-wrapper {
  position: relative;
  max-width: 480px;
  margin: 0 auto 4rem;
}

.antipub-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-align: center;
  color: var(--red);
  animation: pulse-red 1.5s ease-in-out infinite;
}

.antipub-card {
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(var(--red-rgb), 0.5);
  border-radius: 6px;
  filter: grayscale(0.3);
}

.antipub-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--red-rgb), 0.12);
  backdrop-filter: blur(1px);
}

.antipub-cross svg.icon {
  width: 1rem;
  height: 1rem;
}

.antipub-cross {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 1.5rem;
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 4px;
  color: var(--red);
  text-shadow: 0 0 20px var(--red);
  background: rgba(0, 0, 0, 0.6);
  border: 3px solid var(--red);
  border-radius: 4px;
  transform: rotate(-8deg);
  animation: pulse-cross 2s ease-in-out infinite;
}

@keyframes pulse-cross {
  0%, 100% { box-shadow: 0 0 10px var(--red); }
  50%      { box-shadow: 0 0 30px var(--red), 0 0 60px rgba(var(--red-rgb), 0.4); }
}

.antipub-inner {
  padding: 2rem;
  text-align: center;
  background: rgba(10, 5, 20, 0.9);
  opacity: 0.55;
  pointer-events: none;
  user-select: none;
}

.antipub-fake-badge {
  display: inline-block;
  padding: 0.3rem 1rem;
  margin-bottom: 1rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 3px;
  color: var(--red);
  background: rgba(var(--red-rgb), 0.15);
  border: 1px solid rgba(var(--red-rgb), 0.3);
  border-radius: 2px;
}

.antipub-fake-name {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 3px;
  color: #aaa;
  text-decoration: line-through;
  margin-bottom: 0.5rem;
}

/* L'icône d'avertissement reste lisible malgré le barré */
.antipub-fake-name svg.icon {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--red);
}

.antipub-fake-desc {
  font-size: 0.95rem;
  font-style: italic;
  color: #666;
  margin-bottom: 1.25rem;
}

.antipub-fake-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.fake-feat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: #666;
  text-decoration: line-through;
}

.fake-feat svg.icon {
  color: var(--red);
  text-decoration: none;
}

.antipub-fake-btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: #555;
  border: 1px solid #444;
  border-radius: 2px;
  text-decoration: line-through;
}

/* ===== COMPARATIF ===== */
.compare-wrapper {
  margin-top: 4rem;
}

.compare-header {
  text-align: center;
  margin-bottom: 2rem;
}

.compare-header p {
  margin-top: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: rgba(200, 210, 255, 0.6);
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.compare-card {
  padding: 2rem 1.5rem;
  background: var(--card-bg);
  border: 1px solid;
  border-radius: 6px;
}

.compare-card.bad {
  border-color: rgba(var(--red-rgb), 0.3);
  box-shadow: inset 0 0 30px rgba(var(--red-rgb), 0.04);
}

.compare-card.good {
  text-align: center;
  border-color: rgba(var(--cyan-rgb), 0.3);
  box-shadow:
    inset 0 0 30px rgba(var(--cyan-rgb), 0.05),
    0 0 30px rgba(var(--cyan-rgb), 0.08);
}

.compare-title {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 3px;
  margin-bottom: 1.25rem;
}

.red-text  { color: var(--red);  text-shadow: 0 0 10px rgba(var(--red-rgb), 0.4); }
.cyan-text { color: var(--cyan); text-shadow: 0 0 10px rgba(var(--cyan-rgb), 0.4); }

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  text-align: left;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.9rem;
}

.check-list li svg.marker {
  margin-top: 0.1em;
}

.compare-card.bad .check-list li {
  color: rgba(200, 200, 255, 0.55);
}

.compare-card.bad .check-list li svg.marker {
  color: var(--red);
}

.compare-card.good .check-list li {
  color: rgba(200, 240, 255, 0.8);
}

.compare-card.good .check-list li svg.marker {
  color: var(--cyan);
}

.compare-btn {
  margin-top: 1.5rem;
}

.compare-vs {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-align: center;
  color: rgba(255, 255, 255, 0.15);
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  z-index: 1;
  padding: 3rem 0 2rem;
  text-align: center;
  background: var(--dark3);
  border-top: 1px solid var(--border-cyan);
}

.footer-text {
  font-size: 0.95rem;
  color: rgba(180, 190, 255, 0.6);
  margin-bottom: 0.5rem;
}

.footer-sub {
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(180, 190, 255, 0.4);
}

.footer-divider {
  height: 1px;
  margin: 1.5rem 0;
  background: var(--border-cyan);
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: rgba(var(--cyan-rgb), 0.3);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.95);
  cursor: zoom-out;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border: 1px solid var(--border-cyan);
  box-shadow: 0 0 60px rgba(var(--cyan-rgb), 0.2);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  display: inline-flex;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}

.lightbox-close svg.icon {
  width: 1.8rem;
  height: 1.8rem;
}

.lightbox-close:hover {
  color: var(--cyan);
}

/* ===== CTA FLOTTANT ===== */
.floating-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 5000;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  background: rgba(5, 5, 20, 0.95);
  border: 1px solid rgba(var(--cyan-rgb), 0.4);
  border-radius: 6px;
  box-shadow:
    0 0 30px rgba(var(--cyan-rgb), 0.2),
    0 0 60px rgba(var(--cyan-rgb), 0.08);
  backdrop-filter: blur(12px);
  animation: float-in 0.5s ease forwards;
}

@keyframes float-in {
  from { transform: translateY(80px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.fcta-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.fcta-tag {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 2px;
  color: var(--cyan);
}

.fcta-name {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: #fff;
}

.fcta-name svg.icon { color: var(--cyan); }

.fcta-btn {
  padding: 0.55rem 1.1rem;
  font-family: var(--font-title);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  white-space: nowrap;
  color: var(--dark);
  background: var(--cyan);
  border: none;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  transition: box-shadow 0.2s, background 0.2s;
}

.fcta-btn:hover {
  background: #fff;
  box-shadow: 0 0 20px rgba(var(--cyan-rgb), 0.6);
}

.fcta-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 0.95rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.3);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}

.fcta-close:hover {
  color: var(--red);
}

/* ===== RÉVÉLATION AU SCROLL (pilotée par script.js) ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .navbar { padding: 0.75rem 1rem; }
  .nav-links { gap: 1rem; }
  .nav-links a { font-size: 0.7rem; letter-spacing: 1px; }

  .hero-btns { flex-direction: column; align-items: center; }

  .screenshot-card.wide { grid-column: span 1; }
  .sanctuaire-card { padding: 2rem 1.5rem; }

  .compare-grid { grid-template-columns: 1fr; }
  .compare-vs { display: none; }
}

/* ===== ACCESSIBILITÉ : MOUVEMENT RÉDUIT ===== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
