/* ===== HERO TELEGRAM ===== */
:root{
  --hero-max: 1120px;
  --brand: #c8ff1a;        /* accent (vert/jaune) */
  --ink: #0d0d0d;          /* texte principal */
  --muted: #5b5b5b;        /* texte secondaire */
}

.hero-telegram{
  padding: clamp(48px, 8vw, 96px) 0;
  background: #fff;        /* garde la page propre; change si besoin */
}

.hero__inner{
  max-width: var(--hero-max);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(24px, 6vw, 64px);
}

.hero__title{
  margin: 0 0 12px 0;
  font-family: system-ui, -apple-system, "Segoe UI", Inter, Roboto, Arial, sans-serif;
  font-weight: 900;
  line-height: 1.05;
  font-size: clamp(28px, 5.2vw, 56px);
  color: var(--ink);
  letter-spacing: .2px;
}
.hero__title span{
  display: inline-block;
  color: var(--ink);
}

.hero__lead{
  margin: 10px 0 20px 0;
  font-size: clamp(15px, 2.2vw, 18px);
  line-height: 1.55;
  color: var(--muted);
  max-width: 46ch;
}

/* CTA – style pill noir avec accent vert (comme ta capture) */
.cta-telegram{
  --h: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: var(--h);
  padding: 0 18px;
  border-radius: 9999px;
  background: #111;
  color: #eaffea;                  /* léger vert pâle lisible */
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid #000;
  box-shadow: 0 10px 28px rgba(0,0,0,.15);
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  position: relative;
}

.cta-telegram svg{
  width: 18px; height: 18px;
  color: var(--brand);
  margin-left: 10px;       /* laisse la place au dot ::before */
}
.cta-telegram:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0,0,0,.22);
}
.cta-telegram:active{
  transform: translateY(0);
}

/* petits points de preuve */
.hero__bullets{
  display: grid;
  grid-auto-rows: minmax(20px,auto);
  grid-row-gap: 6px;
  margin: 18px 0 0 0;
  padding: 0;
  list-style: none;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}
.hero__bullets li{
  position: relative;
  padding-left: 18px;
}
.hero__bullets li::before{
  content:"";
  position: absolute; left: 0; top: 7px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--brand);
}

/* MEDIA (image téléphones) */
.hero__media{
  position: relative;
  display: grid;
  place-items: center;
}
.hero__media img{
  width: 100%;
  max-width: 440px;
  height: auto;
  display: block;
  z-index: 2;
  filter: drop-shadow(0 22px 40px rgba(0,0,0,.18));
}
.hero__blob{
  position: absolute;
  width: 240px; height: 240px;
  background: var(--brand);
  border-radius: 50%;
  z-index: 1;
  transform: translate(25%, 25%);
  filter: blur(12px);
}

/* ===== Responsive ===== */
@media (max-width: 940px){
  .hero__inner{
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__lead{ margin-left: auto; margin-right: auto; }
  .hero__bullets{ justify-items: center }
  .cta-telegram{ margin-inline: auto }
  .hero__media .hero__blob{ transform: translate(0, 22%); }
}
@media (max-width: 420px){
  .cta-telegram{
    --h: 42px;
    padding: 0 14px;
    font-size: 13px;
  }
  .hero__media img{ max-width: 360px }
  .hero__blob{ width: 200px; height: 200px }
}
/* ===== Section: Obtenez votre carte aujourd'hui ===== */
.section-card-today{
  padding: clamp(48px, 8vw, 96px) 0;
  background:#fff;
}
.sct__inner{
  max-width: 980px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 5vw, 48px);
  justify-items: center;
  text-align: center;
}

.sct__title{
  margin: 0 0 24px 0;
  font-family: system-ui, -apple-system, Segoe UI, Inter, Roboto, Arial, sans-serif;
  font-weight: 900;
  letter-spacing: .3px;
  line-height: 1.05;
  color:#0d0d0d;
  font-size: clamp(35px, 6vw, 44px);
  text-transform: uppercase;
}
.sct__lead{
  margin: 6px auto 0;
  max-width: 520px;
  color:#5b5b5b;
  font-size: clamp(14px, 2.1vw, 17px);
  line-height: 1.55;
}

