* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(circle at top, #ffe3ef, #fff);
  color: #1a1a1a;
}

.wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
  gap: 14px;
}

.title { font-size: clamp(28px, 4vw, 44px); margin: 0; }
.subtitle { margin: 0; opacity: .8; }

.buttons {
  position: relative;
  width: min(520px, 92vw);
  height: 160px;
  display: grid;
  place-items: center;
  gap: 12px;
}

.btn {
  padding: 14px 24px;
  border: 0;
  border-radius: 14px;
  font-size: 18px;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
  box-shadow: 0 10px 20px rgba(0,0,0,.08);
  user-select: none;
}

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

.yes { background: #ff4d87; color: white; }
.yes:hover { transform: translateY(-2px); }

.no {
  background: #111;
  color: white;
  position: absolute;   /* важно для "убегания" */
  left: 60%;
  top: 55%;
}

.photos{
  width: min(900px, 95vw);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 10px;
}

.photos img{
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(0,0,0,.12);
}

.back{
  margin-top: 10px;
  display: inline-block;
  text-decoration: none;
  color: #ff4d87;
  font-weight: 600;
}
@media (max-width: 700px){
  .photos{ grid-template-columns: 1fr; }
  .photos img{ height: 320px; }
}
