body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #067ad3, #c4bebe);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.hero {
  text-align: center;
  animation: fadeIn 1.5s ease;
}

h1 {
  font-size: 2.5rem;
  letter-spacing: 1px;
}

.highlight {
  color: #32f0d3;
}

p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

button {
  background-color: #32f0d3;
  color: #012a4a;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover {
  background-color: #20c9b5;
  transform: scale(1.05);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
