@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Poppins:wght@500&display=swap');

body {
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #ffe6f0, #ffcce0);
  font-family: 'Poppins', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  text-align: center;
  background: white;
  padding: 3rem;
  border-radius: 30px;
  box-shadow: 0 0 20px rgba(0,0,0,0.15);
  animation: fadeIn 1.2s ease-in-out;
}

h1 {
  font-family: 'Great Vibes', cursive;
  color: #e60073;
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

p {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 2rem;
}

.surprise-btn {
  display: inline-block;
  background: #ff3385;
  color: white;
  padding: 12px 24px;
  font-size: 1.1rem;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s ease;
}

.surprise-btn:hover {
  background: #cc0066;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
