/* ============ FORUM GTA 6 — Thème Vice City ============ */

:root {
  --bg: #0b0716;
  --bg-2: #140b26;
  --panel: rgba(255, 255, 255, 0.045);
  --panel-border: rgba(255, 255, 255, 0.09);
  --pink: #ff4fd8;
  --pink-hot: #ff2fa0;
  --orange: #ff9a3c;
  --yellow: #ffd23f;
  --violet: #7b5cff;
  --cyan: #4fd8ff;
  --text: #f4effa;
  --text-dim: #b7a9cf;
  --grad-sunset: linear-gradient(135deg, #ff9a3c 0%, #ff2fa0 45%, #7b5cff 100%);
  --font-display: "Archivo", sans-serif;
  --font-body: "Space Grotesk", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* clip aussi sur html : sur mobile, un élément plus large que l'écran
   ferait « glisser » toute la page vers la droite */
html { scroll-behavior: smooth; overflow-x: clip; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  /* clip et non hidden : hidden transforme body en conteneur de scroll
     (le scroll se fait alors sur body au lieu de la fenêtre et décale toute la page) */
  overflow-x: clip;
  line-height: 1.6;
}

::selection { background: var(--pink-hot); color: #fff; }

/* ============ FOND ANIMÉ ============ */
.bg-scene {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse at 50% -20%, #2a1245 0%, var(--bg) 60%);
  overflow: hidden;
}

.bg-sun {
  position: absolute;
  top: 6vh;
  left: 50%;
  transform: translateX(-50%);
  width: min(46vw, 460px);
  height: min(46vw, 460px);
  border-radius: 50%;
  background: linear-gradient(180deg, var(--yellow) 0%, var(--orange) 35%, var(--pink-hot) 75%);
  opacity: 0.55;
  will-change: opacity;
  -webkit-mask: repeating-linear-gradient(180deg, #000 0 26px, transparent 26px 34px);
          mask: repeating-linear-gradient(180deg, #000 0 26px, transparent 26px 34px);
}

.bg-grid {
  position: absolute;
  left: -20%;
  right: -20%;
  bottom: -12%;
  height: 55vh;
  background:
    linear-gradient(transparent 0%, rgba(255, 47, 160, 0.25) 100%),
    repeating-linear-gradient(90deg, rgba(255, 79, 216, 0.28) 0 2px, transparent 2px 90px),
    repeating-linear-gradient(0deg, rgba(255, 79, 216, 0.28) 0 2px, transparent 2px 70px);
  transform: perspective(500px) rotateX(62deg);
  transform-origin: bottom;
  opacity: 0.5;
}

/* Halos en dégradé radial : même rendu qu'un blur() mais quasi gratuit pour le GPU */
.bg-glow {
  position: absolute;
  width: 55vw;
  height: 55vw;
  border-radius: 50%;
}
.bg-glow--pink {
  background: radial-gradient(circle, rgba(255, 47, 160, 0.18) 0%, transparent 65%);
  top: 30%; left: -20%;
}
.bg-glow--orange {
  background: radial-gradient(circle, rgba(123, 92, 255, 0.2) 0%, transparent 65%);
  top: 55%; right: -22%;
}

/* ============ NAVIGATION ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(20px, 5vw, 60px);
  background: rgba(11, 7, 22, 0.92);
  border-bottom: 1px solid var(--panel-border);
}

.nav__logo {
  display: flex;
  align-items: baseline;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.nav__logo-vi {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: 1.7rem;
  background: var(--grad-sunset);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -1px;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 4px;
  font-size: 0.78rem;
  color: var(--text-dim);
}

.nav__links { display: flex; gap: clamp(14px, 3vw, 34px); }

.nav__links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--grad-sunset);
  transition: width 0.25s;
}

.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { width: 100%; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__burger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; }

/* ============ HERO ============ */
.hero {
  position: relative;
  text-align: center;
  padding: clamp(60px, 10vh, 120px) 20px 70px;
  overflow: hidden;
}

.hero__badge {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid var(--panel-border);
  border-radius: 999px;
  background: var(--panel);
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 28px;
}

.hero__title { font-family: var(--font-display); line-height: 0.95; }

.hero__title-line {
  display: block;
  font-weight: 800;
  font-size: clamp(1.2rem, 3.5vw, 2.2rem);
  letter-spacing: clamp(4px, 1.2vw, 12px);
  color: var(--text);
  text-shadow: 0 0 30px rgba(255, 79, 216, 0.5);
}

.hero__title-vi {
  display: block;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(7rem, 22vw, 16rem);
  background: var(--grad-sunset);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 42px rgba(255, 47, 160, 0.45));
  letter-spacing: -8px;
  margin-top: 6px;
}

.hero__subtitle {
  max-width: 560px;
  margin: 22px auto 40px;
  color: var(--text-dim);
  font-size: 1.05rem;
}

/* Compte à rebours */
.countdown {
  display: inline-block;
  padding: 26px clamp(20px, 5vw, 48px);
  border: 1px solid var(--panel-border);
  border-radius: 20px;
  background: rgba(20, 11, 38, 0.85);
  box-shadow: 0 0 60px rgba(255, 47, 160, 0.12);
}

.countdown__label { font-size: 0.9rem; color: var(--text-dim); margin-bottom: 16px; }
.countdown__label strong { color: var(--orange); }

.countdown__grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(8px, 2vw, 18px);
}

.countdown__cell { display: flex; flex-direction: column; align-items: center; min-width: 68px; }

.countdown__cell span {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 6vw, 3.4rem);
  background: var(--grad-sunset);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
}

.countdown__cell small {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-dim);
}

.countdown__sep {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5vw, 2.8rem);
  font-weight: 900;
  color: var(--pink);
  padding-top: 4px;
  animation: blink 1s steps(2) infinite;
}

