:root {
  --bg: #bcbcbc;
  --ink: #100f0d;
  --red: #e91f2a;
}

* { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Lato', Helvetica, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  position: relative;
  overflow-x: hidden;
}

/* background texture removed per feedback — flat background kept clean */

.card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  text-align: center;
}

h1.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

svg.logo {
  width: 220px;
  height: auto;
  margin-bottom: 24px;
}

p.about {
  font-size: 1em;
  line-height: 1.5;
  margin: 0 0 32px;
}

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

.btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 3px 3px 0 0 var(--ink);
  background: var(--bg);
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 1em;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.btn:hover {
  transform: translate(1px, 1px);
  box-shadow: 2px 2px 0 0 var(--ink);
}

.btn:active {
  transform: translate(3px, 3px);
  box-shadow: 0 0 0 0 var(--ink);
}

.btn svg { width: 20px; height: 20px; flex-shrink: 0; fill: var(--ink); }
.btn span { flex: 1; text-align: center; }

footer {
  margin-top: 32px;
  font-size: 0.75em;
  color: #4a4a4a;
  line-height: 1.6;
}

footer p { margin: 0; }
footer a { color: #4a4a4a; }

@media (max-width: 480px) {
  svg.logo { width: 170px; }
}
