body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: url('https://i.ibb.co/K6g8FjG/love-bg.jpg') no-repeat center center/cover;
    overflow-x: hidden;
    position: relative;
  }

  .overlay {
    background: rgba(255, 255, 255, 0.8);
    min-height: 100vh;
    padding: 40px 20px;
  }

  .love-box {
    max-width: 850px;
    margin: auto;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(255, 0, 102, 0.2);
    position: relative;
    animation: fadeInUp 1.5s ease-out forwards;
  }

  h1 {
    font-family: 'love', cursive;
    font-size: 3rem;
    color: #d63384;
    text-align: center;
    margin-bottom: 20px;
    animation: fadeIn 2s ease;
  }

  p {
    font-size: 1.1rem;
    line-height: 1.9;
    white-space: pre-line;
    color: #333;
    animation: fadeInUp 2s ease-in-out;
  }

  p1 {
    font-family: 'love', cursive;
    font-size: 3rem;
    color: #d63384;
    font-weight: bold;
    animation: fadeInUp 2s ease-in-out;
    text-align: center ;
  }

  .emoji-rain {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
  }

  .emoji {
    position: absolute;
    font-size: 2rem;
    animation: float 10s linear infinite;
  }

  @keyframes float {
    0% {
      transform: translateY(-100vh) rotate(0deg);
      opacity: 1;
    }
    100% {
      transform: translateY(100vh) rotate(360deg);
      opacity: 0;
    }
  }

  @keyframes fadeInUp {
    0% { transform: translateY(30px); opacity: 0 }
    100% { transform: translateY(0); opacity: 1 }
  }

  @keyframes fadeIn {
    0% { opacity: 0 }
    100% { opacity: 1 }
  }

  .btns {
    text-align: center;
    margin-top: 30px;
  }

  .btns button {
    background: linear-gradient(to right, #ff416c, #ff4b2b);
    border: none;
    padding: 12px 25px;
    margin: 10px;
    color: white;
    font-size: 1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 5px 10px rgba(255, 65, 108, 0.3);
  }

  .btns button:hover {
    transform: scale(1.05);
    background: linear-gradient(to right, #ff4b2b, #ff416c);
  }

  audio {
    display: none;
  }
