:root{
  --bg:#0b0b10;
  --card: rgba(255,255,255,.08);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.72);
  --stroke: rgba(255,255,255,.12);
  --shadow: 0 14px 50px rgba(0,0,0,.35);
}

*{ box-sizing:border-box; }

body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 900px at 20% 0%, rgba(255,170,200,.18), transparent 60%),
              radial-gradient(900px 700px at 90% 20%, rgba(170,220,255,.14), transparent 60%),
              var(--bg);
  color:var(--text);
  overflow-x:hidden;
}

.wrap{
  width:min(980px, 92vw);
  margin: 36px auto 70px;
  display:flex;
  flex-direction:column;
  gap:16px;
}

.card{
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 18px;
  backdrop-filter: blur(8px);
}

p{
  margin: 0 0 12px;
  line-height: 1.55;
  font-size: 16px;
  color: var(--muted);
}

h1{
  margin: 0 0 10px;
  font-size: 40px;
  line-height: 1.05;
  color: var(--text);
}

h2{
  margin: 0 0 10px;
  font-size: 20px;
  color: var(--text);
}

.hero{
  display:flex;
  gap:14px;
  align-items:stretch;
  flex-wrap:wrap;
}
.hero-text{ flex: 1 1 320px; }
.hero-photos{
  flex: 1 1 320px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}
.hero-photos img{
  width:100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
  border:1px solid var(--stroke);
}

.photo-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
  margin-top: 6px;
}
.photo-row img{
  width:100%;
  height: 280px;
  object-fit: cover;
  border-radius: 14px;
  border:1px solid var(--stroke);
}

.photo-one img{
  width:100%;
  height: 340px;
  object-fit: cover;
  border-radius: 14px;
  border:1px solid var(--stroke);
  margin-top: 6px;
}

.final{
  text-align:center;
}
.final p{
  color: var(--text);
  font-size: 16px;
}
.big{
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--text);
}

.btn{
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 12px;
  cursor:pointer;
  font-weight: 600;
}

.btn.ghost{
  background: rgba(255,255,255,.05);
}

.heart{
  position: fixed;
  bottom: -30px;
  width: 16px;
  height: 16px;
  background: rgba(255,255,255,.85);
  transform: rotate(45deg);
  animation: floatUp 2.2s ease-in forwards;
  border-radius: 2px;
  filter: blur(.2px);
}
.heart::before,
.heart::after{
  content:"";
  position:absolute;
  width: 16px;
  height: 16px;
  background: rgba(255,255,255,.85);
  border-radius: 50%;
}
.heart::before{ left:-8px; top:0; }
.heart::after{ left:0; top:-8px; }

@keyframes floatUp{
  0%{ transform: translateY(0) rotate(45deg); opacity: .0; }
  10%{ opacity: .9; }
  100%{ transform: translateY(-110vh) rotate(45deg); opacity: 0; }
}

@media (max-width: 720px){
  .hero-photos img{ height: 200px; }
  .photo-row img{ height: 220px; }
  .photo-one img{ height: 260px; }
}

/* ===== интерактив "Ты меня прощаешь" ===== */
.forgive{
  margin-top: 16px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
}

.question{
  font-size: 18px;
  color: var(--text);
  margin: 0;
}

.choice{
  position: relative;
  width: 260px;
  height: 64px;
}

.choice .btn{
  position: absolute;
  top: 0;
  transition: all .25s ease;
}

.choice .yes{ left: 0; }
.choice .no{ right: 0; }

.choice .yes.grow{ transform: scale(1.15); }
.choice .yes.grow2{ transform: scale(1.35); }
.choice .yes.grow3{ transform: scale(1.55); }

.choice .no.run{
  animation: runAway .4s ease;
}

@keyframes runAway{
  0%{ transform: translateX(0); }
  30%{ transform: translateX(-8px); }
  60%{ transform: translateX(8px); }
  100%{ transform: translateX(0); }
}

.answer{
  margin-top: 12px;
  text-align: center;
  font-size: 16px;
  color: var(--text);
}