.cp-eng-root {
  max-width: var(--cp-max, 1180px);
  margin: 0 auto;
  padding: var(--cp-section-y, 48px) var(--cp-gutter, 20px);
  text-align: center;
  background: var(--cp-snow-80, #f7fbff);
  border-top: 1px solid var(--cp-border, rgba(10, 10, 10, 0.1));
}

.cp-eng-root h2 {
  font-family: var(--cp-font-display, system-ui, sans-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 8px;
}

.cp-eng-root > p {
  color: var(--cp-muted, #5c6670);
  margin: 0 0 24px;
}

.cp-eng-quiz {
  max-width: 480px;
  margin: 0 auto 16px;
}

.cp-eng-q {
  font-weight: 600;
  margin: 0 0 16px;
}

.cp-eng-opts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cp-eng-opt {
  min-height: 44px;
  padding: 12px 16px;
  border: 1px solid var(--cp-border);
  border-radius: 10px;
  background: #fff;
  font-family: var(--cp-font-body, system-ui, sans-serif);
  font-size: 15px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.cp-eng-opt:hover,
.cp-eng-opt:focus-visible {
  border-color: var(--cp-brand);
  background: rgba(0, 140, 186, 0.06);
}

.cp-eng-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.cp-eng-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d0d5db;
}

.cp-eng-dot.is-active {
  background: var(--cp-brand);
  transform: scale(1.2);
}

.cp-eng-dot.is-done {
  background: var(--cp-brand);
  opacity: 0.5;
}

.cp-eng-cta {
  margin-top: 16px;
}

.cp-eng-result {
  margin-bottom: 16px;
  font-weight: 600;
}

.cp-eng-scratch {
  max-width: 400px;
  margin: 32px auto 0;
  text-align: center;
}

.cp-eng-scratch__title {
  font-size: 1.1rem;
  margin: 0 0 12px;
}

.cp-eng-scratch__canvas {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 0 auto 12px;
  border-radius: 12px;
  cursor: crosshair;
  touch-action: none;
}

.cp-eng-scratch__legal {
  font-size: 11px;
  color: var(--cp-muted, #5c6670);
  margin: 12px 0 0;
  line-height: 1.4;
}

.cp-eng-scratch__fallback {
  margin-top: 8px;
}

.cp-eng-scratch--played .cp-eng-scratch__canvas {
  display: none;
}
