/* LikeGirl 加载页 —— 进度条风格 v1.1（字体×2） */

#Loadanimation {
  background: linear-gradient(160deg, #fce4ec 0%, #f3e5f5 50%, #ede7f6 100%);
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.6s ease;
}

#Loadanimation.hide {
  opacity: 0;
  pointer-events: none;
}

#Loadanimation-center {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/* 标题：2rem → 4rem */
.lg-load-title {
  font-size: 4rem;
  font-weight: 400;
  color: #3d2c2c;
  letter-spacing: 0.02em;
  margin-bottom: 2.8rem;
  font-family: 'Noto Serif SC', serif;
}

/* 进度条容器：width 220px → 440px，height 3px → 6px */
.lg-load-bar-wrap {
  width: 440px;
  height: 6px;
  background: rgba(180, 120, 160, 0.2);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 2rem;
  position: relative;
}

.lg-load-bar {
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, #d4527a, #a569bd);
  border-radius: 99px;
  position: absolute;
  animation: lgBarFlow 1.8s ease-in-out infinite;
}

@keyframes lgBarFlow {
  0%   { left: -40%; }
  100% { left: 110%; }
}

/* 提示文字：0.85rem → 1.7rem */
.lg-load-hint {
  font-size: 1.7rem;
  color: rgba(100, 70, 90, 0.55);
  letter-spacing: 0.05em;
  font-family: 'Noto Serif SC', serif;
}

/* 移动端适配：等比缩小但仍比原来大 */
@media (max-width: 600px) {
  .lg-load-title    { font-size: 2.6rem; margin-bottom: 2rem; }
  .lg-load-bar-wrap { width: 80vw; height: 5px; }
  .lg-load-hint     { font-size: 1.15rem; }
}
