body {
  margin: 0;
  height: 100vh;
  background: linear-gradient(135deg, #ff9a9e, #fad0c4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Segoe UI', sans-serif;
}

.card {
  width: 360px;
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.page {
  display: none;
  text-align: center;
  animation: fadeIn 1s ease;
}

.page.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

h1, h2 {
  color: #ff5e78;
}

.photo-frame {
  width: 260px;
  height: 260px;
  margin: 20px auto;
  border-radius: 15px;
  overflow: hidden;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

button {
  margin-top: 15px;
  background: #ff5e78;
  border: none;
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
}

button:hover {
  background: #ff3e5f;
}

#typewriter {
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.6;
}

#typewriter p {
  margin-bottom: 12px;
}
