:root {
  background: #231f20;
  color: #f8f8f8;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  margin: 0;
  overflow: hidden;
}

#unity-container {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #000000;
  overflow: hidden;
}

#unity-canvas {
  display: block;
  flex: none;
  background: #231f20;
}

#unity-loading-bar {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(72vw, 280px);
  transform: translate(-50%, -50%);
}

#logic-roll-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 130px;
  color: #ffffff;
  font-size: clamp(32px, 10vw, 44px);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  text-shadow: 0 2px 10px rgb(0 0 0 / 35%);
}

#unity-progress-bar-empty {
  box-sizing: border-box;
  width: 100%;
  height: 12px;
  margin-top: 12px;
  padding: 2px;
  border: 1px solid rgb(255 255 255 / 90%);
  background: rgb(255 255 255 / 12%);
}

#unity-progress-bar-full {
  width: 0;
  height: 100%;
  background: #ffffff;
  transition: width 120ms linear;
}

#unity-warning {
  position: absolute;
  top: 5%;
  left: 50%;
  width: min(90vw, 560px);
  transform: translateX(-50%);
  color: #1b1b1b;
}

#unity-warning > div {
  margin-bottom: 8px;
  padding: 10px;
}

#unity-warning .warning {
  background: #f8d44d;
}

#unity-warning .error {
  background: #f06b6b;
}
