body {
  background: linear-gradient(135deg, #ffd6e8, #ffe6ec);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100vh;
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  overflow: hidden;
}

h1 {
  color: #ff4d6d;
  font-size: 32px;
  margin-right: 10px;
  margin-left: 10px;
  margin-bottom: 10px;
  text-shadow: 1px 1px 2px #ffb3c6;
}

p {
  font-size: 18px;
  color: #444;
  margin-top: 0;
  margin-right: 10px;
  margin-left: 10px;
  margin-bottom: 100px;
  opacity: 0.85;
}

.heart-container {
  position: relative;
  width: 200px;
  height: 200px;
}

.heart {
  position: absolute;
  width: 200px;
  height: 180px;
  background: #ff4d6d;
  transform: rotate(-45deg);
  top: 10px;
  left: 0;
  z-index: 0;
  box-shadow: 0 0 30px #ff99ac;
}

.heart::before,
.heart::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 180px;
  background: #ff4d6d;
  border-radius: 50%;
}

.heart::before {
  top: -100px;
  left: 0;
}

.heart::after {
  left: 100px;
  top: 0;
}

.qr {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 10px;
  border-radius: 12px;
  z-index: 2;
  box-shadow: 0 0 20px rgba(255, 0, 102, 0.4);
  animation: pulse 2s infinite;
}

.qr img {
  width: 100px;
  height: 100px;
}

@keyframes pulse {
  0% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.08); }
  100% { transform: translate(-50%, -50%) scale(1); }
}

.floating-heart {
  position: absolute;
  color: #ff4d6d;
  font-size: 16px;
  animation: float 6s infinite ease-in-out;
  opacity: 0.7;
}

@keyframes float {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-50px) scale(1.2);
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) scale(1);
    opacity: 0;
  }
}
