 .body {
      font-family: "Poppins", sans-serif;
      margin: 0;
      padding: 0;
      background-color: #f4f4f4;
    }

    .header {
      position: relative;
      text-align: center;
      color: white;
    }

    .header h1 {
      font-size: 3em;
      margin-top: 20px;
    }

    .header p {
      font-size: 1.2em;
      margin-bottom: 20px;
    }

    .background-video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
    }

    .blog-container {
      padding: 10px 100px;
      background-color: #083d77;
    }
    .blog-article {
      color: #fff;
      display: flex;
      align-items: flex-start; 
      gap: 20px; 
    }

    .article-image {
      width: 150px; 
      height: auto; 
      border-radius: 10px; 
    }
    .article-content {
      flex: 1; 
      display: flex;
      flex-direction: column; 
      justify-content: flex-start; 
      align-items: flex-start; 
    }

    .blog-container {
      padding-bottom: 200px;
    }

    .article-content p {
      text-align: left;
    }

    .blog-container h1 {
      font-size: 3vw;
      color: #fff;
      padding-top: 10px;
      margin: 0; 
    }

    .blog-container p {
      color: white;
      margin-top: 15px;
      margin-bottom: 15px;
    }
    
    .article-image {
      display: block;
      margin: 20px auto; 
      max-width: 100%; 
      cursor: pointer; 
    }
    .illustrations .article-image:hover {
      transform: scale(1.1);
    }

    .illustrations {
      display: flex; 
      gap: 10px; 
      justify-content: center; 
      align-items: center; 
    }

    .illustrations img {
      height: 150px; 
      width: auto; 
      object-fit: cover;
      border-radius: 5px; 
    }

    .read-more-btn {
      width: 30px; 
      height: 30px; 
      border-radius: 50%; 
      display: flex;
      justify-content: center; 
      align-items: center; 
      background-color: #ffffff; 
      color: rgb(0, 0, 0); 
      border: none; 
      cursor: pointer; 
      font-size: 16px; 
      margin: 10px auto; 
    }
    .read-more-btn:hover {
      transform: scale(1.1);
    }
    /* Styles de la modale */
    .image-modal {
      display: none; 
      position: fixed;
      z-index: 10;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto; 
      background-color: rgba(0, 0, 0, 0.8); 
    }

    .modal-content {
      display: block;
      margin: auto;
      max-width: 90%; 
      max-height: 90%;
    }

    .simulateur-section {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      padding: 10px 100px;
      gap: 40px;
      color: white;
      background: #c9c9c9;
      margin: 0 auto 200px auto;
      margin-bottom: 10px;
      position: relative;
    }

    .simulateur-row {
      display: flex;
      gap: 40px;
      width: 100%;
      align-items: flex-start;
    }

    .simulateur-image img {
      width: 380px;
      max-width: 40vw;
      border-radius: 18px;
      object-fit: cover;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
      display: block;
    }

    .simulateur-content {
      flex: 1;
      position: relative;
      padding-top: 20px;
    }

    .simu2 {
      width: 100%;
      display: flex;
      justify-content: center;
      margin-top: 30px;
    }

    .simu2 img {
      width: 380px;
      max-width: 40vw;
      border-radius: 18px;
      object-fit: cover;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
    }

    .simulateur-content h1 {
      margin-top: 0;
      font-size: 2.5rem;
      color: #fff;
    }

    .simulateur-content p {
      font-size: 1.2rem;
      color: white;
      margin-top: 18px;
    }

    .simulateur-emoji {
      position: absolute;
      top: 0;
      right: 0;
      font-size: 4rem;
      transform: rotate(-18deg);
      user-select: none;
      pointer-events: none;
    }

    .logoSport {
      position: relative;
      display: block;
      margin: 1rem auto;
      width: 20%;
      height: auto;
    }


    /* ==========================================
   MEDIA QUERIES POUR TABLETTES (768px - 1024px)
   ========================================== */

@media (max-width: 1024px) {
  .blog-container {
    padding: 10px 50px;
  }
  
  .simulateur-section {
    padding: 10px 50px;
  }
  
  .header h1 {
    font-size: 2.5em;
  }
  
  .blog-container h1 {
    font-size: 4vw;
  }
}

@media (max-width: 900px) {
  
  .simulateur-section {
    flex-direction: column;
    align-items: center;
    padding: 24px 2vw;
  }
  
  .simulateur-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .simulateur-image img {
    width: 90vw;
    max-width: 95vw;
    margin-bottom: 20px;
  }
  
  .simulateur-content {
    width: 100%;
    padding-top: 40px;
    text-align: center;
  }
  
  .simulateur-emoji {
    right: 10px;
    top: 10px;
  }
}

/* ==========================================
   MEDIA QUERIES POUR TABLETTES (768px et moins)
   ========================================== */

