/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

/* FULL PAGE CENTER */
body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #ff9a9e, #fad0c4);
  padding: 20px;
}

/* MAIN CARD */
.love-card {
  width: 100%;
  max-width: 420px;
  background: white;
  border-radius: 25px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* GIF */
.love-card img {
  width: 180px;
  max-width: 100%;
  border-radius: 15px;
  margin-bottom: 20px;
}

/* TEXT */
.love-card h1 {
  font-size: 22px;
  color: #d6336c;
  margin-bottom: 10px;
}

.love-card p {
  font-size: 15px;
  color: #444;
  margin-bottom: 25px;
}

/* BUTTON WRAPPER */
.btn {
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* FORCE OVERRIDE BASE STYLES */
button#yesBtn,
button#noBtn {
  all: unset;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s ease;
}

/* YES BUTTON */
button#yesBtn {
  background: linear-gradient(45deg, #ff4b5c, #ff6b81);
  color: white;
  box-shadow: 0 12px 30px rgba(255,75,92,0.45);
}

button#yesBtn:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(255,75,92,0.6);
}

/* NO BUTTON */
button#noBtn {
  background: white;
  color: #333;
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

button#noBtn:hover {
  transform: translateY(-3px);
}

/* MOBILE */
@media (max-width: 480px) {
  .love-card {
    padding: 25px 18px;
    
  }

  .love-card img {
    width: 150px;
  }
}

/* Make card positioning reference */
.love-card {
  position: relative;
  overflow: hidden; /* prevents escape */
}

/* NO button absolute inside card */
#noBtn {
  position: absolute;
}