:root {
  --wall: #120e0c;
  --ink: #8d8178;
  --ink-dim: #4f4741;
  --ember: #ff7a33;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  overflow: hidden;
}

body {
  background: var(--wall);
  color: var(--ink);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
}

.frame {
  position: fixed;
  inset: 0;
  overflow: hidden;
  background: #000;
}

canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

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

.cta {
  position: fixed;
  left: 50%;
  bottom: 12%;
  transform: translateX(-50%);
  z-index: 5;
  padding: 14px 32px;
  color: #fff;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  background: rgba(255, 122, 51, 0.14);
  border: 1px solid rgba(255, 200, 160, 0.35);
  border-radius: 4px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.45),
    0 2px 10px rgba(255, 122, 51, 0.25);
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.cta:hover,
.cta:focus-visible {
  background: rgba(255, 122, 51, 0.28);
  transform: translateX(-50%) translateY(-2px);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.5),
    0 4px 16px rgba(255, 122, 51, 0.45);
  outline: none;
}

.cta:active {
  transform: translateX(-50%) translateY(0);
}

.dg.ac {
  z-index: 10 !important;
}
.dg .cr.number input[type="text"] {
  color: var(--ember) !important;
}
