:root {
  --bg-color: #0f172a;
  --text-color: #f8fafc;
  --card-bg: rgba(30, 41, 59, 0.7);
  --accent: #3b82f6;
  --success: #22c55e;
  --glass-border: rgba(255, 255, 255, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Outfit", sans-serif;
  background-color: #000000;
  color: var(--text-color);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  /* Removed modern radial gradients for pure black void */
  background-image: none;
}

.container {
  width: 100%;
  max-width: 800px;
  padding: 2rem;
}

header {
  display: flex;
  justify-content: center; /* Center the logo now that status badge is gone */
  align-items: center;
  margin-bottom: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-img {
  display: none; /* Hide old img if present, though removed from HTML */
}

/* Pixel Art Logo Styles */
.pixel-logo {
  font-family: "Press Start 2P", cursive;
  font-size: 2.5rem; /* Adjustable */
  line-height: 1.2;
  text-transform: uppercase;
  /* Retro Green Gradient */
  background: linear-gradient(to bottom, #33ff00, #008f11);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  /* Use filter for glow/shadow with transparent text */
  filter: drop-shadow(4px 4px 0px rgba(0, 50, 0, 0.5));
  margin: 0;
  padding: 0.5rem 0;
  letter-spacing: 6px; /* More air between letters */
}

/* .bot-text {
  Optional: Make "BOT" a slightly different shade or opacity if desired
  For now keeping same gradient
} */

@media (max-width: 600px) {
  .pixel-logo {
    font-size: 1.5rem;
  }
}

/* Retro Terminal Styles */
.terminal-container {
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid #33ff00;
  border-radius: 8px;
  padding: 1.5rem;
  width: 100%;
  max-width: 800px;
  box-shadow: 0 0 15px rgba(51, 255, 0, 0.2);
  font-family: "Consolas", "Monaco", "Courier New", monospace;
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  flex-direction: column;
}

.terminal-header {
  border-bottom: 1px solid #33ff00;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  color: #33ff00;
  font-size: 0.8rem;
  opacity: 0.8;
}

.terminal-body {
  flex-grow: 1;
  color: #33ff00;
  font-size: 1rem;
  line-height: 1.5;
  text-shadow: 0 0 2px rgba(51, 255, 0, 0.5);
}

.line {
  margin-bottom: 0.25rem;
  opacity: 0;
  animation: fadeIn 0.1s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.cursor {
  display: inline-block;
  width: 10px;
  height: 1.2em;
  background-color: #33ff00;
  vertical-align: middle;
  animation: blink 1s step-end infinite;
}

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

/* Status colors for logs */
.status-ok {
  color: #33ff00;
  font-weight: bold;
}
.status-error {
  color: #ef4444;
  font-weight: bold;
}
.status-warn {
  color: #f59e0b;
  font-weight: bold;
}

/* Scanline effect */
.scanline {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px; /* Increased size for visibility */
  background: rgba(51, 255, 0, 0.1);
  opacity: 0.1;
  animation: scanline 6s linear infinite;
  pointer-events: none;
}

@keyframes scanline {
  0% {
    top: -10%;
  }
  100% {
    top: 110%;
  }
}

/* Connect button inside terminal if needed, or footer */
footer {
  text-align: center;
  margin-top: 2rem;
  color: #33ff00;
  font-size: 0.7rem;
  opacity: 0.6;
  font-family: "Consolas", monospace;
}
