* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: black;
  --maximum-blue: #66b8d9;
  --blush-pink: #ea5178;
  color: var(--maximum-blue);
  font-family: monospace;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 1rem;
}
body > header {
  border: 1px solid currentColor;
  font-size: 8px;
  text-shadow: 0 0 10px #fff;
  letter-spacing: 0.5em;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 24em;
  overflow: hidden;
}
body > header .silvertoad {
  text-transform: uppercase;
}
body > header .row {
  white-space: nowrap;
  animation: shift 20s steps(100) infinite;
  width: fit-content;
  opacity: 0.3;
  pointer-events: none;
}
body > header .logo {
  width: 24em;
  height: 24em;
  background: white;
  position: relative;
  mask-image: url('/logo-mask.svg');
  mask-size: cover;
}
body > header .bg {
  position: absolute;
  inset: 0;
  isolation: isolate;
  background: black;
}
body > header .bg .silvertoad {
  color: var(--blush-pink);
  text-shadow: 0 0 20px #fff, 0 0 10px #fff;
}
body > header .bg .bg-rows {
  position: absolute;
  inset: 0;
}
body > header .bg .bg-rows .row {
  opacity: 1;
  background: #111;
}
body > header .bg .fg {
  display: flex;
  align-items: center;
  color: #fff;
  background: #000;
  mix-blend-mode: multiply;
  z-index: 10;
  position: relative;
}
body > header h1 {
  font-size: 15em;
  padding-bottom: 0.5em;
  display: block;
  margin: 0;
}
body > header h2 {
  position: absolute;
  font-size: 5em;
  margin: 0;
  left: 4.8em;
  top: 3.2em;
  color: color-mix(in srgb, var(--maximum-blue) 15%, transparent);
  text-shadow: 0 0 4px currentColor;
  font-style: italic;
}
body > header span {
  font-style: italic;
}
body > article {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
fieldset {
  border: 1px solid currentColor;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
fieldset > header {
  color: var(--blush-pink);
  border: 1px solid currentColor;
  padding: 1rem;
  font-size: 1.5rem;
  font-weight: bold;
}
fieldset > header > span {
  font-weight: normal;
  font-style: italic;
}
fieldset > article {
  border: 1px solid currentColor;
  padding: 1rem;
}
fieldset > footer {
  border: 1px solid currentColor;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
button {
  background: none;
  border: none;
  color: inherit;
  font-family: inherit;
}
button:hover {
  background: var(--maximum-blue);
  color: black;
}
button::before {
  content: '[ ';
}
button::after {
  content: ' ]';
}
table td,
table th {
  border: 1px solid currentColor;
  padding: 0.5rem 1rem;
}
[data-action] {
  cursor: pointer;
}
.overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  opacity: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(1px);
  pointer-events: none;
}
.overlay .banner {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2em;
  animation: 2s steps(1) infinite flash;
}
.wait-active .overlay {
  opacity: 1;
  pointer-events: initial;
  transition-delay: 0.5s;
}
@keyframes flash {
  0% {
    background: black;
    color: var(--maximum-blue);
  }
  50% {
    background: var(--maximum-blue);
    color: black;
  }
}
.running-tasks li:hover {
  text-decoration: underline;
}
.input-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 1em;
}
.input-wrapper > input {
  font-family: inherit;
  font-size: inherit;
  border: none;
  flex: 1 0 fit-content;
  background: none;
  color: inherit;
  outline: none;
  padding: 0.5em;
  background: var(--maximum-blue);
  color: black;
}
.input-wrapper > input[type="file"]::file-selector-button {
  display: none;
}
.input-wrapper::before {
  content: '[';
  padding: 0.5em;
}
.input-wrapper::after {
  content: ']';
  padding: 0.5em;
}
@keyframes shift {
  from {
    translate: 0 0;
  }
  to {
    translate: -50% 0;
  }
}
.radio-group {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.radio-group label:has([type="radio"]) {
  display: flex;
  align-items: center;
  padding: 0.5em;
}
.radio-group label:has([type="radio"]:checked) {
  background: var(--maximum-blue);
  color: black;
}
.input-wrapper:has([type="radio"]) {
  display: inline-block;
  width: 1.5ch;
  position: relative;
  height: 1lh;
  margin-left: 2.5ch;
  margin-right: 3ch;
}
.input-wrapper:has([type="radio"]) input[type="radio"] {
  display: none;
}
.input-wrapper:has([type="radio"])::before,
.input-wrapper:has([type="radio"])::after {
  position: absolute;
  top: 40%;
  translate: 0 -50%;
}
.input-wrapper:has([type="radio"])::before {
  right: 1.5ch;
}
.input-wrapper:has([type="radio"])::after {
  left: 1.5ch;
}
.input-wrapper:has([type="radio"]:checked) {
  background: white;
}
