/* loading.css */
/* ============================
   Loading 画面
   依赖：无
   ============================ */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #080605;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
#loading-text {
  font-size: 2rem;
  color: #8a7060;
  letter-spacing: 8px;
  margin-bottom: 20px;
}
.eerie-poem {
  font-size: 1.1rem;
  color: #5a3a2a;
  margin: 5px;
  opacity: 0.9;
}