* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Georgia, serif;
  background: #fff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#page1, #page2, #page3 {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
  background: #fff;
  transition: opacity 0.6s;
}

#page2, #page3 {
  opacity: 0;
  pointer-events: none;
}

.emoji {
  font-size: 5rem;
  cursor: pointer;
  display: block;
  margin-bottom: 24px;
  animation: bob 2s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

#page1 p {
  font-size: 1.4rem;
  color: #9b0030;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 28px;
}

#page1 button {
  padding: 12px 36px;
  border-radius: 50px;
  border: 2px solid #9b0030;
  background: #fff;
  color: #9b0030;
  font-size: 1rem;
  font-family: Georgia, serif;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

#page1 button:hover {
  background: #9b0030;
  color: #fff;
}

#page2 h1 {
  font-size: 2rem;
  color: #9b0030;
  font-weight: bold;
  margin-bottom: 36px;
}

.btns {
  display: flex;
  gap: 16px;
  justify-content: center;
}

#yes {
  padding: 13px 38px;
  border-radius: 50px;
  border: none;
  background: #9b0030;
  color: #fff;
  font-size: 1.05rem;
  font-family: Georgia, serif;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s;
}

#yes:hover {
  transform: scale(1.07);
}

#no {
  padding: 13px 30px;
  border-radius: 50px;
  border: 2px solid #9b0030;
  background: #fff;
  color: #9b0030;
  font-size: 1.05rem;
  font-family: Georgia, serif;
  cursor: pointer;
  position: fixed;
}

#page3 h1 {
  font-size: 2.2rem;
  color: #9b0030;
  font-weight: bold;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

#page3 p {
  font-size: 1rem;
  color: #c0004a;
  font-style: italic;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

#roses {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.rose {
  position: absolute;
  animation: fall 4s linear forwards;
}

@keyframes fall {
  0%   { transform: translateY(-60px) rotate(0deg);   opacity: 1; }
  100% { transform: translateY(110vh)  rotate(360deg); opacity: 0; }
}
