  body {
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom right, #ffc0cb, #ffe4e1);
    font-family: 'Segoe UI', sans-serif;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
    height: 100vh;
  }
  .container {
    max-width: 800px;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-top: 60px;
    text-align: center;
    position: relative;
    z-index: 10;
  }
  h1 {
    color: #d6336c;
    font-size: 3em;
    margin-bottom: 10px;
  }
  p {
    font-size: 1.2em;
    line-height: 1.8em;
    white-space: pre-line;
    text-align: justify;
    margin-top: 30px;
  }
  .question-container {
    margin-top: 40px;
  }
  .question-text {
    font-size: 1.4em;
    color: #d6336c;
    margin-bottom: 20px;
  }
  button {
    background-color: #d6336c;
    color: white;
    border: none;
    padding: 12px 30px;
    margin: 0 15px;
    font-size: 1.1em;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 8px rgba(214, 51, 108, 0.3);
  }
  button:hover {
    background-color: #a52950;
  }
  footer {
    margin: 40px 0;
    font-size: 0.9em;
    color: #888;
  }
  /* Hearts styling */
  .heart {
    position: fixed;
    font-size: 24px;
    color: #ff69b4;
    animation: floatUp 4s ease forwards;
    user-select: none;
    pointer-events: none;
    opacity: 0.9;
  }
  @keyframes floatUp {
    0% {
      transform: translateY(0) scale(1);
      opacity: 1;
    }
    80% {
      opacity: 1;
      transform: translateY(-200px) scale(1.2);
    }
    100% {
      transform: translateY(-250px) scale(0);
      opacity: 0;
    }
  }

  /* Heart explode */
  .explode {
    animation: explodeAnim 0.5s forwards;
  }
  @keyframes explodeAnim {
    0% {
      transform: scale(1);
      opacity: 1;
    }
    100% {
      transform: scale(3);
      opacity: 0;
    }
  }

  /* Text phrases */
  #phrases {
    margin-top: 40px;
    font-size: 1.8em;
    font-weight: 600;
    color: #d6336c;
    height: 50px;
    min-height: 50px;
  }