:root {
  --bg-1: #fff7fb;
  --bg-2: #f5efff;
  --card: rgba(255, 255, 255, .82);
  --text: #2f2438;
  --muted: #756a7d;
  --accent: #ff5f9e;
  --accent-2: #8d67ff;
  --danger: #bf355f;
  --shadow: 0 24px 70px rgba(77, 45, 97, .18);
  --radius: 28px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 164, 198, .34), transparent 34%),
    radial-gradient(circle at 85% 15%, rgba(142, 103, 255, .25), transparent 32%),
    linear-gradient(135deg, var(--bg-1), var(--bg-2));
}

body { min-height: 100vh; overflow-x: hidden; }
button, input { font: inherit; }

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  position: relative;
  isolation: isolate;
}

.blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(4px);
  opacity: .55;
  z-index: -2;
  animation: float 9s ease-in-out infinite;
}

.blob-one {
  width: 230px;
  height: 230px;
  left: -60px;
  top: 10%;
  background: #ffc2d8;
}

.blob-two {
  width: 280px;
  height: 280px;
  right: -90px;
  bottom: 5%;
  background: #c8b6ff;
  animation-delay: -3s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-18px) scale(1.04); }
}

.app {
  width: min(760px, 100%);
  min-height: 530px;
  padding: clamp(26px, 5vw, 58px);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: var(--radius);
  background: var(--card);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.progress {
  display: flex;
  gap: 8px;
  margin-bottom: 38px;
}

.progress span {
  height: 7px;
  flex: 1;
  border-radius: 999px;
  background: #eadff0;
  transition: .35s ease;
}

.progress span.active {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleY(1.15);
}

.step {
  display: none;
  opacity: 0;
  transform: translateY(18px) scale(.985);
}

.step.active {
  display: block;
  animation: enter .42s cubic-bezier(.2,.75,.25,1) forwards;
}

@keyframes enter {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #77545f;
  background: #fff0f5;
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 18px;
}

h1, h2 {
  margin: 0 0 14px;
  line-height: 1.05;
  letter-spacing: -.045em;
}

h1 { font-size: clamp(2.65rem, 8vw, 5.2rem); }
h2 { font-size: clamp(2.1rem, 6vw, 3.8rem); }

p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 1.06rem;
  margin: 0 0 30px;
}

.actions {
  min-height: 170px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: flex-start;
  position: relative;
}

.btn, .choice {
  border: 0;
  cursor: pointer;
  border-radius: 18px;
  font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  -webkit-tap-highlight-color: transparent;
}

.btn {
  padding: 16px 23px;
}

.btn:hover, .choice:hover { transform: translateY(-2px); }

.btn:disabled {
  opacity: .45;
  cursor: not-allowed;
  transform: none;
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 14px 35px rgba(190, 79, 154, .27);
}

.btn-secondary {
  color: var(--text);
  background: #f2eaf6;
}

#noBtn {
  position: absolute;
  left: 165px;
  top: 0;
  transition: left .13s ease, top .13s ease, transform .13s ease;
  touch-action: none;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 26px 0 32px;
}

.choice {
  min-height: 92px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--text);
  background: rgba(255,255,255,.88);
  border: 2px solid transparent;
  box-shadow: 0 10px 26px rgba(79, 52, 91, .08);
  padding: 14px;
}

.choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice.selected {
  border-color: #ff78aa;
  background: #fff2f7;
  box-shadow: 0 10px 30px rgba(255, 95, 158, .18);
  transform: translateY(-2px);
}

.emoji {
  display: block;
  font-size: 1.7rem;
  margin-bottom: 6px;
}

.footer-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.summary {
  display: grid;
  gap: 14px;
  margin: 28px 0 30px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,.8);
}

.summary-item span { color: var(--muted); }
.summary-item strong { text-align: right; }

.status {
  min-height: 25px;
  margin: 18px 0 0;
  font-size: .95rem;
}

.status.error { color: var(--danger); }

.success {
  text-align: center;
  padding: 34px 0 10px;
}

.success-icon {
  width: 82px;
  height: 82px;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  font-size: 2rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 16px 40px rgba(141, 103, 255, .25);
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.heart {
  position: fixed;
  z-index: -1;
  pointer-events: none;
  animation: heart-fall linear forwards;
}

@keyframes heart-fall {
  from { transform: translateY(-10vh) rotate(0); opacity: 0; }
  15% { opacity: .75; }
  to { transform: translateY(110vh) rotate(360deg); opacity: 0; }
}

@media (max-width: 640px) {
  .page { padding: 14px; }
  .app { min-height: 610px; padding: 26px 20px; border-radius: 23px; }
  .choice-grid { grid-template-columns: 1fr 1fr; }

  /* Mobil: mehr freie Fläche und Startposition oben rechts */
  .actions {
    min-height: 260px;
  }

  #noBtn {
    left: auto;
    right: 0;
    top: 0;
  }

  .summary-item { flex-direction: column; gap: 4px; }
  .summary-item strong { text-align: left; }
}

@media (max-width: 390px) {
  .choice-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}


.grill-icon {
  display:block;
  width:22px;
  height:22px;
  margin:0 auto 8px;
  color:#3a2d40;
}

.grill-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

