body {
  margin: 0;
  background: #ffe6f0;
  font-family: 'Segoe UI', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.love-card {
  background: #fff0f5;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  padding: 30px;
  text-align: center;
  max-width: 600px;
  position: relative;
}

.text {
  color: #5c4033;
  margin-bottom: 20px;
}

.contador {
  font-weight: bold;
  margin: 15px 0;
}

.heart-tree {
  position: relative;
  height: 300px;
}

.hearts {
  position: absolute;
  top: 0;
  left: 50%;
  width: 200px;
  height: 200px;
  transform: translateX(-50%);
  background-image: url('https://emojicdn.elk.sh/🤍');
  background-size: 20px 20px;
  background-repeat: repeat;
}

.trunk {
  width: 20px;
  height: 100px;
  background: #2e8b57;
  margin: 0 auto;
  border-radius: 5px;
}
