:root {
  --bg: #fff0f5;
  --card: #ffffff;
  --accent: #ff4d6d;
  --text: #2a2a2a;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 600px at 50% -20%, #ffe3ec, var(--bg));
  color: var(--text);
  min-height: 100svh;
}

.wrap {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 20px;
}

.card {
  width: min(460px, 92vw);
  background: var(--card);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  padding: 18px 18px 22px;
  text-align: center;
}

.hero {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.q {
  margin: 14px 0 10px;
  font-size: 1.8rem;
}

.btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 6px;
}

button {
  appearance: none;
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 12px 22px;
  font-size: 1.05rem;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(255,77,109,.4);
  cursor: pointer;
  transition: transform .06s ease, opacity .2s ease, background .2s ease;
  touch-action: manipulation;
}
button:active { transform: scale(.96); }
button:disabled {
  opacity: .6;
  cursor: default;
  box-shadow: none;
}

/* Hearts overlay */
#hearts {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 9999;
}

.heart {
  position: fixed;
  bottom: -24px;
  font-size: 20px;
  color: #ff2e63;
  filter: drop-shadow(0 2px 2px rgba(0,0,0,.15));
  will-change: transform, opacity;
  animation-name: floatUp;
  animation-timing-function: ease-in;
}

@keyframes floatUp {
  0%   { transform: translateY(0) translateX(0) scale(.8); opacity: 0; }
  10%  { opacity: 1; }
  100% { transform: translateY(-115vh) translateX(var(--drift, 0px)) scale(1.6); opacity: 0; }
}
