html.antony-mode {
  --bg: #ffd60a !important;
  background: #ffd60a;
}

html.antony-mode body {
  background: #ffd60a !important;
}

.antony-content-tint {
  position: fixed;
  inset: 0;
  z-index: 11998;
  background: rgb(255 214 10 / 0.34);
  pointer-events: none;
  user-select: none;
}

.antony-left-eye-blur {
  position: fixed;
  left: 0;
  top: 14%;
  z-index: 11999;
  width: 50%;
  height: 72%;
  background: rgb(255 214 10 / 0.035);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  pointer-events: none;
  user-select: none;
}

.antony-vision {
  position: fixed;
  inset: 0;
  z-index: 12000;
  width: 100%;
  height: 100%;
  pointer-events: none;
  touch-action: auto;
  user-select: none;
}

.antony-mode-hint {
  position: fixed;
  left: 50%;
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 12001;
  max-width: calc(100vw - 32px);
  overflow: hidden;
  padding: 9px 14px 10px;
  border: 1px solid rgb(255 255 255 / 0.16);
  border-radius: 999px;
  color: rgb(255 255 255 / 0.7);
  background: rgb(8 8 9 / 0.72);
  box-shadow: 0 10px 32px rgb(0 0 0 / 0.34);
  backdrop-filter: blur(14px);
  font: 600 12px/1.2 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0.025em;
  opacity: 0;
  transform: translate(-50%, 8px);
  transition: opacity 240ms ease, transform 240ms ease, color 180ms ease;
  white-space: nowrap;
  pointer-events: none;
}

.antony-mode-hint::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 3px;
  height: 2px;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.72);
  transform: scaleX(0);
  transform-origin: left;
}

.antony-mode-hint.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.antony-mode-hint.is-exiting {
  color: white;
}

.antony-mode-hint.is-exiting::after {
  transform: scaleX(1);
  transition: transform 900ms linear;
}

@media (prefers-reduced-motion: reduce) {
  .antony-mode-hint {
    transition: none;
  }
}
