:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  background: #090d12;
  color: #e8edf4;
}

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 20% 10%, #18334a 0, transparent 34rem),
    radial-gradient(circle at 85% 90%, #291747 0, transparent 30rem),
    #090d12;
}

main {
  width: min(880px, calc(100vw - 48px));
  padding: 48px;
  border: 1px solid #263344;
  border-radius: 20px;
  background: rgb(12 18 26 / 88%);
  box-shadow: 0 24px 80px rgb(0 0 0 / 35%);
}

h1 { margin-top: 0; font-size: clamp(2rem, 5vw, 4rem); }
p { color: #aebbc9; line-height: 1.65; }
.status { color: #80c7ff; font-weight: 650; }
.error { color: #ff8e8e; }
pre {
  max-height: 45vh;
  overflow: auto;
  padding: 20px;
  border-radius: 12px;
  background: #06090d;
  color: #cce5ff;
}
a { color: #8bd3ff; }
