body {
  margin: 0;
  padding: 24px;
  padding-bottom: 40px;
  box-sizing: border-box;
  background-color: var(--bg);
  background-image: radial-gradient(circle at 50% 0%, #1a2233 0%, var(--bg) 60%);
  color: var(--text-main);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

.site-footer {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  width: 100%;
}

.site-footer p {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
  opacity: 0.8;
}

.site-footer a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: var(--text-main);
  text-decoration: underline;
}

.footer-links {
  display: flex;
  gap: 16px;
}

.footer-links a {
  font-size: 12px;
}