body {
  font-family: "Inter", Arial, sans-serif;
  background: linear-gradient(135deg, #141e30, #243b55);
  color: #f0f0f0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.container {
  text-align: center;
  padding: 2rem;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #d8d8d8;
}

button {
  background-color: #00bcd4;
  border: none;
  padding: 0.8rem 1.5rem;
  font-size: 1.1rem;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
}

button:hover {
  background-color: #0097a7;
  transform: scale(1.05);
}

footer {
  position: absolute;
  bottom: 15px;
  font-size: 0.9rem;
  color: #999;
}