body {
  font-family: system-ui, -apple-system, sans-serif;
  background: linear-gradient(135deg, #1a2124, #2c3235, #505152);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
  text-align: center;
}

h1 {
  margin-bottom: 1.5rem;
  font-size: 2rem;
  letter-spacing: 1px;
}

h2 {
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  letter-spacing: 1px;
}
.links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 90%;
  max-width: 400px;
}

a {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1rem;
  border-radius: 10px;
  color: #fff;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
  backdrop-filter: blur(4px);
}

a:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

footer {
  position: absolute;
  bottom: 1rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}
