#mtTutorialLayer {
  position: fixed;
  inset: 0;
  z-index: 12000;
  pointer-events: none;
}

#mtTutorialDim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
  pointer-events: auto;
}

#mtTutorialSpotlight {
  position: absolute;
  border: 1px solid rgba(212, 177, 74, 0.92);
  box-shadow:
    0 0 0 9999px rgba(0, 0, 0, 0.68),
    0 0 18px rgba(212, 177, 74, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  pointer-events: none;
  transition: left 0.12s ease, top 0.12s ease, width 0.12s ease, height 0.12s ease;
}

#mtTutorialCard {
  position: absolute;
  width: min(380px, calc(100vw - 24px));
  background: rgba(0, 0, 0, 0.84);
  border: 4px groove rgba(254, 255, 229, 0.32);
  color: rgba(200, 162, 75, 0.95);
  font-family: "Courier New", monospace;
  pointer-events: auto;
}

.mtTutorialTop {
  padding: 8px 10px;
  border-bottom: 1px solid rgba(212, 177, 74, 0.25);
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
}

#mtTutorialTitle {
  font-size: 12px;
  letter-spacing: 2px;
}

#mtTutorialProgress {
  font-size: 11px;
  opacity: 0.82;
}

.mtTutorialBody {
  padding: 11px;
  display: grid;
  gap: 10px;
}

#mtTutorialText {
  color: rgba(200, 162, 75, 0.78);
  font-size: 12px;
  line-height: 1.4;
}

.mtTutorialOptions {
  display: flex;
  gap: 6px;
  align-items: center;
  color: rgba(200, 162, 75, 0.76);
  font-size: 11px;
}

.mtTutorialOptions input {
  accent-color: #d4b14a;
}

.mtTutorialActions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.mtTutorialBtn {
  border: 3px outset #c0c0c0;
  background: #bfbfbf;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  font-family: "Courier New", monospace;
  font-size: 11px;
  padding: 7px 10px;
}

.mtTutorialBtn:active {
  border-style: inset;
}
