/* game_screen.css */
/* ============================
   游戏主界面
   依赖：无
   ============================ */
#main-text {
  flex: 1;
  padding: 25px;
  background: rgba(20, 15, 10, 0.7);
  border: 1px solid #2a1f14;
  margin: 10px;
  line-height: 1.8;
  max-height: 55vh;
  overflow-y: auto;
  white-space: pre-wrap;
  font-size: 1.05rem;
}
#choices-area {
  padding: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  background: #141210;
  border-top: 1px solid #2a1f14;
}
#bottom-bar {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  background: #141210;
  border-top: 1px solid #2a1f14;
  flex-wrap: wrap;
}