@media (max-width: 768px) {
  .blog-container {
    padding: 10px 30px;
  }
  
  .simulateur-section {
    padding: 20px 30px;
    gap: 30px;
  }
  
  .header h1 {
    font-size: 2.2em;
    margin-top: 15px;
  }
  
  .header p {
    font-size: 1.1em;
    margin-bottom: 15px;
    padding: 0 20px;
  }
  
  .blog-container h1 {
    font-size: 5vw;
  }
  
  .blog-article {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }
  
  .article-image {
    width: 200px;
    margin: 0 auto 15px auto;
  }
  
  .article-content {
    align-items: center;
    text-align: center;
  }
  
  .article-content h2 {
    font-size: 1.5em;
  }
  
  .illustrations {
    flex-direction: column;
    gap: 15px;
  }
  
  .illustrations img {
    height: auto;
    width: 80%;
    max-width: 300px;
  }
  
  .simulateur-content h1 {
    font-size: 2rem;
    text-align: center;
  }
  
  .simulateur-content p {
    font-size: 1.1em;
    text-align: center;
  }
  
  .logoSport {
    width: 30%;
  }
}

/* ==========================================
   MEDIA QUERIES POUR MOBILES (480px et moins)
   ========================================== */

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }
  
  .blog-container {
    padding: 10px 15px;
  }
  
  .simulateur-section {
    padding: 20px 15px;
    gap: 25px;
    margin-bottom: 20px;
  }
  
  .header h1 {
    font-size: 1.8em;
    margin-top: 10px;
  }
  
  .header p {
    font-size: 0.9em;
    margin-bottom: 10px;
    padding: 0 15px;
  }
  
  .blog-container h1 {
    font-size: 6vw;
    padding-top: 100px;
  }
  
  .title-section p {
    font-size: 0.9em;
    line-height: 1.5;
  }
  
  .blog-article {
    margin-bottom: 30px;
  }
  
  .article-image {
    width: 150px;
  }
  
  .article-content h2 {
    font-size: 1.3em;
    margin-bottom: 10px;
  }
  
  .article-content p {
    font-size: 0.9em;
    line-height: 1.4;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  
  .read-more-btn {
    width: 35px;
    height: 35px;
    font-size: 18px;
    margin: 15px auto;
  }
  
  .illustrations {
    gap: 10px;
  }
  
  .illustrations img {
    width: 90%;
    max-width: 250px;
    height: auto;
  }
  
  .simulateur-content h1 {
    font-size: 1.7rem;
  }
  
  .simulateur-content p {
    font-size: 0.9em;
    line-height: 1.5;
  }
  
  .simulateur-emoji {
    font-size: 3rem;
    right: 5px;
    top: 5px;
  }
  
  .simu2 img {
    width: 90vw;
    max-width: 350px;
  }
  
  .logoSport {
    width: 40%;
  }
  
  
  .background-video {
    height: 100vh;
    object-position: center;
  }
}

/* ==========================================
   MEDIA QUERIES POUR TRÈS PETITS ÉCRANS (360px et moins)
   ========================================== */

@media (max-width: 360px) {
  .blog-container {
    padding: 8px 12px;
  }
  
  .simulateur-section {
    padding: 15px 12px;
    gap: 20px;
  }
  
  .header h1 {
    font-size: 1.6em;
  }
  
  .header p {
    font-size: 0.9em;
    padding: 0 10px;
  }
  
  .blog-container h1 {
    font-size: 7vw;
    margin-top: 20px;
  }
  
  .article-image {
    width: 120px;
  }
  
  .article-content h2 {
    font-size: 1.2em;
  }
  
  .article-content p {
    font-size: 0.9em;
  }
  
  .read-more-btn {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
  
  .simulateur-content h1 {
    font-size: 1.5rem;
  }
  
  .simulateur-content p {
    font-size: 0.9rem;
  }
  
  .simulateur-emoji {
    font-size: 2.5rem;
  }
  
  .logoSport {
    width: 45%;
  }
}

/* ==========================================
   AMÉLIORATIONS GÉNÉRALES POUR MOBILE
   ========================================== */

@media (max-width: 768px) {
  
  .article-content p {
    text-align: justify;
    hyphens: auto;
  }
  
  
  .read-more-btn {
    margin: 20px auto;
    touch-action: manipulation;
  }
  
  
  .article-image {
    cursor: pointer;
    transition: transform 0.2s ease;
  }
  
  .article-image:active {
    transform: scale(0.95);
  }
  
  
  .image-modal {
    padding: 20px;
  }
  
  .modal-content {
    max-width: 95%;
    max-height: 85%;
  }
  
  
  .full-content p {
    text-align: justify;
    line-height: 1.6;
  }
}

/* ==========================================
   MEDIA QUERIES LANDSCAPE POUR MOBILES
   ========================================== */

@media (max-width: 768px) and (orientation: landscape) {
  .header h1 {
    font-size: 2em;
    margin-top: 5px;
  }
  
  .header p {
    font-size: 1em;
    margin-bottom: 5px;
  }
  
  .blog-container {
    padding: 10px 20px;
  }
  
  .simulateur-section {
    padding: 15px 20px;
  }
  
  .simulateur-row {
    flex-direction: row;
    align-items: center;
  }
  
  .simulateur-image img {
    width: 300px;
    max-width: 45vw;
  }
}

/* ==========================================
   OPTIMISATIONS POUR LA PERFORMANCE MOBILE
   ========================================== */

@media (max-width: 768px) {
  
  .illustrations .article-image:hover {
    transform: none;
  }
  
  .read-more-btn:hover {
    transform: none;
  }
  
  * {
    -webkit-tap-highlight-color: transparent;
  }
  
  html {
    -webkit-overflow-scrolling: touch;
  }
}