body {
  margin: 0;
  font-family: system-ui, sans-serif;
  background: #f5f5f5;
  color: #333;
}

.container {
  max-width: 600px;
  margin: 5rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
}

h1 {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
}

.link {
  padding: 0.75rem 1.5rem;
  background: #0066FF;
  color: #fff;
  text-decoration: none;
  border-radius: 0.25rem;
  transition: background 0.2s ease;
}

.link:hover {
  background: #0055dd;
}
