.hc-wrap { margin: 1rem 0; }

.hc-honeypot {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.hc-hold-btn {
  position: relative;
  width: 100%;
  padding: .7rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(126, 34, 206, .35);
  background: rgba(126, 34, 206, .06);
  color: var(--text, #e2e8f0);
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
  user-select: none;
  touch-action: none;
  transition: border-color .2s, background .2s;
}
.hc-hold-btn:hover { border-color: rgba(126, 34, 206, .6); }

.hc-hold-fill {
  position: absolute;
  inset: 0;
  width: 0%;
  background: linear-gradient(135deg, rgba(168, 85, 247, .35), rgba(45, 212, 191, .35));
  z-index: 0;
}

.hc-hold-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  justify-content: center;
  width: 100%;
}

.hc-hold-btn.hc-verified {
  border-color: rgba(45, 212, 191, .6);
  background: rgba(45, 212, 191, .08);
  cursor: default;
}
.hc-hold-btn.hc-verified .hc-hold-fill {
  width: 100% !important;
  background: rgba(45, 212, 191, .25);
}

/* Drag-the-shape-into-the-slot widget */
.dc-wrap { margin: 1rem 0; display: flex; flex-direction: column; align-items: center; }

.dc-label {
  font-size: .8rem;
  color: var(--text-muted, #94a3b8);
  margin-bottom: .5rem;
  text-align: center;
}

.dc-board {
  position: relative;
  border-radius: 10px;
  border: 1px solid rgba(126, 34, 206, .35);
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  touch-action: none;
  max-width: 100%;
}

.dc-piece {
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: grab;
  user-select: none;
  touch-action: none;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .4));
}
.dc-piece:active { cursor: grabbing; }
