.blue   { color: #00aaff; }
.red    { color: #ff4040; }
.green  { color: #00cc66; }
.orange { color: #FFD700; }
.white  { color: #dddddd; }
.gray   { color: #999999; }

.timestamp {
  min-width: 80px;
  color: #dddddd;
  font-family: monospace;
}

.console-log {
  position: relative;
  margin-top: 420px;
  padding-left: 5%;
  max-width: 90%;
}

.console-text {
  display: inline-block;
  white-space: pre-wrap;
}

.background-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
}

.background-wrapper video,
.background-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.console-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0px 0px 0px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  z-index: 0;
}

.console {
  background: transparent;
  max-width: 800px;
  white-space: pre-wrap;
  word-wrap: break-word;
  font-size: 14px;
  line-height: 1.4;
}

#console {
  font-family: monospace;
  color: white;
  white-space: pre;
  text-align: left;
  position: relative;
  margin-top: 2rem;
  padding-left: 1rem;
  min-width: 320px;
  max-width: 100vw;
}

.work-overlay {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px) brightness(0.9);
  padding: 2rem 3rem;
  border-radius: 12px;
  text-align: center;
  z-index: 10;
  width: 500px;
  white-space: nowrap;
}

.work-overlay h1 {
  font-family: monospace;
  color: red;
  font-size: 3rem;
  font-weight: bold;
  text-transform: uppercase;
  animation: pulse 2.5s infinite ease-in-out;
  letter-spacing: 1px;
  margin: 0;
  padding: 0px 0px 0px;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}
