:root {
  --bg: #050505;
  --fg: #f8fafc;
  --accent: #3b82f6; /* Modern Tech Blue */
  --dim: #94a3b8;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: Inter, system-ui, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
  text-align: center;
  position: relative;
}

.content {
  max-width: 640px;
  padding: 20px;
}

img {
  width: 300px;
  margin-bottom: 24px;
}

h1 {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700; /* This is the "Bold" weight for Ubuntu */
  font-size: 3.5rem;
  margin: 0 0 10px;
  letter-spacing: -0.04em;
  color: var(--fg);
}

p {
  color: var(--dim);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.github-link {
  display: inline-block;
  color: var(--dim);
  transition: color 0.2s, transform 0.2s;
}

.github-link:hover {
  color: var(--fg);
  transform: translateY(-2px);
}

.github-link svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.footer {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  font-size: 0.8rem;
  color: var(--dim);
}
