#captcha-container {
  background: var(--bg-open);
}

#corralCanvas {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  touch-action: none;
  cursor: crosshair;
}

.corral-ui {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  z-index: 2;
  padding-bottom: 24px;
}

.corral-hint {
  font-size: 17px;
  font-weight: 500;
  color: var(--text-grey);
  letter-spacing: -0.01em;
  background: rgba(255, 255, 255, 0.75);
  padding: 8px 20px;
  border-radius: 8px;
  transition: opacity 0.4s ease;
}

.corral-hint.is-hidden {
  opacity: 0;
}

.section:not(.is-active) .corral-hint {
  opacity: 0;
}

.corral-verified {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.92);
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  padding: 18px 32px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  z-index: 20;
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.corral-verified.is-active {
  display: block;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
