:root{
  --bg: #ffe6ef;          /* lekko różowe tło */
  --text: #2b2b2b;
  --card: rgba(255,255,255,.85);
  --shadow: 0 18px 50px rgba(0,0,0,.12);
  --yes: #2ecc71;
  --yes-hover: #25b863;
  --no: #e74c3c;
  --no-hover: #d63f31;
}

*{ box-sizing: border-box; }

body{
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(circle at top, #ffeef4, var(--bg));
  color: var(--text);
  min-height: 100vh;
  overflow: hidden; /* żeby uciekający przycisk nie robił scrolla */
}

.wrap{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 24px;
  text-align: center;
}

.question{
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.15;
  margin: 0;
  font-weight: 800;
}

/* PRZYCISKI OBOK SIEBIE + GAP 32px */
.buttons{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: nowrap;
  position: relative;
}

.btn{
  border: none;
  padding: 14px 22px;
  font-size: 18px;
  font-weight: 800;
  border-radius: 14px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
  transition: transform .12s ease, filter .12s ease, background .12s ease;
  user-select: none;
}

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

.btn-yes{
  background: var(--yes);
  color: white;
}
.btn-yes:hover{ background: var(--yes-hover); }

/* Ucieka po ekranie */
.btn-no{
  background: var(--no);
  color: white;
  position: relative;
  left: auto;
  top: auto;
  transform: none;

  /* PŁYNNE PRZESUWANIE */
  transition: left 220ms ease, top 220ms ease, background 120ms ease, transform 120ms ease;
  will-change: left, top;
}
.btn-no:hover{ background: var(--no-hover); }

/* MODAL */
.modal{
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,.35);
  padding: 18px;
  z-index: 999;
}

.hidden{ display: none; }

.modal__card{
  width: min(520px, 92vw);
  background: var(--card);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.modal__title{
  margin: 0 0 12px;
  font-size: 26px;
  font-weight: 900;
}

.modal__img{
  width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
}