  /* Style pour le modal publicitaire */
  .pub-modal .modal-content {
    border-radius: 8px;
    border: none;
    overflow: hidden;
    background-color: transparent;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }

  /* Supprimer le padding par défaut */
  .pub-modal .modal-body {
    padding: 0;
    position: relative;
  }

  /* Style pour la croix de fermeture */
  .close-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 100;
    border: none;
  }

  /* Icône plus grande sur mobile */
  @media (max-width: 767px) {
    .close-icon {
      width: 40px;
      height: 40px;
      top: 20px;
      right: 20px;
    }

    .close-icon svg {
      width: 20px;
      height: 20px;
    }
  }

  .close-icon:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
  }

  /* Animation d'entrée */
  @keyframes fadeInScale {
    from {
      opacity: 0;
      transform: scale(0.9);
    }

    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  .pub-modal .modal-dialog {
    animation: fadeInScale 0.3s ease-out;
    margin: 0.5rem auto;
    width: 50vw;
    max-width: 50vw;
  }

  /* Adaptation pour petits écrans */
  @media (max-width: 767px) {
    .pub-modal .modal-dialog {
      margin: 0.25rem auto;
      max-width: 98%;
      width: 98%;
    }

    .pub-modal .modal-content {
      border-radius: 4px;
    }
  }