/* 1. STYLES GÉNÉRAUX */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    line-height: 1.8;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* 2. EFFET DE FOND LUMINEUX SUBTIL */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(0, 224, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(0, 150, 255, 0.03) 0%, transparent 50%);
    animation: subtle-glow-movement 20s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes subtle-glow-movement {
    0%, 100% {
        transform: translateX(0) translateY(0);
        opacity: 0.6;
    }
    50% {
        transform: translateX(20px) translateY(-10px);
        opacity: 1;
    }
}

/* 3. CONTENEUR PRINCIPAL */
.privacy-policy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
    position: relative;
    z-index: 1;
}

/* 4. EN-TÊTE DE LA PAGE */
.privacy-header {
    text-align: center;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.privacy-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.header-icon-wrapper {
    display: inline-block;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 224, 255, 0.2) 0%, rgba(0, 150, 255, 0.1) 100%);
    border: 2px solid rgba(0, 224, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 224, 255, 0.2);
}

.header-icon-wrapper svg {
    filter: drop-shadow(0 0 10px rgba(0, 224, 255, 0.5));
}

.privacy-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #00E0FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 224, 255, 0.3);
}

.privacy-header p {
    font-size: 1.2rem;
    color: #c0c0c0;
    max-width: 600px;
    margin: 0 auto 25px;
    line-height: 1.7;
}

.last-updated {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 224, 255, 0.1);
    border: 1px solid rgba(0, 224, 255, 0.3);
    border-radius: 20px;
    color: #00E0FF;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

/* 5. SECTIONS DE CONTENU */
.content-section {
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.content-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.content-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 25px;
    position: relative;
    padding-left: 20px;
}

.content-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: linear-gradient(to bottom, #00E0FF, #0099CC);
    border-radius: 2px;
}

.content-section p {
    font-size: 1.1rem;
    color: #d0d0d0;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* 6. BOÎTE EN EXERGUE */
.highlight-box {
    background: linear-gradient(135deg, rgba(0, 110, 150, 0.15) 0%, rgba(0, 80, 120, 0.1) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 224, 255, 0.3);
    border-left: 4px solid #00E0FF;
    border-radius: 15px;
    padding: 40px 35px;
    margin: 50px 0;
    position: relative;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: all 1s ease;
}

.highlight-box.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}
/* === FIX MOBILE : éviter le débordement horizontal === */
@media (max-width: 600px) {

  /* Réduire la taille des titres pour qu’ils ne débordent pas */
  .privacy-header h1 {
    font-size: 2rem;        /* passe de 3rem à 2rem */
    line-height: 1.3;
    padding: 0 0.5rem;      /* petite marge intérieure */
  }

  /* Réduire l’écart horizontal du container */
  .privacy-policy-container {
    padding: 40px 10px;     /* moins de padding sur les côtés */
  }

  /* Sections de contenu */
  .content-section {
    padding: 0 0.5rem;      
  }

  /* Boîte en exergue */
  .highlight-box {
    padding: 20px 15px;     /* moins de padding pour ne pas élargir */
    margin: 40px 0;
  }

  /* Textes un peu plus petits pour tenir dans l’écran */
  .content-section h2 {
    font-size: 1.6rem;     
  }
  .content-section p,
  .simple-list li {
    font-size: 1rem;       
  }

  /* Icône SVG de header : réduire un peu */
  .header-icon-wrapper {
    width: 60px;
    height: 60px;
  }

  /* Si tu as encore un débordement, outline pour debug */
  /* * { outline: 1px solid rgba(255,0,0,0.2); } */

}

/* Le reste des styles (highlight-icon, listes, liens, contacts, responsivité) reste inchangé */
