/* ═══════════════════════════════════════════════════════════
   STYLE PAGE PRIVACY — nouveau style dark, cohérent avec landing.css
   Polices : Bebas Neue (titres) · Syne (corps) · DM Mono (mono)
════════════════════════════════════════════════════════════ */

/* ═══════════ VARIABLES & BASE ═══════════ */
:root {
  --vp: #764ba2;
  --vb: #667eea;
  --vc: #c4b5fd;
  --g: linear-gradient(135deg, #764ba2, #667eea);
  --bg: #0a0a14;
  --bg2: #0f0e1a;
  --muted: rgba(255, 255, 255, .5);
  --border: rgba(255, 255, 255, .1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Syne', sans-serif;
  color: #fff;
  background: var(--bg);
  line-height: 1.75;
  overflow-x: hidden;
}

/* ═══════════ HEADER ═══════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 20, .75);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 24px;
}

.logo {
  flex-shrink: 0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: .18em;
  background: var(--g);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  background: var(--g);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#imgLogo {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  margin-left: 0;
}

.header nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-size: .85rem;
  color: var(--muted);
}

.header nav a {
  color: inherit;
  text-decoration: none;
  transition: color .15s;
}

.header nav a:hover {
  color: #fff;
}

#lang-buttons {
  display: flex;
  gap: 6px;
  border-left: 1px solid rgba(255, 255, 255, .1);
  padding-left: 16px;
  margin-left: 8px;
}

.lang-btn {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .55);
  font-size: .72rem;
  padding: 5px 9px;
  border-radius: 6px;
  cursor: pointer;
  font-family: 'DM Mono', monospace;
  transition: all .15s;
}

.lang-btn.active,
.lang-btn:hover {
  background: rgba(167, 139, 250, .2);
  border-color: rgba(167, 139, 250, .4);
  color: var(--vc);
}

.hamburger-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}

@media (max-width: 760px) {
  .hamburger-btn {
    display: block;
  }

  .header nav {
    display: none;
    position: absolute;
    top: 57px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 20, .97);
    backdrop-filter: blur(14px);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .header nav.nav-open {
    display: flex;
  }

  #lang-buttons {
    border-left: none;
    padding-left: 0;
    margin-left: 0;
    flex-wrap: wrap;
  }
}

/* ═══════════ CONTAINER ═══════════ */
.container {
  max-width: 860px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

/* ═══════════ CONTENT CARD ═══════════ */
.lang-section {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 20px;
  padding: 48px;
}

h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: .03em;
  line-height: 1.05;
}

h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--vc);
  margin: 2rem 0 .75rem;
  letter-spacing: .03em;
  line-height: 1.05;
}

h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .85);
  margin: 1.4rem 0 .5rem;
}

p {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, .75);
  font-size: .95rem;
  line-height: 1.8;
}

ul {
  margin-left: 1.4rem;
  margin-bottom: 1rem;
}

li {
  margin-bottom: .5rem;
  color: rgba(255, 255, 255, .7);
  font-size: .95rem;
  line-height: 1.7;
}

strong {
  color: #fff;
  font-weight: 700;
}

.date {
  font-family: 'DM Mono', monospace;
  font-size: .78rem;
  color: var(--muted);
  margin-bottom: 2rem;
  font-style: normal;
}

/* ═══════════ BACK LINK ═══════════ */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--g);
  color: #fff;
  padding: 12px 28px;
  border-radius: 99px;
  text-decoration: none;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  margin-top: 32px;
  box-shadow: 0 8px 30px rgba(118, 75, 162, .4);
  transition: transform .15s, box-shadow .15s;
}

.back-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(118, 75, 162, .55);
}

