:root {
  color: #2b1735;
  background: linear-gradient(135deg, #fff0f6, #eee7ff 50%, #e3fbff);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
}

.page {
  display: grid;
  min-height: 100vh;
  padding: 2rem;
  place-items: center;
}

.card {
  background: rgba(255, 255, 255, 0.86);
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 2rem;
  box-shadow: 0 24px 80px rgba(113, 67, 140, 0.18);
  max-width: 760px;
  padding: clamp(2rem, 6vw, 4.5rem);
  position: relative;
  text-align: center;
}

.card::before,
.card::after {
  content: "♡";
  color: #ff69a6;
  font-size: 4rem;
  position: absolute;
}

.card::before {
  left: 1.2rem;
  top: 0.7rem;
  transform: rotate(-15deg);
}

.card::after {
  bottom: 0.5rem;
  right: 1.4rem;
  transform: rotate(18deg);
}

.eyebrow {
  color: #b83280;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.4rem, 8vw, 5rem);
  line-height: 1;
  margin: 0 0 1rem;
}

.message,
.reply {
  color: #65516d;
  font-size: 1.15rem;
  line-height: 1.7;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-top: 1.5rem;
}

button {
  background: #2b1735;
  border: 0;
  border-radius: 999px;
  color: white;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  padding: 0.9rem 1.2rem;
}

button:hover {
  transform: translateY(-2px);
}

#maybe-button {
  background: #ff69a6;
}

.reply {
  font-weight: 800;
  min-height: 2rem;
}

.bounce {
  animation: bounce 600ms ease;
}

@keyframes bounce {
  50% {
    transform: scale(1.03) rotate(-1deg);
  }
}
