.es-human-check {
  position: fixed;
  inset: 0;
  z-index: 100100;
  display: grid;
  place-items: center;
}

.es-human-check__mask {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
}

.es-human-check__panel {
  position: relative;
  width: min(460px, calc(100vw - 30px));
  border-radius: 16px;
  border: 1px solid rgba(117, 255, 158, 0.25);
  background: rgba(20, 24, 24, 0.98);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  padding: 20px 18px 18px;
  color: rgba(255, 255, 255, 0.92);
  font-family: InterLocal, system-ui, -apple-system, sans-serif;
}

.es-human-check__title {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}

.es-human-check__sub {
  margin: 8px 0 14px;
  color: rgba(186, 203, 185, 1);
  font-size: 14px;
}

.es-human-check__close {
  position: absolute;
  right: 10px;
  top: 8px;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.es-human-check__track {
  position: relative;
  height: 52px;
  border-radius: 12px;
  border: 1px solid rgba(117, 255, 158, 0.18);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
  user-select: none;
}

.es-human-check__fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(90deg, rgba(117, 255, 158, 0.18), rgba(117, 255, 158, 0.5));
}

.es-human-check__hint {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.76);
  pointer-events: none;
}

.es-human-check__handle {
  position: absolute;
  left: 0;
  top: 0;
  width: 52px;
  height: 52px;
  border: 0;
  border-right: 1px solid rgba(117, 255, 158, 0.2);
  background: rgba(117, 255, 158, 0.9);
  color: #0c1111;
  font-size: 20px;
  font-weight: 800;
  cursor: grab;
  touch-action: none;
}

.es-human-check.is-passed .es-human-check__handle {
  background: #75ff9e;
}