/* ═══════════ FOOTER ═══════════ */
footer.footer {
  padding: 48px 0;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.footer-content {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: .16em;
  color: rgba(255, 255, 255, .4);
}

.footer-links {
  display: flex;
  gap: 24px;
  font-size: .82rem;
  color: var(--muted);
}

.footer-links a {
  color: inherit;
  text-decoration: none;
  transition: color .15s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  color: rgba(255, 255, 255, .4);
  transition: color .15s;
}

.footer-social a:hover {
  color: #fff;
}

.footer-copy {
  font-family: 'DM Mono', monospace;
  font-size: .75rem;
  color: var(--muted);
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 768px) {
  .container {
    padding: 32px 16px 60px;
  }

  .lang-section {
    padding: 28px 20px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  .lang-section {
    padding: 20px 16px;
  }
}


/* ═══════════════════════════════════════════════════════════
   ANCIEN STYLE (conservé) — remplacé par le style dark ci-dessus
════════════════════════════════════════════════════════════ */
/*

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif; color: #333; background: #f8f9fa; line-height: 1.8; }
.header { background: rgba(255, 255, 255, 0.95); padding: 1.5rem 2rem; box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1); display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 1000; }
nav { display: flex; gap: 2rem; align-items: center; }
nav a { color: black; text-decoration: none; font-weight: 600; font-size: 1rem; transition: all 0.3s; position: relative; }
nav a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 3px; background: #e63848; transition: width 0.3s; border-radius: 10px; }
nav a:hover::after { width: 100%; }
.lang-btn { background: rgba(255, 255, 255, 0.2); color: black; border: none; padding: 0.4rem 0.8rem; border-radius: 8px; cursor: pointer; font-weight: 600; transition: all 0.3s; }
#lang-buttons { display: flex; gap: 0.5rem; border-left: 2px solid rgba(0, 0, 0, 0.3); padding-left: 1.5rem; margin-left: 1rem; }
.lang-btn:hover, .lang-btn.active { background: #e63848; }
.logo { font-size: 2rem; font-weight: 800; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: pulse 2s ease-in-out infinite; }
.logo a { text-decoration: none; }
#imgLogo { height: 40px; vertical-align: middle; margin-left: 10px; }
.container { max-width: 1000px; margin: 0 auto; padding: 3rem 2rem; }
.lang-section { background: white; padding: 3rem; border-radius: 20px; box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1); }
h1 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: clamp(1.8rem, 4vw, 3rem); color: #0063a3; margin-bottom: 1rem; letter-spacing: 0.5px; }
h2 { font-family: 'Bangers', cursive; font-size: 2rem; color: #e63848; margin: 2rem 0 1rem; letter-spacing: 1px; }
h3 { font-size: 1.3rem; color: #0063a3; margin: 1.5rem 0 0.75rem; font-weight: 800; }
p { margin-bottom: 1rem; }
ul { margin-left: 2rem; margin-bottom: 1rem; }
li { margin-bottom: 0.5rem; color: #555; }
.date { font-style: italic; color: #888; margin-bottom: 2rem; }
.back-link { display: inline-block; background: #0063a3; color: white; padding: 1rem 2rem; border-radius: 25px; text-decoration: none; font-weight: 700; margin-top: 2rem; transition: all 0.3s; }
.back-link:hover { background: #e63848; transform: translateY(-3px); }
.footer { background: linear-gradient(135deg, #4a7fd6 0%, #5e8eea 100%); color: #fff; padding: 3rem 2rem; text-align: center; }
.footer-content { max-width: 1200px; margin: 0 auto; }
.footer-links { display: flex; justify-content: center; gap: 2rem; margin-bottom: 2rem; flex-wrap: wrap; }
.footer-links a { color: white; text-decoration: none; transition: color 0.3s; }
.hamburger-btn { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: #764ba2; padding: 0.3rem 0.5rem; line-height: 1; border-radius: 8px; transition: background 0.2s; }
.hamburger-btn:hover { background: rgba(118, 75, 162, 0.1); }
@keyframes pulse { 0% { transform: scale(1); filter: brightness(1); } 50% { transform: scale(1.08); filter: brightness(1.2); } 100% { transform: scale(1); filter: brightness(1); } }

*/