body {
  margin: 0;
  padding: 0;
  background: linear-gradient(to bottom right, #2c003e, #ff2e63);
  font-family: 'Segoe UI', sans-serif;
  color: white;
  text-align: center;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.container {
  padding: 20px;
}

h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.tagline {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.mood-buttons button {
  margin: 10px;
  padding: 12px 20px;
  border: none;
  border-radius: 30px;
  background: #ff2e63;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.mood-buttons button:hover {
  transform: scale(1.1);
  background: #ff4f7c;
}

.quote {
  margin-top: 30px;
  font-style: italic;
  font-size: 1.3rem;
}

.signature {
  position: absolute;
  bottom: 15px;
  right: 25px;
  font-family: 'Lucida Handwriting', cursive;
  font-size: 1.1rem;
  color: #ffc6d0;
  opacity: 0.8;
}