@keyframes blink { 50% { opacity: 0.25; } }

.hero__cta { margin-top: 38px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn--primary {
  background: var(--grad-sunset);
  color: #fff;
  box-shadow: 0 8px 30px rgba(255, 47, 160, 0.35);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(255, 47, 160, 0.5); }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--panel-border);
}
.btn--ghost:hover { border-color: var(--pink); color: var(--pink); transform: translateY(-3px); }

.hero__palm {
  position: absolute;
  bottom: -30px;
  width: clamp(120px, 18vw, 240px);
  color: #060312;
  opacity: 0.9;
  pointer-events: none;
}
.hero__palm--left { left: -2%; transform: scaleX(-1) rotate(-4deg); }
.hero__palm--right { right: -2%; rotate: 4deg; }

/* ============ TICKER ============ */
.ticker {
  overflow: hidden;
  border-top: 1px solid var(--panel-border);
  border-bottom: 1px solid var(--panel-border);
  background: rgba(255, 47, 160, 0.06);
  padding: 12px 0;
}

/* Le défilement est piloté en JS (scrollLeft, voir startTickerScroll dans app.js) :
   l'ancienne animation CSS transform « blanchissait » sur certains téléphones
   (bande plus large que la taille max des calques GPU mobiles). */
.ticker__track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  width: max-content;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
}

.ticker__track b { color: var(--orange); }

/* ============ SECTIONS ============ */
.section {
  max-width: 1160px;
  margin: 0 auto;
  padding: clamp(60px, 9vh, 110px) clamp(20px, 4vw, 40px);
}

.section__head { margin-bottom: 44px; }

.section__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section__num {
  font-style: italic;
  background: var(--grad-sunset);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-right: 10px;
}

.section__desc { color: var(--text-dim); margin-top: 8px; max-width: 560px; }

/* ============ NEWS ============ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 22px;
}

.news-card {
  position: relative;
  border: 1px solid var(--panel-border);
  border-radius: 18px;
  background: var(--panel);
  padding: 26px;
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.news-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 79, 216, 0.5);
  box-shadow: 0 18px 50px rgba(255, 47, 160, 0.15);
}

.news-card--featured { grid-column: span 2; background: linear-gradient(135deg, rgba(255, 154, 60, 0.1), rgba(123, 92, 255, 0.1)); }

.news-card__meta { display: flex; gap: 10px; align-items: center; margin-bottom: 14px; flex-wrap: wrap; }

.news-card__tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
}
.tag--officiel { background: rgba(255, 154, 60, 0.16); color: var(--orange); }
.tag--rumeur { background: rgba(123, 92, 255, 0.18); color: #a793ff; }
.tag--communaute { background: rgba(79, 216, 255, 0.14); color: var(--cyan); }
.tag--analyse { background: rgba(255, 79, 216, 0.14); color: var(--pink); }

.news-card__date { font-size: 0.78rem; color: var(--text-dim); }

.news-card--link { display: block; text-decoration: none; color: var(--text); }

.news-card__more {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--pink);
}

.news-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  line-height: 1.3;
  margin-bottom: 10px;
}
.news-card--featured h3 { font-size: 1.6rem; }

.news-card p { color: var(--text-dim); font-size: 0.94rem; }

/* ============ TIMELINE ============ */
.timeline { position: relative; padding-left: 34px; }

