
body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #e66465, #9198e5);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  text-align: center;
  max-width: 500px;
  background: rgba(0, 0, 0, 0.4);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  margin: 10px 0;
  background: #fff;
  color: #333;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn.secondary {
  background: #eee;
}

.btn:hover {
  background: #f5f5f5;
}

textarea {
  width: 100%;
  height: 100px;
  border-radius: 10px;
  padding: 10px;
  border: none;
  resize: none;
}

.wish-box {
  background: white;
  color: #333;
  padding: 15px;
  margin: 10px 0;
  border-radius: 10px;
}
