/* 全屏加载遮罩层 - 毓秀弦歌乐团专用 */
.loader-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: #ffffff; /* 匹配乐团网页白底风格 */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999; /* 确保在所有元素最上层 */
  opacity: 1;
  /* 核心：快速渐变（仅0.3秒），解决渐变过长问题 */
  transition: opacity 0.3s ease-in-out;
}

/* 遮罩层淡出状态 */
.loader-overlay.fade-out {
  opacity: 0;
  pointer-events: none; /* 淡出后不拦截鼠标操作 */
}

/* GIF样式 - 适配乐团视觉风格 */
.loader-gif {
  width: 280px; /* 尺寸适中，不突兀 */
  max-width: 80%; /* 适配手机端 */
  height: auto;
  /* 轻微阴影提升质感，可选 */
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.08));
}