/* ========================================================= */
/* 1. GIT CITY STYLE TERMINAL SPLASH SCREEN STYLES           */
/* ========================================================= */

#screen-boot {
  background-color: #030305;
  justify-content: center;
  align-items: center;
  z-index: 100;
  font-family: var(--font-pixel);
  padding: 40px;
  transition: opacity 0.6s ease-out;
  cursor: pointer;
}

.splash-container {
  width: 100%;
  max-width: 860px;
}

.splash-text {
  color: #94a3b8;
  font-size: 13px;
  line-height: 1.95;
  white-space: pre-wrap;
  word-break: break-all;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Terminal Line Highlights */
.splash-text .cmd-line {
  color: #ffffff;
  font-weight: 700;
}

.splash-text .prompt-symbol {
  color: #eab308;
  font-weight: 700;
  margin-right: 8px;
}

.splash-text .highlight-white {
  color: #ffffff;
}

.splash-text .tag-done {
  color: #84cc16;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(132, 204, 22, 0.4);
}

.splash-text .welcome-line {
  color: #84cc16;
  font-weight: 700;
  text-shadow: 0 0 12px rgba(132, 204, 22, 0.5);
}

.cursor {
  display: inline-block;
  width: 12px;
  height: 16px;
  background-color: #84cc16;
  vertical-align: sub;
  animation: blink 0.75s infinite;
  box-shadow: 0 0 10px #84cc16;
  margin-left: 4px;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.splash-hint {
  position: absolute;
  bottom: 28px;
  right: 36px;
  font-family: var(--font-pixel);
  font-size: 9px;
  color: rgba(148, 163, 184, 0.6);
  letter-spacing: 1px;
}
