
body {
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #7700ffc4 0%, #000000 75%);
  font-family: 'Segoe UI', sans-serif;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.heart-bg::before, .heart-bg::after {
  content: "❤";
  position: absolute;
  font-size: 80px;
  color: #d633ff;
  animation: float 10s infinite ease-in-out;
}

.heart-bg::before {
  left: 10%;
  top: 10%;
  animation-delay: 0s;
}
.heart-bg::after {
  right: 10%;
  bottom: 10%;
  animation-delay: 5s;
}

@keyframes float {
  0% { transform: translateY(0) rotate(0deg); opacity: 0.8; }
  50% { transform: translateY(-20px) rotate(10deg); opacity: 1; }
  100% { transform: translateY(0) rotate(-10deg); opacity: 0.8; }
}

.container {
  background: linear-gradient(135deg, #7700ffc4 0%, #00000000 42%);
  padding: 50px;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  text-align: center;
  max-width: 600px;
  z-index: 1;
}

h1 {
  font-size: 2.2em;
  margin-bottom: 10px;
}

p {
  font-size: 1.1em;
  margin: 10px 0;
}

button {
  background-color: #ff4d88;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 12px;
  font-size: 1em;
  cursor: pointer;
  margin-top: 20px;
  transition: background-color 0.3s, transform 0.2s;
}

button:hover {
  background-color: #e6005c;
  transform: scale(1.05);
}

#message {
  margin-top: 25px;
  font-size: 1.2em;
  animation: fadeIn 2s ease;
}

.hidden {
  display: none;
}

@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

.gallery {
  margin-top: 75px;
}

.gallery h2 {
  color: #c2185b;
  margin-bottom: 20px;
}

.photos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.photos img {
  width: 200px;
  height: 200px;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
