/* ===== LGSports Dashboard 首页样式 ===== */
/* 仅适用于手机端（<=768px） */

/* ========================================
   1. Dashboard 容器
   ======================================== */

.welcome-screen {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  background: var(--dashboard-bg, #f5f7fa);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.welcome-screen::-webkit-scrollbar {
  display: none;
}

.welcome-screen.hidden {
  display: none;
}

/* ========================================
   2. Dashboard-mode 布局控制
   ======================================== */

.main.dashboard-mode #page-home .chat-messages {
  display: none;
}

.main.dashboard-mode #page-home .welcome-screen {
  flex: 1;
  order: 0;
}

/* ========================================
   3. Dark-mode 适配
   ======================================== */

body.dark-mode .welcome-screen {
  background: #111827;
}

/* ========================================
   4. 移动端激活（<=768px）
   ======================================== */

@media (max-width: 768px) {
  .welcome-screen {
    /* 确保覆盖 mobile.css 中的旧样式 */
    order: unset;
    min-height: 0;
    animation: dashboardFadeIn 0.3s ease-out;
  }

  @keyframes dashboardFadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
