.point-answer-media-card .media-item-header {
  border-bottom-color: rgba(129, 140, 248, .22);
}

.point-answer-image-button {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.point-answer-image-button.is-interactive {
  cursor: crosshair;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.point-answer-image-button.is-interactive img {
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}

.point-answer-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.point-answer-cue {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  z-index: 4;
  max-width: calc(100% - 24px);
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 999px;
  background: rgba(2, 7, 29, .88);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 8px 22px rgba(2, 7, 29, .36);
  pointer-events: none;
}

.point-answer-image-button.is-interactive:active img {
  filter: brightness(.92);
}

.point-answer-click-marker {
  position: absolute;
  z-index: 5;
  width: 22px;
  height: 22px;
  margin-left: -11px;
  margin-top: -11px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: rgba(2, 7, 29, .56);
  box-shadow: 0 0 0 3px rgba(129, 140, 248, .88), 0 4px 14px rgba(0, 0, 0, .45);
}

.point-answer-click-marker.pending {
  animation: pointAnswerPulse .8s ease-in-out infinite alternate;
}

.point-answer-click-marker.correct,
.point-answer-click-marker.accepted {
  box-shadow: 0 0 0 4px #22c55e, 0 4px 16px rgba(0, 0, 0, .45);
}

.point-answer-click-marker.incorrect,
.point-answer-click-marker.rejected {
  box-shadow: 0 0 0 4px #ef4444, 0 4px 16px rgba(0, 0, 0, .45);
}

.point-answer-correct-region {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.point-answer-correct-region circle {
  fill: rgba(34, 197, 94, .22);
  stroke: #22c55e;
  stroke-width: 3px;
  vector-effect: non-scaling-stroke;
}

.point-answer-composer .point-answer-instruction {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 11px 13px;
  border: 1px solid rgba(129, 140, 248, .28);
  border-radius: 12px;
  background: rgba(15, 23, 42, .72);
}

.point-answer-instruction > span {
  flex: 0 0 auto;
  font-size: 24px;
  line-height: 1;
  color: #c4b5fd;
}

.point-answer-instruction > strong {
  font-size: 13px;
  line-height: 1.35;
}

@keyframes pointAnswerPulse {
  from { transform: scale(.9); }
  to { transform: scale(1.08); }
}

.point-answer-preview-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: calc(100% - 24px);
  margin: 10px 12px 12px;
  padding: 9px 14px;
  border: 1px solid rgba(129, 140, 248, .30);
  border-radius: 11px;
  background: rgba(15, 23, 42, .82);
  color: #eef2ff;
  font: inherit;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.point-answer-preview-button > span {
  font-size: 18px;
  line-height: 1;
  color: #c4b5fd;
}

.point-answer-preview-button > strong {
  font-size: 13px;
  line-height: 1.2;
}

.point-answer-preview-button:active {
  transform: translateY(1px);
  background: rgba(30, 41, 59, .94);
}

