/* ===== 加载页 ===== */
.loading-stage {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("/static/images/muta_gov_bg.png") center / cover no-repeat
    #0a1028;
  box-shadow: inset 0 0 120px rgba(2, 8, 28, 0.45);
}

.loading-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 12px 8px;
  max-width: 760px;
  width: 90%;
}

.loading-mascot {
  width: 180px;
  height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.45))
    drop-shadow(0 0 20px rgba(100, 180, 255, 0.25));
  animation: floaty 3s ease-in-out infinite;
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.loading-text {
  flex: 1;
  font-size: 22px;
  font-weight: 500;
  color: #e8f2ff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
}

.loading-text .tip {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: rgba(200, 220, 255, 0.82);
  letter-spacing: 0.5px;
  font-weight: 400;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

.progress-wrap {
  position: absolute;
  left: 50%;
  bottom: 28%;
  transform: translateX(-50%);
  width: min(720px, 70vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.progress-bar {
  width: 100%;
  height: 10px;
  background: rgba(0, 20, 60, 0.5);
  border: 1px solid rgba(120, 180, 255, 0.2);
  border-radius: 999px;
  overflow: hidden;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.35);
}

.progress-bar .progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #1677ff, #25d4ff 80%, #b6f1ff);
  border-radius: 999px;
  transition: width 0.2s linear;
  box-shadow: 0 0 12px rgba(37, 212, 255, 0.6);
}

.progress-percent {
  font-size: 12px;
  color: rgba(200, 220, 255, 0.9);
  letter-spacing: 1px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}
