/* GLOBAL STYLES */
body {
  margin: 0;
  font-family: 'Rouge Script', cursive;
  background: linear-gradient(180deg, #0a0000 0%, #1e0004 100%);
  color: #ffecec;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
}

/* MAIN CONTAINER */
.landing-container {
  text-align: center;
  padding: 20px;
}

/* HEADER TEXT */
.romantic-quote {
  font-size: 2.8rem;
  line-height: 1.3;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
  margin-bottom: 30px;
}

/* HEART IMAGE */
.heart-img {
  max-width: 220px;
  opacity: 0.6;
  margin-bottom: 40px;
}

/* BURN BUTTON */
.burn-button {
  font-family: 'Rouge Script', cursive;
  font-size: 1.8rem;
  padding: 14px 36px;
  border: none;
  border-radius: 30px;
  background-color: #aa1624;
  color: #fff0f0;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(255, 90, 90, 0.4);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.burn-button:hover {
  background-color: #e83b52;
  transform: scale(1.05);
}

/* CLICK PULSE EFFECT */
.burn-button.clicked {
  animation: heartbeat 0.6s ease-in-out;
}

@keyframes heartbeat {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.2);
  }
  50% {
    transform: scale(0.95);
  }
  75% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}