/* 新手指引遮罩 · 挂在 .ios-screen 内，不挡住右侧设计待办面板 */
.guide-overlay {
  position: absolute;
  inset: 0;
  z-index: 8500;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
  border-radius: inherit;
  overflow: hidden;
}

.guide-overlay.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.guide-overlay__dim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.guide-spotlight {
  position: absolute;
  border-radius: 12px;
  box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.55);
  border: 2px solid #fff;
  pointer-events: none;
  transition: top 0.25s, left 0.25s, width 0.25s, height 0.25s;
}

.guide-card {
  position: absolute;
  left: 16px;
  right: 16px;
  max-width: 360px;
  margin: 0 auto;
  padding: 14px 16px;
  background: #fffef5;
  border: 2.5px solid #4a5048;
  border-radius: 14px;
  box-shadow: 0 4px 0 #4a5048;
  z-index: 2;
}

.guide-card__step {
  font-size: 10px;
  font-weight: 800;
  color: #5cb86e;
  margin-bottom: 4px;
}

.guide-card__text {
  font-size: 14px;
  font-weight: 700;
  color: #4a5048;
  line-height: 1.45;
  margin: 0 0 12px;
}

.guide-card__actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.guide-card__skip,
.guide-card__next {
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  border: none;
}

.guide-card__skip {
  background: transparent;
  color: #888;
}

.guide-card__next {
  background: linear-gradient(180deg, #8fd4a0, #5cb86e);
  color: #fff;
  box-shadow: 0 3px 0 #4aa85c;
}
