* {
  box-sizing: border-box;
  font-family: "Poppins", system-ui, sans-serif;
}

body {
  margin: 0;
  height: 100vh;
  background: linear-gradient(
    135deg,
    #fde2e4,
    #e4c1f9,
    #d0f4de,
    #fcf6bd
  );
  background-size: 300% 300%;
  animation: gradientMove 12s ease infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Floating emoji layer */
.background-emojis {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.emoji {
  position: absolute;
  font-size: 24px;
  opacity: 0.25;
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  from { transform: translateY(110vh); }
  to   { transform: translateY(-10vh); }
}

.container {
  background: rgba(255, 255, 255, 0.95);
  padding: 44px;
  border-radius: 28px;
  text-align: center;
  width: 90%;
  max-width: 420px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
  z-index: 2;
}

h1 {
  font-size: 26px;
  margin-bottom: 36px;
  color: #6a4c93;
}

/* BUTTON AREA */
.buttons {
  position: relative;
  height: 140px;
}

/* SHARED BUTTON STYLES */
button {
  position: absolute;
  padding: 16px 34px;
  font-size: 18px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* YES BUTTON — ALWAYS VISIBLE */
#yesBtn {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: #ffd6e0;
  color: #6a4c93;
  box-shadow: 0 8px 20px rgba(255, 214, 224, 0.8);
  z-index: 2;
}

#yesBtn:hover {
  transform: translateY(-50%) scale(1.08);
}

/* NO BUTTON — STARTS SEPARATE */
#noBtn {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: #e9ecef;
  color: #6c757d;
  z-index: 1;
}

#message {
  margin-top: 30px;
  font-size: 20px;
  color: #6a4c93;
  animation: pop 0.5s ease;
}

@keyframes pop {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.signature {
  margin-top: 18px;
  font-size: 14px;
  color: #9a7bbd;
  opacity: 0.8;
}