/* Splash-page styles for /index.html — extracted from inline <style>
   to comply with strict CSP `style-src 'self'`. */
html, body {
  background: #0a0a0a;
  color: #a1a1aa;
  font-family: ui-monospace, Menlo, Consolas, monospace;
  margin: 0;
  height: 100%;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
}
a {
  color: #facc15;
  text-decoration: none;
  border: 1px solid rgba(250, 204, 21, 0.4);
  border-radius: 8px;
  padding: 0.55rem 1rem;
  display: inline-block;
  margin: 0.25rem;
}
a:hover {
  background: #facc15;
  color: #111;
}

.splash-foot {
  position: fixed;
  bottom: 1rem;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.78rem;
  opacity: 0.55;
  pointer-events: auto;
}
.splash-foot a {
  border: none;
  padding: 0 0.4rem;
  margin: 0;
  color: #a1a1aa;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.splash-foot a:hover {
  background: transparent;
  color: #facc15;
}
