.temporal-process-module-section {
  margin-top: 24px;
}

.final-temporal-module {
  animation: temporalReveal 260ms ease both;
}

@keyframes temporalReveal {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.compact-loader-card {
  max-width: 520px;
  margin: 0 auto;
  padding: 26px;
  text-align: center;
}

.compact-loader-card h2 {
  margin: 0 0 22px;
  font-size: 1.35rem;
}

.compact-loader {
  display: grid;
  place-items: center;
  gap: 14px;
}

.element-ring-loader {
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background:
    conic-gradient(
      from 0deg,
      rgba(140, 240, 196, 0.95),
      rgba(110, 168, 255, 0.95),
      rgba(255, 229, 120, 0.95),
      rgba(140, 240, 196, 0.95)
    );
  padding: 7px;
  animation: ringSpin 1.2s linear infinite;
}

.element-ring-loader::before {
  content: "";
  position: absolute;
}

@keyframes ringSpin {
  to {
    transform: rotate(360deg);
  }
}

.temporal-element-canvas {
  width: 112px;
  height: 112px;
  display: block;
  border-radius: 999px;
  background: rgba(5, 10, 22, 0.92);
  padding: 10px;
  animation: counterSpin 1.2s linear infinite;
}

@keyframes counterSpin {
  to {
    transform: rotate(-360deg);
  }
}

.temporal-progress-track {
  width: min(320px, 100%);
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.temporal-progress-bar {
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #60d8ff, #8cf0c4, #ffe46b);
  box-shadow: 0 0 18px rgba(140, 240, 196, 0.45);
  transition: width 180ms ease;
}

#temporalProgressValue {
  color: #e9f6ff;
  font-size: 0.95rem;
}

#temporalElementLabel {
  color: #a9b4cc;
  font-size: 0.9rem;
}