
  .modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    font-family: 'Comic Sans MS', 'Outfit', cursive;
  }

  .modal-content {
    background: #fff7f9;
    padding: 30px;
    border-radius: 22px;
    text-align: center;
    width: 90%;
    max-width: 420px;
    box-shadow: 0 0 25px rgba(255, 192, 203, 0.6);
    border: 3px dashed #ff99c8;
    position: relative;
    animation: popBounce 0.4s ease-in-out;
  }

  .emoji {
    font-size: 38px;
    margin-bottom: 10px;
  }

  .modal-content h3 {
    font-size: 24px;
    color: #ff69b4;
    margin-bottom: 10px;
  }

  .modal-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
  }

  .modal-content input {
    padding: 12px;
    width: 90%;
    border: 2px solid #ffb6c1;
    border-radius: 12px;
    font-size: 16px;
    outline: none;
    background-color: #fff;
    transition: border-color 0.3s ease;
  }

  .modal-content input:focus {
    border-color: #ff69b4;
  }

  .modal-content button {
    margin-top: 12px;
    padding: 10px 22px;
    background: linear-gradient(135deg, #ff69b4, #ffa4c9);
    color: #fff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.4);
    transition: transform 0.2s ease;
  }

  .modal-content button:hover {
    transform: scale(1.08);
  }

  .wiggle {
    display: inline-block;
    animation: wiggle 1.5s infinite ease-in-out;
  }

  @keyframes popBounce {
    0% {
      transform: scale(0.6);
      opacity: 0;
    }
    70% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }

  @keyframes wiggle {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
  }
