body {
  cursor: url("download.jpg"), auto;
  margin: 0;
  font-family: "Comic Sans MS", Arial;
  background: linear-gradient(135deg, #ffe6f1, #ffd1ec);
  text-align: center;
}

header {
  padding: 30px 10px;
}

header h1 {
  color: #d63384;
  font-size: 32px;
}

.photos {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
}

.photos img {
  width: 180px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.letter-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.envelope {
  position: relative;
  width: 260px;
  height: 180px;
  background: #ffb6c1;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

.flap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ff9fb3;
  clip-path: polygon(0 0, 50% 55%, 100% 0, 100% 100%, 0 100%);
  transform-origin: top;
  transition: transform 0.6s ease;
  z-index: 3;
}

.letter {
  position: absolute;
  bottom: -100%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 160px;
  background: white;
  border-radius: 6px;
  padding: 10px;
  font-size: 12px;
  overflow-y: auto;
  transition: bottom 0.7s ease;
  z-index: 1;
}

.envelope.open {
  overflow: visible;
}

.envelope.open .flap {
  transform: rotateX(180deg);
}

.envelope.open .letter {
  bottom: 10px;
}

.hint {
  margin-top: 15px;
  color: #d63384;
}