/* VISUEL: téléphone + carte qui chevauche */
.sct__visual{
  position: relative;
  width: min(460px, 88vw);
  display: grid;
  place-items: center;
}
.sct__phone{
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 38px rgba(0,0,0,.22));
  z-index: 1;
}
.sct__card{
  position: absolute;
  width: 78%;
  max-width: 420px;
  height: auto;
  bottom: 14%;
  left: 50%;
  transform: translateX(-50%) rotate(-1deg);
  z-index: 2;
  filter:
    drop-shadow(0 16px 28px rgba(0,0,0,.25))
    drop-shadow(0 2px 6px rgba(0,0,0,.12));
  transition: transform .25s ease, filter .25s ease;
}
.sct__visual:hover .sct__card{
  transform: translateX(-50%) translateY(-2px) rotate(-.5deg);
  filter:
    drop-shadow(0 22px 36px rgba(0,0,0,.28))
    drop-shadow(0 3px 8px rgba(0,0,0,.16));
}

/* Responsive */
@media (min-width: 900px){
  .sct__inner{
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    text-align: left;
    justify-items: stretch;
  }
  .sct__head{ padding-right: clamp(10px, 2vw, 28px); }
  .sct__lead{ margin-left: 0; }
  .sct__visual{ justify-self: center; }
}
/* === Réglages rapides === */
:root{
  /* largeur max du bloc visuel => rétrécit le téléphone */
  --phone-width: 300px;         /* ↓ diminue pour réduire le téléphone (ex: 360, 340…) */

  /* taille de la carte par rapport au bloc (en %) */
  --card-width: 110%;            /* 70–85% selon ton image */

  /* position verticale de la carte depuis le bas du bloc */
  --card-bottom: 50%;           /* ↑ augmente pour MONTER la carte (ex: 26%, 30%) */

  /* légère rotation si besoin */
  --card-rotate: -1deg;         /* 0deg si tu la veux droite */
}

/* applique les variables */
.sct__visual{
  width: min(var(--phone-width), 88vw);
}
.sct__phone{
  width: 100%;
}
.sct__card{
  width: var(--card-width);
  bottom: var(--card-bottom);
  transform: translateX(-50%) rotate(var(--card-rotate));
  transition: bottom .15s ease, width .15s ease, transform .15s ease;
}
/* ===== Section: Recharge gratuit crypto/fiat ===== */
:root{
  --ink:#0d0d0d;
  --muted:#5b5b5b;
  --topup-max:980px;
  --phone-w:360px;           /* ajuste pour agrandir/réduire le téléphone */
}

.section-topup{
  padding: clamp(48px, 8vw, 96px) 0;
  background:#fff;
}

.topup__inner{
  max-width: var(--topup-max);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 4vw, 36px);
  justify-items: center;
  text-align: center;
}

.topup__title{
  margin:0;
  font-family: system-ui,-apple-system,Segoe UI,Inter,Roboto,Arial,sans-serif;
  font-weight: 900;
  letter-spacing:.2px;
  line-height:1.05;
  color:var(--ink);
  text-transform:uppercase;
  font-size: clamp(36px, 6.2vw, 40px);
}

.topup__lead{
  margin: 12px 0 0;
  color: var(--muted);
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.55;
  max-width: 520px;
}

.topup__visual{
  position: relative;
  display: grid;
  place-items: center;
  width: min(var(--phone-w), 88vw);
}

.topup__phone{
  width: 300px;
  height: auto;
  display:block;
  filter: drop-shadow(0 20px 44px rgba(0,0,0,.22));
  border-radius: 26px; /* optionnel si ton visuel est rectangulaire */
}

/* Desktop: si tu veux aligner texte à gauche et visuel à droite */
@media (min-width: 900px){
  .topup__inner{
    grid-template-columns: .9fr 1.1fr;
    align-items:center;
    text-align:left;
    justify-items:stretch;
  }
  .topup__lead{max-width: 460px}
  .topup__visual{justify-self:center}
}
/* ====== Thème sombre déclenché par la section ====== */
body.theme-dark { background:#000; color:#fff; }

/* Header passe au noir quand body.theme-dark est actif */
body.theme-dark .site-header{
  background: rgba(0,0,0,.88) !important;
  box-shadow: 0 2px 14px rgba(0,0,0,.5);
}
body.theme-dark .site-header a{ color:#E1FF01; }

/* ====== Section : Autres fonctionnalités (dark) ====== */
.features-dark{
  background:#000;            /* fond de section noir */
  color:#fff;
  padding: clamp(56px, 9vw, 110px) 0;
  position: relative;
}

.fd__inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 5vw, 48px);
  justify-items: center;
}

