* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(circle at top, #1a1a1f, #0b0b0e);
  color: #f4f4f5;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  text-align: center;
  max-width: 600px;
  padding: 2rem;
}

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

p {
  opacity: 0.85;
  margin-bottom: 2rem;
}

.links a {
  display: inline-block;
  margin: 0 0.75rem;
  text-decoration: none;
  color: #a5b4fc;
  font-weight: 500;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.links a:hover {
  transform: translateY(-2px);
  opacity: 0.8;
}

.fade-in {
  animation: fade 1.2s ease forwards;
}

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