body.loading-screen {
  background-color: #000;
  color: #d4d4a0;
  font-family: 'Courier New', monospace;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  flex-direction: column;
}

.loader-container {
  text-align: center;
}

.loader-text {
  color: #bfff00;
  margin: 5px 0;
}

.logo {
  margin: 40px 0;
  width: 200px;
  image-rendering: pixelated;
}

.title {
  color: #fff;
  font-size: 2em;
  margin: 0;
  letter-spacing: 1px;
}

.title .tiny {
  font-size: 0.5em;
  vertical-align: super;
  color: #ccc;
}

.japanese {
  color: #d4d4a0;
  font-size: 0.9em;
  margin-bottom: 40px;
}

.progress-section {
  color: white;
}

.progress-bar {
  width: 300px;
  height: 20px;
  border: 2px solid #ffffaa;
  background-color: black;
  margin: 10px auto;
  position: relative;
  overflow: hidden;
}

.progress-fill {
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #ffffaa 0%, #ffffaa 80%, #222 100%);
  animation: loadbar 5s linear forwards;
}

@keyframes loadbar {
  from { width: 0%; }
  to { width: 100%; }
}

