html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #102f28;
  touch-action: none;
}

body, canvas, div {
  display: block;
  outline: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
}

#Cocos2dGameContainer {
  position: absolute;
  inset: 0;
  margin: auto;
}

canvas {
  background: #f4eedb;
}

#splash {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #143b31;
  background: radial-gradient(circle at 70% 25%, #f5d79f 0, #f4eedb 42%, #e6dcc2 100%);
  font-family: "Songti SC", "STSong", serif;
}

.splash-seal {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  margin-bottom: 18px;
  color: #f8efda;
  background: #d3502f;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.25);
  font-size: 32px;
  font-weight: 700;
}

.splash-title {
  font-size: 27px;
  font-weight: 700;
  letter-spacing: .28em;
}

.progress-bar {
  width: 190px;
  height: 3px;
  margin-top: 36px;
  overflow: hidden;
  background: rgba(20, 59, 49, .14);
}

.progress-bar span {
  display: block;
  height: 100%;
  background: #d3502f;
  transition: width .25s ease;
}
