/* tokens, sampled straight off the approved avatar's own two pink fields */
:root {
  --pink-a: #FF74A3; /* left half, warmer */
  --pink-b: #FF89B6; /* right half, cooler + lighter */
  --ink: #6B0036;    /* single deep-magenta ink used on both halves */
  --font: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

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

body {
  font-family: var(--font);
  color: var(--ink);
}

#boot-error {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000000;
  color: #FF74A3;
  padding: 10px 14px;
  font: 13px monospace;
  z-index: 99999;
}

main {
  height: 100vh;
  display: flex;
}

.half {
  flex: 1 1 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6vw;
  text-align: center;
}

.half-a {
  background: var(--pink-a);
}

.half-b {
  background: var(--pink-b);
  /* the seam: one hard edge plus a faint doubled echo, the copy-paste tell from the art */
  box-shadow: -2px 0 0 rgba(107, 0, 54, 0.18), -4px 0 0 rgba(107, 0, 54, 0.06);
}

.ticker {
  font-weight: 700;
  font-size: clamp(1.75rem, 7vw, 4.5rem);
  letter-spacing: -0.02em;
  line-height: 1;
}

.ca {
  font-weight: 400;
  font-size: clamp(0.8rem, 2vw, 1.15rem);
  letter-spacing: 0.02em;
  word-break: break-all;
}