.timeline::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(var(--orange), var(--pink-hot), var(--violet));
}

.timeline__item { position: relative; padding: 0 0 34px 20px; }

.timeline__item::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg);
  border: 3px solid var(--pink);
  box-shadow: 0 0 14px rgba(255, 47, 160, 0.7);
}

.timeline__item--milestone::before { border-color: var(--orange); box-shadow: 0 0 18px rgba(255, 154, 60, 0.9); }

.timeline__date {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
}

.timeline__item h3 { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; margin: 4px 0 6px; }
.timeline__item p { color: var(--text-dim); font-size: 0.94rem; max-width: 640px; }

/* ============ TRAILERS ============ */
.trailers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(420px, 100%), 1fr));
  gap: 26px;
}

.trailer-card {
  border: 1px solid var(--panel-border);
  border-radius: 18px;
  overflow: hidden;
  background: var(--panel);
  transition: transform 0.25s, box-shadow 0.25s;
}
.trailer-card:hover { transform: translateY(-6px); box-shadow: 0 18px 50px rgba(123, 92, 255, 0.18); }

.trailer-card__video { aspect-ratio: 16 / 9; background: #000; width: 100%; }
.trailer-card__video iframe { width: 100%; height: 100%; border: none; display: block; }

/* Façade YouTube : le lecteur ne se charge qu'au clic */
.yt-facade {
  position: relative;
  display: block;
  border: none;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
}
.yt-facade img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0.85; transition: opacity 0.2s, transform 0.3s; }
.yt-facade:hover img { opacity: 1; transform: scale(1.03); }

.yt-facade__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  color: #fff;
  padding-left: 6px;
  background: var(--grad-sunset);
  box-shadow: 0 8px 30px rgba(255, 47, 160, 0.5);
  transition: transform 0.2s;
}
.yt-facade:hover .yt-facade__play { transform: translate(-50%, -50%) scale(1.1); }

.trailer-card__body { padding: 22px 26px; }
.trailer-card__body h3 { font-family: var(--font-display); font-weight: 800; margin-bottom: 8px; }
.trailer-card__body p { color: var(--text-dim); font-size: 0.93rem; }

/* ============ PERSONNAGES ============ */
.chars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
  gap: 26px;
}

.char-card {
  position: relative;
  border: 1px solid var(--panel-border);
  border-radius: 20px;
  padding: 40px 32px;
  overflow: hidden;
  background: var(--panel);
  transition: transform 0.25s;
}
.char-card:hover { transform: translateY(-6px) scale(1.01); }

.char-card__glow {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
}
.char-card--lucia .char-card__glow { background: radial-gradient(circle, rgba(255, 47, 160, 0.3) 0%, transparent 65%); }
.char-card--jason .char-card__glow { background: radial-gradient(circle, rgba(79, 216, 255, 0.28) 0%, transparent 65%); }

.char-card h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  letter-spacing: 1px;
}
.char-card--lucia h3 { color: var(--pink); text-shadow: 0 0 24px rgba(255, 47, 160, 0.55); }
.char-card--jason h3 { color: var(--cyan); text-shadow: 0 0 24px rgba(79, 216, 255, 0.5); }

.char-card__tag {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-dim);
  margin: 8px 0 16px;
}

.char-card p:last-child { color: var(--text-dim); font-size: 0.95rem; }

/* ============ COMMUNAUTÉS ============ */
.community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}

.community-card {
  display: block;
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--panel-border);
  border-radius: 18px;
  background: var(--panel);
  padding: 26px;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.community-card:hover {
  transform: translateY(-6px);
  border-color: rgba(123, 92, 255, 0.6);
  box-shadow: 0 18px 50px rgba(123, 92, 255, 0.18);
}

.community-card__top { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }

.community-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--panel-border);
}

.community-card h3 { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; }
.community-card__members { font-size: 0.78rem; color: var(--orange); font-weight: 600; }
.community-card p { color: var(--text-dim); font-size: 0.92rem; }

.community-card__cta {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--pink);
}

/* ============ FAQ ============ */
.faq-list { display: flex; flex-direction: column; gap: 14px; max-width: 820px; }

.faq-item {
  border: 1px solid var(--panel-border);
  border-radius: 14px;
  background: var(--panel);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--pink);
  transition: transform 0.25s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p { padding: 0 24px 20px; color: var(--text-dim); font-size: 0.94rem; }

/* ============ NEWSLETTER ============ */
.section--newsletter { padding-top: 0; }

