html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden; /* 初始禁止滾動，動畫結束後再開啟 */
}
#intro {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.intro-logo {
  max-width: 100%;        /* 不超過容器寬度 */
  width: 60vw;            /* 寬度約佔螢幕 60%，自動縮放 */
  height: auto;           /* 高度等比例 */
  opacity: 0;
  transform: scale(0.3);  /* 一開始強制縮小到 30% 視覺比例 */
  transition: transform 0.3s ease;
}
