/* Dasi — base layout (Phase 0 stub). Track B fills this in. */

#app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.screen {
  display: none;
  flex: 1;
}

.screen.active {
  display: flex;
}

#loading-screen {
  align-items: center;
  justify-content: center;
}

.loading-mark {
  font-size: var(--kr-display);
  color: var(--accent);
  opacity: 0.85;
}
