* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Roboto', sans-serif;
    background-color: #1a0d2e; /* Violet profond */
    color: #e0e0e0;
    line-height: 1.6;
  }
  
  /* Navigation */
  .menu {
    display: flex;
    justify-content: center;
    background-color: #0d1b2a; /* Bleu nuit */
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 10;
  }
  .menu a {
    color: #00d4d4; /* Turquoise */
    text-decoration: none;
    padding: 10px 25px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    transition: color 0.3s ease, transform 0.3s ease;
  }
  .menu a:hover {
    color: #ff00ff; /* Rose néon */
    transform: scale(1.1);
  }
  
  /* Header */
  .header {
    background: linear-gradient(145deg, #2a1a5e, #00d4d4);
    padding: 60px 20px;
    text-align: center;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  }
  .glow-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5em;
    color: #ff00ff;
    text-shadow: 0 0 15px rgba(255, 0, 255, 0.8);
    animation: glow 2s infinite alternate;
  }
  @keyframes glow {
    from { text-shadow: 0 0 10px rgba(255, 0, 255, 0.5); }
    to { text-shadow: 0 0 20px rgba(255, 0, 255, 1); }
  }
  
  /* Section Contenu Sécurité */
  .security-content {
    padding: 80px 20px;
    max-width: 1000px;
    margin: 0 auto;
    background-color: #0d1b2a;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 212, 212, 0.3);
  }
  .section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2em;
    color: #00d4d4;
    margin-bottom: 20px;
    text-shadow: 0 0 8px rgba(0, 212, 212, 0.5);
  }
  .security-content p {
    font-size: 1.1em;
    margin-bottom: 20px;
  }
  .security-content a {
    color: #ff00ff;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .security-content a:hover {
    color: #cc00cc;
  }
  
  /* Footer */
  .footer {
    background-color: #0d1b2a;
    padding: 30px;
    text-align: center;
  }
  .footer-links a {
    margin: 0 20px;
  }
  .footer-links img {
    width: 40px;
    transition: transform 0.3s ease;
  }
  .footer-links a:hover img {
    transform: scale(1.2);
  }
  .legal-links {
    margin-top: 15px;
  }
  .legal-links a {
    color: #00d4d4;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s ease;
  }
  .legal-links a:hover {
    color: #ff00ff;
  }
  .footer p {
    margin-top: 15px;
    font-size: 0.9em;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .header {
      padding: 40px 20px;
    }
    .glow-text {
      font-size: 2.5em;
    }
    .security-content {
      padding: 40px 15px;
    }
  }