.fd__title{
  margin:0;
  text-transform: uppercase;
  font: 900 clamp(26px, 6.5vw, 44px)/1.05 system-ui,-apple-system,Segoe UI,Inter,Roboto,Arial,sans-serif;
  letter-spacing:.3px;
  text-align:left;
  align-self:start;
  width:100%;
}

/* Carte sombre */
.fd__card{
  width: min(440px, 92vw);
  padding: 22px 22px 18px;
  border-radius: 22px;
  background:
    radial-gradient(140% 120% at 20% 0%, #2a2a2a 0%, #1b1b1b 60%, #131313 100%);
  border:1px solid #2a2a2a;
  box-shadow: 0 18px 42px rgba(0,0,0,.45);
}

.fd__badge{
  width: 36px; height: 36px; border-radius: 12px;
  display:grid; place-items:center;
  background:#ff63b5; color:#fff; font-size:18px;
  margin-bottom: 14px;
}
.fd__card-title{
  margin:0 0 8px 0;
  font: 800 22px/1.1 system-ui,-apple-system,Segoe UI,Inter,Roboto,Arial,sans-serif;
}
.fd__card-text{
  margin:0 0 14px 0;
  color:#cfcfcf;
  font-size:15px; line-height:1.55;
}

/* Image téléphone dans la carte */
.fd__phone{
  margin-top:8px;
  background: #0e0e0e;
  border-radius: 18px;
  overflow:hidden;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04),
              0 12px 28px rgba(0,0,0,.55);
}
.fd__phone img{
  display:block; width:100%; height:auto;
}

/* Desktop : titre à gauche, carte à droite */
@media (min-width: 960px){
  .fd__inner{
    grid-template-columns: .9fr 1.1fr;
    align-items: start;
  }
  .fd__title{ text-align:left; }
}
/* ============ Thème global (light par défaut) ============ */
:root{
  /* Couleurs de base */
  --bg: #ffffff;
  --text: #0d0d0d;
  --muted:#5b5b5b;
  --border:#e9e9e9;

  /* Surfaces / cartes (si tu en as) */
  --surface:#ffffff;
  --surface-2:#f6f6f6;
  --shadow: 0 10px 28px rgba(0,0,0,.12);

  /* Header */
  --header-solid: rgba(255,255,255,.88);
  --header-shadow: 0 2px 12px rgba(0,0,0,.08);

  /* Réglage rapide de la TAILLE de l’image de la section */
  --fd-img-w: 420px;  /* ← change à 360px / 480px etc. */
}

/* Thème sombre activé sur tout le site */
body.theme-dark{
  --bg: #000000;
  --text: #ffffff;
  --muted:#bfbfbf;
  --border:#1b1b1b;
  --surface:#111111;
  --surface-2:#151515;
  --shadow: 0 18px 42px rgba(0,0,0,.45);
  --header-solid: rgba(0,0,0,.88);
  --header-shadow: 0 2px 16px rgba(0,0,0,.55);
}

/* Transition douce sur les éléments courants */
html,body,header,section,footer,main,div,article,aside{
  transition: background-color .35s ease, color .35s ease, border-color .35s ease, box-shadow .35s ease;
}
body{ background: var(--bg); color: var(--text); }

/* Header existant suit le thème */
.site-header{ background: transparent; }
.site-header.scrolled{
  background: var(--header-solid);
  box-shadow: var(--header-shadow);
  backdrop-filter: saturate(120%) blur(10px);
}
.site-header a{ color: var(--text); }

/* ============ Section : Autres fonctionnalités (structure) ============ */

