body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f9e3e3;
    font-family: 'Arial', sans-serif;
    flex-direction: column;
  }

  .container {
    text-align: center;
  }

  h1 {
    font-size: 2.5em;
    color: #d32f2f;
  }

  .buttons {
    margin-top: 20px;
  }

  .yes-button {
    font-size: 1.5em;
    padding: 10px 20px;
    margin-right: 10px;
    background-color: #4caf50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }

  .no-button {
    font-size: 1.5em;
    padding: 10px 20px;
    background-color: #f44336;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }

  .gif_container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 20px;
  }

  .popup-content {
    background: #fff;
    color: #d63384;
    padding: 40px;
    border-radius: 20px;
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 0 50px #d63384;
    animation: popScale 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Animations utilitaires */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes popScale { 0% { transform: scale(0); } 100% { transform: scale(1); } }