.controlLabel {
  color: #94a3b8;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-left: 4px;
}

.replayHistory {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(260px, 1.6fr) auto;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  padding: 13px 14px;
  border: 1px solid #26384f;
  border-radius: 13px;
  background: rgba(7, 17, 31, 0.6);
}

.replayHistory > div {
  display: grid;
  gap: 3px;
}

.replayHistory small {
  display: block;
}

.replayHistory input[type="range"] {
  width: 100%;
  padding: 0;
  accent-color: #38bdf8;
  cursor: pointer;
}

.replayControls {
  justify-content: flex-start;
}

.sessionEnd {
  margin-top: 12px;
  padding: 13px 15px;
  border: 1px solid rgba(52, 211, 153, 0.3);
  border-radius: 13px;
  background: rgba(6, 78, 59, 0.18);
  color: #d1fae5;
}

.decisionBox label {
  display: block;
  margin-bottom: 8px;
  color: #dbeafe;
  font-size: 0.82rem;
  font-weight: 800;
}

.statsCard {
  margin-top: 16px;
}

.levelCard {
  position: relative;
  overflow: hidden;
}

.levelCard.locked {
  opacity: 0.68;
}

.levelHeading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.levelHeading > span {
  flex: 0 0 auto;
  padding: 4px 8px;
  border: 1px solid #36516f;
  border-radius: 999px;
  color: #bae6fd;
  background: #0c192a;
  font-size: 0.76rem;
  font-weight: 850;
}

.progressTrack {
  height: 8px;
  margin-top: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #07111f;
  border: 1px solid #26384f;
}

.progressTrack > span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2563eb, #38bdf8);
}

.contentList {
  display: grid;
  gap: 12px;
}

.contentList > .note,
.contentList > article.note {
  margin-top: 0;
}

.progressCard h2 {
  font-size: 2rem;
}

@media (max-width: 760px) {
  .replayHistory {
    grid-template-columns: 1fr;
  }

  .replayHistory button {
    width: 100%;
  }

  .levelHeading {
    align-items: flex-start;
  }
}
