.pc-loading-root {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(5, 12, 24, 0.42);
  backdrop-filter: blur(4px);
  pointer-events: all;
}

.pc-loading-root.active {
  display: flex;
}

.pc-loading-card {
  min-width: 220px;
  padding: 22px 24px;
  border: 1px solid rgba(123, 181, 255, 0.2);
  border-radius: 16px;
  background: rgba(10, 20, 35, 0.92);
  box-shadow: 0 22px 48px rgba(0, 8, 20, 0.36);
  text-align: center;
  color: #eff5ff;
}

.pc-loading-spinner {
  width: 42px;
  height: 42px;
  margin: 0 auto 14px;
  border: 3px solid rgba(143, 181, 255, 0.18);
  border-top-color: #2f8cff;
  border-radius: 50%;
  animation: pc-loading-spin 0.8s linear infinite;
}

.pc-loading-title {
  font-size: 16px;
  font-weight: 600;
}

.pc-loading-desc {
  margin-top: 8px;
  font-size: 13px;
  color: rgba(222, 233, 255, 0.68);
}

body.pc-loading-lock {
  overflow: hidden;
}

@keyframes pc-loading-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}