.fd-wrap{
  max-width: 1100px; margin: 0 auto;
  padding: 0 clamp(16px,4vw,32px);
  display: grid; gap: clamp(20px,4vw,36px);
}
.fd-title{
  margin:0; text-transform:uppercase;
  font: 900 clamp(26px,6vw,42px)/1.05 system-ui,-apple-system,Segoe UI,Inter,Roboto,Arial,sans-serif;
  color: var(--text);
}
.fd-img{
  width: min(var(--fd-img-w), 92vw);       /* << RÈGLE ICI la taille via la variable */
  border-radius: 20px; overflow: hidden;
 position: relative;
 
}
.fd-img img{ display:block; width:100%; height:auto; }

@media (min-width: 960px){
  .fd-wrap{ grid-template-columns: .9fr 1.1fr; align-items: center; }
}

/* ======= Patch rapide : force tes sections existantes à suivre le thème ======= */
/* retire-les si tu as déjà remplacé #fff par var(--bg) dans leurs CSS */
.hero-telegram,
.section-card-today,
.section-topup,
.features-trigger{
  background: var(--bg) !important; color: var(--text) !important;
}
/* === PATCH : centrer l'image de la section "Autres fonctionnalités" === */
:root{
  --fd-img-w: 420px;    /* largeur de l’image – ajuste librement (360, 480, …) */
  --fd-img-shift: 0px;  /* micro-décalage horizontal si besoin (+/- 10px) */
}

.fd-img{
  width: min(var(--fd-img-w), 92vw);
  margin: 6px auto 0;         /* centre horizontalement */
  justify-self: center;       /* centre dans la grille */
  transform: translateX(var(--fd-img-shift));
  transition: transform .2s ease;
}
.fd-img img{
  display: block;
  width: 100%;
  height: auto;
}

/* Si tu utilises la mise en page 2 colonnes desktop, on force aussi le centrage */
@media (min-width: 960px){
  .fd-img{ justify-self: center; }
}
/* ===== FAQ ===== */
:root{
  --brand:#c8ff1a;
  --faq-w: 820px;         /* largeur max du bloc FAQ */
}

.faq{ padding: clamp(48px,8vw,96px) 0; background: var(--bg); color: var(--text); }
.faq__inner{
  max-width: var(--faq-w);
  margin: 0 auto;
  padding: 0 clamp(16px,4vw,24px);
}
.faq__title{
  margin: 0 0 60px 0;
  text-align: center;
  text-transform: uppercase;
  font: 900 clamp(22px,12.2vw,32px)/1.05 system-ui,-apple-system,Segoe UI,Inter,Roboto,Arial,sans-serif;
  color: #E1FF01
}

.faq__list{ display: grid; gap: 10px; }

/* Question */
.faq__q{
  width: 100%;
  text-align: left;
  padding: 14px 44px 14px 16px;
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
}

/* + / - icon */
.faq__q::before, .faq__q::after{
  content:"";
  position: absolute;
  right: 16px; top: 50%;
  background: #E1FF01;
  transition: opacity .2s ease, transform .2s ease;
}
.faq__q::before{ width: 16px; height: 2px; transform: translateY(-50%); }             /* — */
.faq__q::after { width: 2px; height: 16px; transform: translateY(-50%); }              /* | */
.faq__q[aria-expanded="true"]::after{ opacity: 0; transform: translateY(-50%) scaleY(0) } /* devient juste un — */

/* Réponse (animation fluide sans calcul de hauteur) */
.faq__a{
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .25s ease, opacity .2s ease;
  opacity: .75;
}
.faq__a-inner{
  overflow: hidden;
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 12px 12px;
  background: var(--surface);
  padding: 0 16px;             /* pas d’espace quand fermé */
}
.faq__item:first-child .faq__a-inner{ border-top-left-radius: 0; border-top-right-radius: 0; }

.faq__item .faq__a p{ margin: 12px 0 16px; color: var(--muted); line-height: 1.55; }

