* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #1a0a1a 0%, #2d1525 40%, #1a0a1a 100%);
  font-family: "Amiri", serif;
}

.center {
  text-align: center;
  padding: 2rem;
}

.heart-wrap {
  margin-bottom: 1.5rem;
}

.heart {
  width: 80px;
  height: 80px;
  background: #e84363;
  transform: rotate(-45deg);
  position: relative;
  margin: 0 auto;
  animation: heartbeat 1.2s ease-in-out infinite;
  box-shadow: 0 0 40px rgba(232, 67, 99, 0.5);
}

.heart::before,
.heart::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  background: #e84363;
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(232, 67, 99, 0.4);
}

.heart::before {
  top: -40px;
  left: 0;
}

.heart::after {
  left: 40px;
  top: 0;
}

@keyframes heartbeat {
  0%, 100% {
    transform: rotate(-45deg) scale(1);
  }
  14% {
    transform: rotate(-45deg) scale(1.15);
  }
  28% {
    transform: rotate(-45deg) scale(1);
  }
  42% {
    transform: rotate(-45deg) scale(1.12);
  }
  56% {
    transform: rotate(-45deg) scale(1);
  }
}

.text {
  font-size: 2.25rem;
  font-weight: 700;
  color: #f8d7e0;
  letter-spacing: 0.02em;
  text-shadow: 0 0 20px rgba(232, 67, 99, 0.4);
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    opacity: 0.9;
    text-shadow: 0 0 15px rgba(232, 67, 99, 0.3);
  }
  to {
    opacity: 1;
    text-shadow: 0 0 25px rgba(248, 215, 224, 0.6);
  }
}
