@charset "UTF-8";
:root {
  --ball: min(74vw, 42vh, 520px);
  --fade: 1.5s;
  --dim: 0;
  --safe-t: env(safe-area-inset-top, 0px);
  --safe-r: env(safe-area-inset-right, 0px);
  --safe-b: env(safe-area-inset-bottom, 0px);
  --safe-l: env(safe-area-inset-left, 0px);
}

@supports (height: 1svh) {
  :root {
    --ball: min(74vw, 42svh, 520px);
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

html,
body {
  margin: 0;
  height: 100%;
  overflow: hidden;
  overscroll-behavior: none;
  background: #05020b;
  color: #f3e2b0;
}

body {
  position: fixed;
  inset: 0;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-family: -apple-system, system-ui, "Segoe UI", Roboto, sans-serif;
}

input[type=text] {
  -webkit-user-select: text;
  user-select: text;
}

[hidden] {
  display: none !important;
}

#dim {
  position: fixed;
  inset: 0;
  z-index: 20;
  background: #000;
  opacity: var(--dim);
  pointer-events: none;
}

#version-badge {
  position: fixed;
  z-index: 10;
  left: calc(var(--safe-l) + 12px);
  bottom: calc(var(--safe-b) + 10px);
  font: 11px/1 -apple-system, system-ui, "Segoe UI", Roboto, sans-serif;
  letter-spacing: 0.03em;
  color: rgba(243, 226, 176, 0.45);
  pointer-events: none;
}

#hold-timer {
  position: fixed;
  z-index: 10;
  top: calc(var(--safe-t) + 14px);
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(10, 5, 22, 0.7);
  border: 1px solid rgba(243, 226, 176, 0.25);
  color: #f3e2b0;
  font: 600 15px/1 -apple-system, system-ui, "Segoe UI", Roboto, sans-serif;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  pointer-events: none;
}

#menu-zone {
  position: fixed;
  z-index: 11;
  inset: 0;
  border: 3px solid rgba(255, 59, 48, 0.8);
  background: rgba(255, 40, 40, 0.08);
  pointer-events: none;
}
#menu-zone span {
  position: absolute;
  left: 50%;
  bottom: calc(var(--safe-b) + 34px);
  transform: translateX(-50%);
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(110, 0, 0, 0.8);
  color: #ffd9d6;
  font: 600 13px/1 -apple-system, system-ui, "Segoe UI", Roboto, sans-serif;
  white-space: nowrap;
}

#keep-awake {
  position: fixed;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  opacity: 0.01;
  pointer-events: none;
}

#stage {
  position: fixed;
  inset: 0;
  overflow: hidden;
  touch-action: none;
  isolation: isolate;
  background: #05020b;
}

.velvet {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 75% 45% at 50% 40%, rgba(84, 46, 150, 0.42), rgba(40, 18, 80, 0.18) 55%, transparent 75%), radial-gradient(ellipse 140% 60% at 50% 100%, rgba(52, 16, 72, 0.55), transparent 60%), linear-gradient(180deg, #0c0619 0%, #0a0414 45%, #06020c 100%);
}
.velvet::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.6;
  background: repeating-linear-gradient(90deg, transparent 0, rgba(0, 0, 0, 0.45) 7vw, rgba(110, 70, 190, 0.07) 12vw, transparent 17vw), repeating-linear-gradient(90deg, transparent 0, rgba(0, 0, 0, 0.22) 3vw, transparent 5.5vw);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.6) 55%, transparent 82%);
  mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.6) 55%, transparent 82%);
}

.vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 90% 75% at 50% 45%, transparent 42%, rgba(0, 0, 0, 0.5) 76%, rgba(0, 0, 0, 0.92) 100%);
}

#dust {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.mote {
  position: absolute;
  bottom: -12px;
  width: var(--s);
  height: var(--s);
  border-radius: 50%;
  background: #ffe3a3;
  box-shadow: 0 0 calc(var(--s) * 2.5) calc(var(--s) * 0.6) rgba(255, 196, 105, 0.45);
  opacity: 0;
  will-change: transform, opacity;
  animation: rise var(--dur) linear var(--delay) infinite, twinkle var(--tw) ease-in-out var(--delay) infinite;
}

