.stack-layout.route-layout {
  --card-h: calc(var(--card-w) * 1.25);
  --row-gap: calc(var(--card-w) * 1.5);
}
.dungeon-links {
  position: absolute;
  inset: 0 8px 12px;
  width: calc(100% - 16px);
  height: calc(100% - 12px);
  pointer-events: none;
}
.dungeon-links line {
  stroke: #94bca5;
  stroke-width: 2;
  stroke-dasharray: 4 3;
  vector-effect: non-scaling-stroke;
  opacity: 0.6;
}
.dungeon-links .route-travelled {
  stroke: #b9ed79;
  stroke-dasharray: none;
  opacity: 1;
}
.route-cleared {
  position: absolute;
  left: calc(50% + var(--node-x) * var(--card-w) - 12px);
  top: calc(var(--node-y) * var(--row-gap) + var(--card-h) / 2 - 12px);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #183d2d;
  color: #b9ed79;
  text-align: center;
  line-height: 24px;
}
.dungeon-victory {
  text-align: center;
  overflow: auto;
  padding: 12px 24px;
}
.dungeon-victory h2 {
  margin: 4px 0;
  color: var(--gold);
}
.dungeon-victory p {
  margin: 6px 0;
  font-size: 14px;
}
.dungeon-progress {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.dungeon-progress span {
  padding: 4px 8px;
  border-bottom: 2px solid var(--line);
}
.dungeon-progress .is-complete {
  color: var(--gold);
  border-color: var(--gold);
}
.expedition-phase {
  color: var(--gold);
  white-space: nowrap;
  font-size: 12px;
}
