body {
    background-color: #f8c8dc;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: start;
    align-items: center;
    overflow: hidden !important;
  }
  html {
    overflow: hidden;
  }
  @import url("https://fonts.googleapis.com/css2?family=Love+Light&display=swap");
  @import url("https://fonts.googleapis.com/css2?family=Lovers+Quarrel&display=swap");
  * {
    box-sizing: border-box;
  }
  .headerText {
    font-weight: 700;
    font-size: 40px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    font-family: "Lovers Quarrel";
  }
  .image {
    object-fit: cover;
    mix-blend-mode: multiply;
    height: 400px;
    width: 400px;
  }
  
  .flex {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 10px;
  }
  .button {
    background-color: #ff4f99;
    border: none;
    color: rgb(0, 0, 0);
    padding: 10px 20px;
    text-align: center;
    padding: 20px 30px;
    border-radius: 20px;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
  }
  
  .button:hover {
    background-color: #ff71ac;
    color: white;
    transition: ease-in-out 0.3s;
  }
  
  .absImage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
  }
  .image1 {
    height: 40px;
    width: 40px;
    object-fit: cover;
    mix-blend-mode: multiply;
    position: absolute;
    animation: slideUp 1s ease-in-out;
  }
  
  @keyframes slideUp {
    0% {
      transform: translateY(100%);
    }
    100% {
      transform: translateY(0%);
    }
  }
  .model {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 1;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.5);
  }
  .audio {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 1;
  }
  
  .yesModel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  
  .model-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border-radius: 20px;
    width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }
  
  .modelText {
    font-weight: 700;
    font-size: 20px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    font-family: "Lovers Quarrel";
  }
  
  .modelImg {
    /* height: 200px; */
    max-height: 300px;
    width: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
  }
  
  .f-aps {
    position: absolute;
    bottom: 0;
    animation: slideUp 1s ease-in-out;
    
    padding: 20px;
  }
  .f-aps img {
    height: 40px;
    width: 40px;
    object-fit: cover;
  }

/* SweetAlert2 custom romantic styles */
.swal2-popup.custom-sweet {
  border-radius: 18px;
  padding: 2rem;
  width: 560px;
  background: linear-gradient(135deg, rgba(255,237,244,0.9), rgba(255,245,240,0.95));
  box-shadow: 0 10px 30px rgba(197,24,91,0.18), 0 4px 12px rgba(0,0,0,0.08);
  font-family: "Lovers Quarrel", serif;
  color: #3b062a;
  border: 1px solid rgba(255,80,140,0.08);
}
.swal2-popup.custom-sweet:before {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 72px;
  height: 72px;
  background-image: url('https://i.imgur.com/6YVYkQy.png');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.12;
  pointer-events: none;
}
.swal2-title {
  font-family: "Love Light", cursive;
  font-size: 30px;
  color: #ff2d6f;
  margin-bottom: 6px;
  text-shadow: 0 2px 6px rgba(255,45,111,0.12);
}
.swal2-html-container {
  font-size: 17px;
  color: #4a0f2c;
  line-height: 1.4;
}
.swal2-image {
  filter: drop-shadow(0 6px 18px rgba(197,24,91,0.18));
  border-radius: 12px;
}
.swal2-confirm {
  background: linear-gradient(90deg, #ff6f9a, #ff3b6b) !important;
  border: none !important;
  box-shadow: 0 6px 18px rgba(255,59,107,0.18) !important;
  color: #fff !important;
  padding: 10px 20px !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
}
.swal2-cancel {
  background: transparent !important;
  color: #ff3b6b !important;
  border: 2px solid rgba(255,59,107,0.12) !important;
  border-radius: 999px !important;
  padding: 8px 16px !important;
}

@keyframes heartPop {
  0% { transform: scale(0.9); opacity: 0.6 }
  60% { transform: scale(1.05); opacity: 1 }
  100% { transform: scale(1); opacity: 1 }
}
.swal2-popup.custom-sweet .swal2-image {
  animation: heartPop 420ms ease;
}
  
