
    /* --- Styles généraux --- */
    body {
      margin: 0;
      font-family: 'Roboto', sans-serif;
      background-color: #0d0d0d;
      color: #f2f2f2;
      line-height: 1.6;
    }

    /* --- Bannière --- */
    header {
      background-image: url(img/banner.jpg);
      background-size: cover;
      background-position: center;
      height: 60vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
      position: relative;
    }

    /* Superposition sombre pour lisibilité du texte */
    header::before {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.5);
    }

    /* Texte dans la bannière */
    .banner-content {
      position: relative;
      z-index: 1;
    }

    .banner-content h1 {
      font-family: 'Orbitron', sans-serif;
      font-size: 3rem;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .banner-content p {
      font-size: 1.2rem;
      color: #ccc;
    }

    /* --- Section principale --- */
    main {
      padding: 50px 10%;
      text-align: center;
    }

    main h2 {
      font-family: 'Orbitron', sans-serif;
      font-size: 2rem;
      margin-bottom: 20px;
    }

    .features {
      display: flex;
      flex-wrap: wrap;
      gap: 50px;
      margin-top: 40px;
    }

    .attacker{
      position: relative;
      background: rgb(108, 214, 108);
      border-radius: 15px;
      width: 250px;
      box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
      transition: transform 0.3s ease;

    }

    .attacker:hover {
      transform: scale(1.05);
    }

    .attacker img {
      width: 100%;
      border-radius: 10px;
    }
    .attacker h2 {
        position:absolute; 
        bottom: 10px;          /* distance depuis le bas */
        left: 50%;             /* centre horizontalement */
        transform: translateX(-50%);
        color: white;
        font-weight: bold;
        text-shadow: 0 0 10px rgba(0,0,0,0.8); /* pour le contraste */
        margin: 0;
        padding: 5px 10px;
        border-radius: 5px;
        pointer-events: none; /* le clic reste sur le lien */
}

    footer {
      background: #111;
      color: #888;
      text-align: center;
      padding: 20px;
      margin-top: 50px;
    }

    /* --- Responsive --- */
    @media (max-width: 768px) {
      header {
        height: 50vh;
      }

      .banner-content h1 {
        font-size: 2rem;
      }

      main {
        padding: 30px;
      }
      .features{
        flex-wrap: wrap;
      }

      .attacker {
        width: 100%;
      }
    }