/* état ouvert : on garde le bouton arrondi en haut et on “prolonge” avec la réponse */
.faq__item.open .faq__a{ grid-template-rows: 1fr; opacity: 1; }
.faq__item.open .faq__q{
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

/* Dark mode suit tes variables globales automatiquement */
/* Header CTA en dark mode */
body.theme-dark .cta{
  color:#fff;
  background:
    linear-gradient(#111,#111) padding-box,      /* fond noir */
    linear-gradient(90deg,#E1FF01,#efff74) border-box; /* liseré clair */
  border:1px solid transparent;
}
body.theme-dark .cta svg{ color:#E1FF01; }
body.theme-dark .cta:hover{ box-shadow:0 6px 18px rgba(255,255,255,.12); }
.hero__title1{
  margin: 0 0 40px 0;
  font-family: system-ui, -apple-system, "Segoe UI", Inter, Roboto, Arial, sans-serif;
  font-weight: 900;
  line-height: 1.05;
  font-size: clamp(35px, 5.2vw, 56px);
  color: #ffffff;
  letter-spacing: .2px;
}

/* ===== Section fin de page : 3 rectangles ===== */
:root{
  /* tu peux ajuster ces variables si besoin */
  --k-end-bg: #c8ff1a;     /* vert/jaune du fond */
  --k-ink: #0d0d0d;        /* texte principal */
  --k-muted: #5b5b5b;      /* texte secondaire */
  --k-surface: #ffffff;    /* cartes blanches */
  --k-radius: 18px;
  --k-shadow: 0 10px 28px rgba(0,0,0,.12);
}





.k-end__wrap{
  max-width: 640px;
  margin: 0 auto;
  padding: 0 clamp(14px, 60vw, 40px);
  display: grid;
  gap: 18px;
  margin-bottom: 80px;
  margin-top: 60px;
}

/* Cartes */
.k-card{
  background: var(--k-surface);
  color: var(--k-ink);
  border-radius: var(--k-radius);
  box-shadow: var(--k-shadow);
  padding: 20px;
}

.k-card--xl{
  padding: clamp(20px, 4.5vw, 28px);
}

.k-card__title{
  margin: 0 0 16px 0;
  font: 900 clamp(28px, 90vw, 50px)/1.02 system-ui, -apple-system, Segoe UI, Inter, Roboto, Arial, sans-serif;
  letter-spacing:.2px;
}

/* petite ligne marque */
.k-brandline{
  display:inline-flex; align-items:center; gap:8px;
  margin: 6px 0 10px 0;
  font-weight:700;
}
.k-brandline__icon{ font-size: 16px }
.k-brandline__name{ font-size: 15px }

.k-copy{
  margin: 0;
  font-size: 12px;
  color: var(--k-muted);
}

/* Carte Soutien */
.k-card__heading{
  margin: 0 0 25px 0;
  font: 800 25px/1.15 system-ui, -apple-system, Segoe UI, Inter, Roboto, Arial, sans-serif;
}
.k-card__text{
  margin: 8px 0;
  color: var(--k-ink);
  font-size: 14px;
  line-height: 1.5;
}
.k-link{
  color: var(--k-ink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Bloc des 2 mini-cartes (liens légaux) */
.k-legal{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.k-mini{
  display: block;
  text-align: left;
  background: var(--k-surface);
  color: var(--k-ink);
  border-radius: var(--k-radius);
  box-shadow: var(--k-shadow);
  padding: 14px 16px;
  font-size: 13px;
  text-decoration: none;
  border: 1px solid rgba(0,0,0,.03);
}

/* Petits raffinements */
.k-card, .k-mini{
  transition: transform .15s ease, box-shadow .2s ease;
}
.k-card:hover, .k-mini:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0,0,0,.18);
}

/* Responsive très étroit : passe les mini-cartes en pile */
@media (max-width: 420px){
  .k-legal{ grid-template-columns: 1fr; }
}
/* ===== Footer ===== */
.karta-footer {
  background: #000;           /* fond noir */
  color: #fff;                /* texte blanc */
  text-align: center;
  padding: 28px 16px;
  font-size: 9px;
  line-height: 1.6;
}

.karta-footer p {
  margin: 6px 0;
}
/* ========= Conditions d’utilisation (fond noir / texte blanc) ========= */
:root{
  --tos-bg: #000;
  --tos-ink: #fff;
  --tos-muted: #b7b7b7;
  --tos-card: #0f0f10;
  --tos-stroke: #1d1d1f;
  --tos-accent: #86efac; /* léger vert pour liens/surbrillance */
  --tos-radius: 14px;
  --tos-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.tos{
  background: var(--tos-bg);
  color: var(--tos-ink);
  min-height: 100vh;
  padding-bottom: 48px;
}

.tos a{ color: var(--tos-accent); text-decoration: underline; text-underline-offset: 2px; }
.tos p, .tos li{ line-height: 1.7; }

.tos-hero{
  padding: 40px 20px 24px;
  text-align: center;
  border-bottom: 1px solid var(--tos-stroke);
}
.tos-hero h1{
  margin: 0 0 8px 0;
  font-size: clamp(22px, 3.6vw, 34px);
  font-weight: 800;
}
.tos-hero p{ margin: 6px auto; max-width: 860px; color: var(--tos-muted); }
.tos-hero .tos-date{ color: #e5e5e5; }

.tos-grid{
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 16px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 20px;
}

/* Sommaire */
.tos-toc{
  position: sticky; top: 18px;
  align-self: start;
  background: var(--tos-card);
  border: 1px solid var(--tos-stroke);
  border-radius: var(--tos-radius);
  padding: 16px;
  box-shadow: var(--tos-shadow);
}
.tos-toc h2{ margin: 0 0 8px; font-size: 14px; text-transform: uppercase; letter-spacing: .06em; color:#eaeaea; }
.tos-toc ol{ margin: 0; padding-left: 18px; display: grid; gap: 6px; }
.tos-toc a{ color:#e5ffeF; text-decoration: none; }
.tos-toc a:hover{ text-decoration: underline; }

/* Cartes de contenu */
.tos-body{ display: grid; gap: 16px; }
.tos-card{
  background: var(--tos-card);
  border: 1px solid var(--tos-stroke);
  border-radius: var(--tos-radius);
  padding: clamp(16px, 2.8vw, 22px);
  box-shadow: var(--tos-shadow);
}
.tos-card h2{ margin: 0 0 10px; font-size: clamp(18px, 2.4vw, 22px); }
.tos-card .muted{ color: var(--tos-muted); }

/* Callout d’avertissement */
.tos-callout{
  background: #101212;
  border: 1px dashed #2a2a2a;
  color: #e9ffe9;
  border-radius: var(--tos-radius);
  padding: 14px 16px;
}

/* Details / Summary */
.tos-card details{
  border: 1px solid var(--tos-stroke);
  border-radius: 12px;
  padding: 10px 12px;
  margin-top: 10px;
  background: #111214;
}
.tos-card summary{
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}
.tos-card summary::-webkit-details-marker{ display:none; }
.tos-card details[open]{ background:#131417; }

/* Bouton haut de page */
.tos-end{ text-align:center; margin-top: 8px; }
.btn-top{
  display:inline-block;
  padding:10px 14px;
  border-radius: 999px;
  border: 1px solid var(--tos-stroke);
  background:#0e0f10;
  color:#fff; text-decoration:none;
}
.btn-top:hover{ border-color:#2b2b2d; }

/* Responsive */
@media (max-width: 900px){
  .tos-grid{ grid-template-columns: 1fr; }
  .tos-toc{ position: static; }
}
/* ===== Privacy Page (Creacard) ===== */
.privacy {
  background: #000;
  color: #fff;
  padding-bottom: 50px;
}

.privacy-hero {
  text-align: center;
  padding: 40px 20px 20px;
  border-bottom: 1px solid #222;
}
.privacy-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
}
.privacy-hero p {
  color: #bbb;
  margin: 0;
}

.privacy-body {
  max-width: 900px;
  margin: 0 auto;
  padding: 24px 16px;
  display: grid;
  gap: 24px;
}

.privacy-section {
  background: #111;
  border: 1px solid #222;
  border-radius: 12px;
  padding: 18px 20px;
}
.privacy-section h2 {
  margin-top: 0;
  font-size: 18px;
  font-weight: 700;
  color: #86efac;
}
.privacy-section p, 
.privacy-section li {
  line-height: 1.6;
  color: #eee;
}
.privacy-section ul, 
.privacy-section ol {
  padding-left: 18px;
}

.privacy a {
  color: #86efac;
  text-decoration: underline;
  text-underline-offset: 2px;
}
