body {
  font-family: "Times New Roman", serif;
  background: linear-gradient(to bottom, #fffafa, #f0f8ff);
  color: #555;
  text-align: center;
  margin: 0;
  overflow-x: hidden;
  padding: 0;
}

.container {
  background-color: rgba(255, 255, 255, 0.92);
  margin: 100px auto;
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  max-width: 700px;
  width: 90%;
  border: 1px solid #ffc0cb;
  position: relative;
  z-index: 5;
  transition: opacity 1.2s ease, transform 1.2s ease;
  opacity: 0;
  transform: translateY(30px);
}

.container.visible {
  opacity: 1;
  transform: translateY(0);
}

h1 {
  font-family: "Brush Script MT", cursive;
  color: #d81b60;
  margin-bottom: 5px;
  font-size: 4em;
  font-weight: 400;
  letter-spacing: 1px;
  animation: floatText 4s infinite alternate;
}

h1 span {
  color: #e91e63;
}

h2 {
  color: #880e4f;
  margin-top: 5px;
  font-size: 1.6em;
  font-weight: 300;
  padding-bottom: 20px;
  border-bottom: 1px dashed #ffc0cb;
}

p {
  line-height: 1.9;
  margin-bottom: 30px;
  font-size: 1.2em;
  text-align: justify;
  text-align-last: center;
}

.emotional-core {
  font-style: italic;
  color: #4a148c;
  font-weight: 500;
  margin: 40px 0;
  padding: 15px;
  border-top: 2px dotted #ffc0cb;
  border-bottom: 2px dotted #ffc0cb;
  font-size: 1.3em;
}

.signature {
  margin-top: 60px;
  font-family: "Brush Script MT", cursive;
  color: #d81b60;
  font-size: 2em;
  text-align: right;
}

/* Floating Hearts */
.heart {
  position: fixed;
  top: -10vh;
  color: #ff69b4;
  font-size: 1.5em;
  opacity: 0.8;
  animation: fall linear infinite;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

@keyframes fall {
  to {
    transform: translateY(110vh);
  }
}

@keyframes floatText {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-6px);
  }
}

#audio-player {
  display: none;
}
