/* ============ Loading 页面样式 ============ */
#loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/plugins/loading/loading.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 99999;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.6s ease-out;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 80px;
}

#loading-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

/* 进度条容器 */
#loading-progress-container {
  width: 80%;
  max-width: 300px;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* 进度条 */
#loading-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #fcc612, #ff9500);
  width: 0%;
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(255, 201, 18, 0.6);
  transition: width 0.3s ease-out;
}

/* 进度文本 */
#loading-progress-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  letter-spacing: 1px;
  font-family: 'Roboto Condensed', system-ui, sans-serif;
}
