.canvas-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid #e5e7eb;
  background: white;
}

.session-progress {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  padding: 8px 10px;
}

.session-progress-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.session-progress-label {
  font-weight: 600;
  color: #374151;
  font-size: 0.9rem;
}

.session-progress-count {
  color: #6b7280;
  font-size: 0.82rem;
}

.session-progress-track {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: #e5e7eb;
  overflow: hidden;
}

.session-progress-fill {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, #58cc02 0%, #7adf29 100%);
  transition: width 220ms ease;
}

#pad {
  width: 100%;
  height: auto;
  touch-action: none; /* crucial for drawing */
  display: block;
}

.progress-page {
  background: linear-gradient(180deg, #0b1b2b 0%, #10293f 100%);
  min-height: 100vh;
}

.progress-road {
  border-radius: 16px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.road-node {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #aab7c4;
  background: #253749;
  border: 3px solid #31485d;
}

.road-node.left { align-self: flex-start; }
.road-node.right { align-self: flex-end; }

.road-node.done {
  background: #ffb020;
  border-color: #e79a00;
  color: #fff;
}

.road-prize {
  margin-top: 4px;
  align-self: center;
  border-radius: 14px;
  padding: 8px 14px;
  font-weight: 700;
  color: #aab7c4;
  background: #253749;
  border: 2px solid #31485d;
}

.road-prize.unlocked {
  background: #16c784;
  border-color: #0ea36a;
  color: #fff;
}