* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
  }
  /* #b3040acd */
  body {
    height: 100vh;
    background: linear-gradient(135deg, #b3040ab1, #a09f9f);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
  
  .container {
    background: white;
    padding: 40px 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    animation: pop 0.8s ease;
  }
  
  h1 {
    color: #f3103a;
    margin-bottom: 15px;
  }
  
  p {
    font-size: 20px;
    margin-bottom: 30px;
  }
  
  .buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  button {
    padding: 12px 25px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  #yesBtn {
    background: #f3103a;
    color: white;
  }
  
  #yesBtn:hover {
    transform: scale(1.1);
  }
  
  #noBtn {
    background: #ddd;
  }
  
  /* Floating hearts */
  .heart {
    position: absolute;
    bottom: -20px;
    font-size: 46px;
    animation: floatUp 5s linear infinite;
  }
  
  @keyframes floatUp {
    0% {
      transform: translateY(0);
      opacity: 1;
    }
    100% {
      transform: translateY(-110vh);
      opacity: 0;
    }
  }
  
  @keyframes pop {
    from {
      transform: scale(0.7);
      opacity: 0;
    }
    to {
      transform: scale(1);
      opacity: 1;
    }
  }
  
   /* 📱 Mobile Responsive */
@media (max-width: 768px) {
  .container {
    width: 90%;
    padding: 35px 25px;
    border-radius: 18px;
  }

  h1 {
    font-size: 28px;
  }

  p {
    font-size: 20px;
    line-height: 1.4;
  }

  .buttons {
    flex-direction: column;
    gap: 15px;
  }

  button {
    width: 100%;
    font-size: 18px;
    padding: 16px;
  }
}

/* 📱 Extra small phones */
@media (max-width: 420px) {
  h1 {
    font-size: 24px;
  }

  p {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .heart {
    font-size: 30px;
  }
}
  