*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: #1f2937;
  background: #f6f2ea;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
}

.github-link {
  font-size: 1.25rem;
  font-weight: 600;
  background: linear-gradient(90deg, #d72638, #f46036, #2f80ed, #1b3a8a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 10px rgba(244, 96, 54, 0.25);
}

.github-link:hover {
  filter: brightness(1.05);
}

.site-footer {
  padding: 16px 24px 24px;
  text-align: center;
  color: #6b7280;
  font-size: 0.9rem;
}
