*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: radial-gradient(circle at top, #ffe8f0, #fff6f9 60%, #fff);
  color: #2b1b22;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 20px;
}

.card {
  width: min(560px, 100%);
  padding: 12px 4px;
  text-align: center;
  position: relative;
}

.photo {
  width: min(520px, 100%);
  height: auto;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(60, 30, 40, 0.18);
  margin: 6px auto 16px;
  display: block;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  margin: 0 0 12px;
  color: #c04d73;
}

h1 {
  margin: 0 0 12px;
  font-size: clamp(26px, 5vw, 34px);
}

.subline {
  margin: 0 0 28px;
  color: #5a3642;
  font-size: 16px;
  line-height: 1.5;
}

.buttons {
  position: relative;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 16px 34px;
  font-size: 18px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn.yes {
  background: #ff5c8a;
  color: #fff;
  box-shadow: 0 10px 24px rgba(255, 92, 138, 0.35);
  animation: yes-glow 2.4s ease-in-out infinite;
}

.btn.yes:hover {
  box-shadow: 0 12px 28px rgba(255, 92, 138, 0.45);
}

@keyframes yes-glow {
  0%,
  100% {
    box-shadow:
      0 10px 24px rgba(255, 92, 138, 0.35),
      0 0 0 rgba(255, 92, 138, 0);
  }
  50% {
    box-shadow:
      0 14px 32px rgba(255, 92, 138, 0.5),
      0 0 26px rgba(255, 92, 138, 0.55);
  }
}

.btn.no {
  background: #f1f1f1;
  color: #5a3642;
  box-shadow: 0 8px 16px rgba(60, 30, 40, 0.12);
}

.btn.no.is-floating {
  position: fixed;
  left: 0;
  top: 0;
  transition: left 0.12s ease, top 0.12s ease;
  touch-action: none;
  z-index: 10;
}