.newsletter {
  text-align: center;
  border: 1px solid var(--panel-border);
  border-radius: 24px;
  padding: clamp(40px, 6vw, 64px);
  background:
    radial-gradient(ellipse at top left, rgba(255, 154, 60, 0.12), transparent 55%),
    radial-gradient(ellipse at bottom right, rgba(123, 92, 255, 0.14), transparent 55%),
    var(--panel);
}

.newsletter h2 { font-family: var(--font-display); font-weight: 900; font-size: clamp(1.5rem, 4vw, 2.2rem); margin-bottom: 10px; }
.newsletter p { color: var(--text-dim); max-width: 480px; margin: 0 auto 26px; }

.newsletter__form { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.newsletter__form input {
  padding: 14px 20px;
  min-width: min(320px, 80vw);
  border-radius: 12px;
  border: 1px solid var(--panel-border);
  background: rgba(0, 0, 0, 0.3);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter__form input:focus { border-color: var(--pink); }

.newsletter__ok { margin-top: 18px; color: var(--cyan) !important; font-weight: 600; }

/* ============ FOOTER ============ */
.footer { border-top: 1px solid var(--panel-border); background: rgba(0, 0, 0, 0.35); }

.footer__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 44px clamp(20px, 4vw, 40px);
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  align-items: flex-start;
}

.footer__inner p { color: var(--text-dim); font-size: 0.85rem; margin-top: 8px; }
.footer__disclaimer { max-width: 520px; }

/* ============ REVEAL AU SCROLL ============ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 480px) {
  .countdown { width: 100%; padding: 20px 10px; }
  .countdown__grid { gap: 4px; }
  .countdown__cell { min-width: 0; flex: 1; }
  .countdown__cell span { font-size: 1.9rem; }
  .countdown__sep { font-size: 1.5rem; padding-top: 2px; }
}

@media (max-width: 760px) {
  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 20px;
    gap: 18px;
    background: rgba(11, 7, 22, 0.97);
    border-bottom: 1px solid var(--panel-border);
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__burger { display: flex; }
  .news-card--featured { grid-column: span 1; }
  .hero__title-vi { letter-spacing: -4px; }
  /* barre du haut compacte : tout tient sur une ligne, sans déborder */
  .nav { padding: 10px 12px; gap: 8px; }
  .nav__logo { flex-shrink: 0; }
}

@media (max-width: 480px) {
  .nav__logo-text { display: none; }   /* on garde juste le logo « GTA6 » */
  .cookie-banner { max-width: calc(100vw - 20px); padding: 13px 15px; }
  .cookie-banner__text { font-size: 0.82rem; }
}

@media (prefers-reduced-motion: reduce) {
  /* le ticker est géré en JS : startTickerScroll respecte déjà cette préférence */
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Emplacement publicitaire (accueil) ---------- */
.ad-slot {
  border: 1px dashed rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 10px;
  margin: 0 0 26px;
  overflow: hidden;
  text-align: center;
}
.ad-slot__label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 6px;
}

/* ---------- Bandeau cookies RGPD ---------- */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: min(960px, calc(100% - 28px));
  z-index: 9999;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(20, 11, 38, 0.96);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
}
.cookie-banner__text { flex: 1 1 320px; font-size: 0.9rem; line-height: 1.5; color: #d9cff0; }
.cookie-banner__text a { color: #ff7ac1; }
.cookie-banner__actions { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }

/* ---------- Pages légales (prose) ---------- */
.legal { max-width: 820px; margin: 0 auto; }
.legal h1 { font-family: var(--font-display); font-weight: 900; font-size: clamp(1.7rem, 5vw, 2.4rem); margin-bottom: 6px; }
.legal .legal__updated { color: var(--text-dim); font-size: 0.85rem; margin-bottom: 28px; }
.legal h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  margin: 30px 0 10px;
  padding-top: 8px;
  color: #fff;
}
.legal p, .legal li { color: #cdc2e6; line-height: 1.7; font-size: 0.96rem; }
.legal ul { margin: 8px 0 8px 22px; display: flex; flex-direction: column; gap: 6px; }
.legal a { color: #ff7ac1; }
.legal .legal__todo {
  background: rgba(255, 210, 63, 0.1);
  border: 1px solid rgba(255, 210, 63, 0.35);
  border-radius: 8px;
  padding: 2px 7px;
  color: #ffd23f;
  font-size: 0.85rem;
}

/* ---------- Liens légaux (footer) ---------- */
.footer__links { margin-top: 10px; font-size: 0.85rem; color: var(--text-dim); }
.footer__links a { color: var(--text-dim); text-decoration: none; }
.footer__links a:hover { color: #ff7ac1; }
