:root {
  color-scheme: dark;
  --color-bg: #08080c;
  --color-fg: #f2f0ea;
  --color-muted: #9a94a6;
  --color-border: #2c2632;
  --color-accent: #d4a24c;
  --color-accent-2: #b3373f;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 3rem 1.5rem;
  background:
    radial-gradient(ellipse 60rem 40rem at 50% -10%, rgba(179, 55, 63, 0.28), transparent 60%),
    radial-gradient(ellipse 40rem 30rem at 100% 100%, rgba(212, 162, 76, 0.08), transparent 60%),
    var(--color-bg);
  color: var(--color-fg);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

.site-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.site-header h1 {
  margin: 0 0 0.5rem;
  font-size: 2.5rem;
  letter-spacing: 0.04em;
  background: linear-gradient(120deg, var(--color-accent-2), var(--color-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 2.5rem rgba(212, 162, 76, 0.35);
}

.site-subhead {
  margin: 0;
  color: var(--color-muted);
}

main {
  width: 100%;
  max-width: 32rem;
}

.site-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.site-link {
  display: block;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.site-link:hover,
.site-link:focus-visible {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--color-accent);
  box-shadow: 0 0 1.5rem rgba(212, 162, 76, 0.25);
}

.site-link-name {
  display: block;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.site-link-desc {
  display: block;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.site-footer {
  margin-top: 3rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-muted);
}

.site-footer code {
  font-size: 0.85em;
}
