* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: radial-gradient(circle at top, #1b1f3a 0%, #0a0c1b 70%);
  color: #f5f6fa;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page {
  max-width: 600px;
  width: 100%;
  padding: 2.5rem;
  text-align: center;
}

.hero-name {
  font-size: 2.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-tagline {
  margin-top: 0.5rem;
  font-size: 1.1rem;
  color: #9aa0c3;
}

.about {
  margin-top: 2rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #d4d7ec;
}

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

.link-item {
  color: #f5f6fa;
  text-decoration: none;
  padding: 0.5rem 1.25rem;
  border: 1px solid #3a3f6b;
  border-radius: 999px;
  font-size: 0.95rem;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.link-item:hover {
  background: #3a3f6b;
  border-color: #5a61a8;
}
