body {
  background: linear-gradient(to bottom right, #000010, #000033);
  color: #00ffff;
  font-family: 'Orbitron', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  animation: fadeIn 1.5s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  animation: logoPulse 1.5s ease-in-out;
}

@keyframes logoPulse {
  0% { opacity: 0; letter-spacing: 0.1em; }
  100% { opacity: 1; letter-spacing: 0.2em; }
}

.center-screen {
  text-align: center;
}

h1 {
  font-size: 2.5rem;
  animation: logoFade 2s ease-in-out;
  margin-bottom: 20px;
}

@keyframes logoFade {
  0% { opacity: 0; letter-spacing: 0.1em; }
  100% { opacity: 1; letter-spacing: 0.25em; }
}

.login-box, .panel {
  background-color: rgba(0, 255, 255, 0.06);
  border: 2px solid #00ffff;
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 0 25px #00ffff55;
  display: inline-block;
  transition: all 0.4s ease-in-out;
}

input {
  padding: 12px;
  font-size: 1rem;
  margin-top: 10px;
  width: 100%;
  background: black;
  border: 1px solid #00ffff;
  color: #00ffff;
  text-align: center;
  font-family: 'Orbitron', sans-serif;
  border-radius: 4px;
}

button {
  margin-top: 15px;
  padding: 10px 25px;
  background: #00ffff;
  color: #000;
  font-weight: bold;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s;
}

button:hover {
  background: #00cccc;
}

.error {
  color: red;
  margin-top: 10px;
}

.status {
  color: #00ffcc;
  font-weight: bold;
}

.status.offline {
  color: red;
}

.console {
  margin-top: 20px;
  background-color: #001820;
  padding: 10px;
  color: #00ffcc;
  font-family: monospace;
  font-size: 0.9rem;
  border: 1px solid #00cccc;
  border-radius: 5px;
  height: 120px;
  overflow-y: auto;
}