@keyframes rise {
  0% {
    transform: translate3d(0, 0, 0);
  }
  25% {
    transform: translate3d(var(--dx), -28vh, 0);
  }
  50% {
    transform: translate3d(0, -56vh, 0);
  }
  75% {
    transform: translate3d(calc(var(--dx) * -1), -84vh, 0);
  }
  100% {
    transform: translate3d(0, -112vh, 0);
  }
}
@keyframes twinkle {
  0%, 100% {
    opacity: calc(var(--o) * 0.2);
  }
  50% {
    opacity: var(--o);
  }
}
.altar {
  --mist-t: 2s;
  position: absolute;
  left: 50%;
  top: calc(50% + (var(--safe-t) - var(--safe-b)) / 2);
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.altar.instant, .altar.instant * {
  transition: none !important;
}

/* ---------- Halos ---------- */
.halo,
.halo-warm {
  position: absolute;
  left: 50%;
  top: calc(var(--ball) * 0.5);
  width: calc(var(--ball) * 2.1);
  height: calc(var(--ball) * 2.1);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.halo {
  background: radial-gradient(circle, rgba(140, 100, 235, 0.36) 0%, rgba(96, 60, 190, 0.18) 30%, rgba(60, 30, 130, 0.07) 48%, transparent 66%);
  opacity: 0.7;
  transition: opacity var(--mist-t) ease-out;
  animation: breathe 9s ease-in-out infinite;
}
.altar.stirring .halo {
  opacity: 1;
  transition-timing-function: ease-in;
}

.halo-warm {
  background: radial-gradient(circle, rgba(255, 214, 140, 0.16) 0%, rgba(255, 190, 110, 0.06) 32%, transparent 55%);
  opacity: 0;
  transition: opacity var(--mist-t) ease-in-out;
}
.altar.revealed .halo-warm {
  opacity: 1;
}

@keyframes breathe {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
  }
}
.floor {
  position: absolute;
  left: 50%;
  bottom: calc(var(--ball) * -0.1);
  width: calc(var(--ball) * 1.7);
  height: calc(var(--ball) * 0.36);
  transform: translateX(-50%);
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(ellipse 34% 26% at 50% 58%, rgba(0, 0, 0, 0.75), transparent 100%), radial-gradient(ellipse at 50% 50%, rgba(110, 80, 200, 0.2) 0%, rgba(40, 20, 80, 0.12) 42%, transparent 70%);
}

/* ---------- Boule ---------- */
.ball {
  position: relative;
  z-index: 2;
  width: var(--ball);
  height: var(--ball);
  border-radius: 50%;
  box-shadow: 0 0 calc(var(--ball) * 0.07) rgba(120, 90, 220, 0.28), 0 calc(var(--ball) * 0.05) calc(var(--ball) * 0.12) rgba(0, 0, 0, 0.6);
}

.globe {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  overflow: hidden;
  -webkit-clip-path: circle(50% at 50% 50%);
  clip-path: circle(50% at 50% 50%);
  transform: translateZ(0);
  background: radial-gradient(circle at 50% 58%, #22144a 0%, #140a33 38%, #0a0419 66%, #030107 100%);
}
.globe > * {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
}
.globe > .arc {
  inset: 3.5%;
  background: radial-gradient(circle, transparent 64%, rgba(255, 255, 255, 0.15) 68.5%, transparent 71%);
  -webkit-mask-image: linear-gradient(140deg, #000 18%, transparent 48%);
  mask-image: linear-gradient(140deg, #000 18%, transparent 48%);
}
.globe > .arc-low {
  inset: 5%;
  background: radial-gradient(circle, transparent 63%, rgba(190, 160, 255, 0.12) 68%, transparent 71%);
  -webkit-mask-image: linear-gradient(320deg, #000 15%, transparent 40%);
  mask-image: linear-gradient(320deg, #000 15%, transparent 40%);
}
.globe > .specular {
  inset: auto;
  left: 17%;
  top: 10%;
  width: 34%;
  height: 22%;
  transform: rotate(-38deg);
  background: radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.32) 30%, rgba(255, 255, 255, 0.06) 60%, transparent 72%);
  filter: blur(calc(var(--ball) * 0.006));
}
.globe > .glint {
  inset: auto;
  left: 25.5%;
  top: 17%;
  width: 7%;
  height: 4.2%;
  transform: rotate(-38deg);
  background: radial-gradient(ellipse, #fff 0%, rgba(255, 255, 255, 0.7) 40%, transparent 72%);
}

/* ---------- Brume : couches en rotation lente, en permanence ---------- */
.mist-wrap {
  opacity: 0.8;
  transform: scale(1);
  transition: opacity var(--mist-t) ease-out, transform var(--mist-t) ease-in-out;
}
.mist-wrap.front {
  opacity: 0.65;
}
.altar.stirring .mist-wrap.front {
  opacity: 1;
}
.altar.stirring .mist-wrap {
  opacity: 1;
  transform: scale(1.07);
  transition-timing-function: ease-in, ease-in-out;
}

.mist {
  position: absolute;
  inset: -30%;
  border-radius: 50%;
  will-change: transform;
}

.m1 {
  background: radial-gradient(30% 16% at 34% 42%, rgba(175, 145, 255, 0.8), transparent 70%), radial-gradient(24% 13% at 64% 60%, rgba(120, 85, 225, 0.85), transparent 72%), radial-gradient(14% 22% at 52% 30%, rgba(215, 195, 255, 0.5), transparent 70%), radial-gradient(20% 10% at 44% 70%, rgba(190, 160, 255, 0.45), transparent 70%);
  filter: blur(calc(var(--ball) * 0.028));
  opacity: 0.9;
  transform-origin: 47% 53%;
  animation: swirl 41s linear infinite;
}

.m2 {
  background: radial-gradient(18% 32% at 60% 36%, rgba(225, 200, 255, 0.5), transparent 70%), radial-gradient(32% 14% at 38% 68%, rgba(255, 214, 160, 0.26), transparent 70%), radial-gradient(16% 16% at 72% 72%, rgba(150, 110, 240, 0.6), transparent 70%);
  filter: blur(calc(var(--ball) * 0.045));
  opacity: 0.75;
  transform-origin: 54% 48%;
  animation: swirl 63s linear infinite reverse;
}

.m3 {
  background: conic-gradient(from 20deg at 50% 50%, transparent 0deg, rgba(190, 165, 255, 0.45) 40deg, transparent 95deg, rgba(160, 130, 250, 0.38) 170deg, transparent 230deg, rgba(220, 200, 255, 0.4) 290deg, transparent 340deg);
  -webkit-mask-image: radial-gradient(circle, transparent 8%, #000 30%, #000 45%, transparent 62%);
  mask-image: radial-gradient(circle, transparent 8%, #000 30%, #000 45%, transparent 62%);
  filter: blur(calc(var(--ball) * 0.05));
  opacity: 0.6;
  animation: spin 97s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes swirl {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.12);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}
.inner-glow {
  background: radial-gradient(circle at 50% 52%, rgba(200, 175, 255, 0.42) 0%, rgba(150, 115, 240, 0.16) 32%, transparent 60%);
  opacity: 0;
  transition: opacity var(--mist-t) ease-out;
}
.altar.stirring .inner-glow {
  opacity: 0.9;
  transition-timing-function: ease-in;
}

.warm-glow {
  background: radial-gradient(circle at 50% 52%, rgba(255, 222, 160, 0.2) 0%, rgba(255, 200, 130, 0.07) 34%, transparent 58%);
  opacity: 0;
  transition: opacity var(--mist-t) ease-in-out;
}
.altar.revealed .warm-glow {
  opacity: 1;
}

/* ---------- Le nombre, qui émerge de la brume ---------- */
.number {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Didot", "Bodoni 72", "Bodoni MT", "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", "Noto Serif Display", "Noto Serif", Georgia, serif;
  font-weight: 400;
  font-size: calc(var(--ball) * var(--num-k, 0.42));
  font-variant-numeric: lining-nums;
  line-height: 1;
  letter-spacing: 0.01em;
  white-space: nowrap;
  color: #f6e6b6;
  opacity: 0;
  filter: blur(calc(var(--ball) * 0.035));
  transform: scale(0.88);
  transition: opacity var(--fade) cubic-bezier(0.45, 0, 0.35, 1), filter var(--fade) cubic-bezier(0.2, 0.6, 0.3, 1), transform calc(var(--fade) * 1.3) cubic-bezier(0.2, 0.6, 0.3, 1);
}
.number.shown {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}
.number span {
  display: block;
  padding-top: 0.06em;
  text-shadow: 0 0 0.04em rgba(255, 244, 214, 0.95), 0 0 0.14em rgba(255, 210, 130, 0.6), 0 0 0.38em rgba(230, 170, 90, 0.35), 0 0 0.8em rgba(170, 120, 255, 0.3);
  animation: float 7s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-1.5%);
  }
}
/* ---------- Verre : ombrage, réfraction, liseré ---------- */
.shade {
  background: radial-gradient(circle at 46% 40%, transparent 50%, rgba(8, 3, 20, 0.35) 72%, rgba(2, 0, 8, 0.85) 100%);
  box-shadow: inset 0 0 calc(var(--ball) * 0.03) rgba(210, 190, 255, 0.18), inset calc(var(--ball) * -0.04) calc(var(--ball) * -0.06) calc(var(--ball) * 0.1) rgba(0, 0, 0, 0.55);
}

.refract {
  background: radial-gradient(70% 30% at 55% 95%, rgba(190, 160, 255, 0.34), transparent 70%);
}

.rimline {
  box-shadow: inset 0 0 0 1px rgba(220, 205, 255, 0.1);
}

/* ---------- Socle ---------- */
.base {
  position: relative;
  z-index: 3;
  display: block;
  width: calc(var(--ball) * 0.8);
  height: calc(var(--ball) * 0.4);
  margin-top: calc(var(--ball) * -0.13);
  overflow: visible;
}

#zones {
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
}

.zone {
  position: absolute;
  left: 0;
  right: 0;
  border-top: 1px dashed rgba(243, 226, 176, 0.6);
  background: rgba(243, 226, 176, 0.035);
}
.zone:first-child {
  border-top: none;
}
.zone.hit {
  animation: hit 1s ease-out;
}
.zone .tag {
  left: calc(12px + var(--safe-l));
  top: 50%;
  transform: translateY(-50%);
}

@keyframes hit {
  from {
    background: rgba(243, 226, 176, 0.3);
  }
  to {
    background: rgba(243, 226, 176, 0.035);
  }
}
.tag {
  position: absolute;
  font: 600 12px/1.2 -apple-system, system-ui, sans-serif;
  color: #f3e2b0;
  background: rgba(10, 5, 22, 0.8);
  border: 1px solid rgba(243, 226, 176, 0.3);
  padding: 5px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.tag b {
  font: 400 18px/1 "Didot", "Bodoni 72", "Bodoni MT", "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", "Noto Serif Display", "Noto Serif", Georgia, serif;
  margin-left: 4px;
}

#testbar {
  position: fixed;
  z-index: 40;
  left: 50%;
  top: calc(var(--safe-t) + 10px);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border-radius: 999px;
  background: rgba(12, 6, 26, 0.9);
  border: 1px solid rgba(243, 226, 176, 0.25);
  font: 13px/1 -apple-system, system-ui, sans-serif;
  color: #f3e2b0;
  white-space: nowrap;
  touch-action: none;
}
#testbar .state {
  padding: 0 8px;
  min-width: 8.5em;
  opacity: 0.9;
}
#testbar button {
  font-family: inherit;
  color: #f3e2b0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(243, 226, 176, 0.25);
  cursor: pointer;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 13px;
}

#settings {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  background: radial-gradient(ellipse at 50% 0%, rgba(60, 30, 110, 0.6), rgba(5, 2, 11, 0.97) 70%), #05020b;
  color: rgba(240, 232, 255, 0.9);
}

.sheet {
  width: 100%;
  max-width: 520px;
  height: 100%;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  padding: calc(var(--safe-t) + 24px) calc(var(--safe-r) + 18px) calc(var(--safe-b) + 32px) calc(var(--safe-l) + 18px);
}
.sheet h1 {
  margin: 0;
  font: 400 30px/1.1 "Didot", "Bodoni 72", "Bodoni MT", "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", "Noto Serif Display", "Noto Serif", Georgia, serif;
  letter-spacing: 0.02em;
  color: #f6e6b6;
}
.sheet .sub {
  margin: 6px 0 20px;
  font-size: 13px;
  color: rgba(230, 215, 255, 0.55);
}
.sheet button {
  min-height: 46px;
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  color: #f3e2b0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(243, 226, 176, 0.25);
  cursor: pointer;
}
.sheet button.primary {
  border-color: transparent;
  background: linear-gradient(180deg, #e7cc8e, #b8913f);
  color: #1a0e05;
  font-weight: 600;
}
.sheet button.link {
  width: 100%;
  margin-top: 6px;
  border: none;
  background: none;
  color: rgba(235, 225, 255, 0.45);
  font-size: 13px;
  text-decoration: underline;
}

.card {
  margin-bottom: 12px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(243, 226, 176, 0.12);
}

.row-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 15px;
}
.row-label small {
  color: rgba(230, 215, 255, 0.5);
  font-size: 12px;
}

output {
  color: #f3e2b0;
  font-variant-numeric: tabular-nums;
}

.seg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 4px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.3);
}
.sheet .seg button {
  border-color: transparent;
  background: transparent;
  font: 400 22px/1 "Didot", "Bodoni 72", "Bodoni MT", "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", "Noto Serif Display", "Noto Serif", Georgia, serif;
  min-height: 42px;
}
.sheet .seg button[aria-checked=true] {
  background: linear-gradient(#3a2560, #241540);
  color: #f6e6b6;
  box-shadow: inset 0 0 0 1px rgba(243, 226, 176, 0.4);
}

.values {
  display: grid;
  gap: 8px;
}

.value-row {
  display: grid;
  grid-template-columns: 1fr 112px;
  align-items: center;
  gap: 12px;
}
.value-row label {
  font-size: 15px;
  color: rgba(240, 232, 255, 0.8);
}
.value-row input {
  width: 100%;
  padding: 9px 8px;
  border-radius: 10px;
  border: 1px solid rgba(243, 226, 176, 0.22);
  background: rgba(0, 0, 0, 0.35);
  color: #f6e6b6;
  font: 400 24px/1 "Didot", "Bodoni 72", "Bodoni MT", "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", "Noto Serif Display", "Noto Serif", Georgia, serif;
  text-align: center;
  outline: none;
}
.value-row input:focus {
  border-color: rgba(243, 226, 176, 0.6);
}

input[type=range] {
  width: 100%;
  height: 32px;
  margin: 0;
  accent-color: #d9b86c;
}

.status {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}
.status small {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  color: rgba(230, 215, 255, 0.5);
}

.dot {
  flex: none;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #6b5a7a;
  box-shadow: 0 0 0 3px rgba(107, 90, 122, 0.2);
}
.dot.lock {
  background: #7fe0a0;
  box-shadow: 0 0 10px rgba(127, 224, 160, 0.7);
}
.dot.video {
  background: #f0c36a;
  box-shadow: 0 0 10px rgba(240, 195, 106, 0.6);
}

.options {
  display: grid;
}

.toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 4px 0;
  font-size: 15px;
  cursor: pointer;
}
.toggle-row + .toggle-row {
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px solid rgba(243, 226, 176, 0.12);
}
.toggle-row input {
  flex: none;
  width: 22px;
  height: 22px;
  margin: 0;
  accent-color: #d9b86c;
}

.about {
  display: grid;
  gap: 8px;
}

.about-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 14px;
  color: rgba(240, 232, 255, 0.8);
}
.about-row span {
  -webkit-user-select: text;
  user-select: text;
  color: #f3e2b0;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  text-align: right;
  overflow-wrap: anywhere;
}

.actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 18px 0 14px;
}

.help {
  font-size: 14px;
  color: rgba(235, 225, 255, 0.75);
}
.help summary {
  cursor: pointer;
}
.help ul {
  margin: 10px 0 0;
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.6;
}

#debug-log {
  position: fixed;
  z-index: 100;
  top: calc(var(--safe-t) + 6px);
  left: calc(var(--safe-l) + 6px);
  right: calc(var(--safe-r) + 6px);
  margin: 0;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.75);
  color: #9ef0b0;
  font: 11px/1.4 ui-monospace, Menlo, Consolas, monospace;
  white-space: pre-wrap;
  pointer-events: none;
}
