/* ENTER SYSTEM STYLES */

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background: #050505;
  color: #39ff14;
  font-family: "JetBrains Mono", monospace;
}

.boot-container {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#boot-text {
  font-size: 14px;
  line-height: 1.6;
  white-space: pre-wrap;
  margin-bottom: 40px;
}

.enter-hidden {
  opacity: 0;
  transition: opacity 1s ease;
}

.enter-hidden.show {
  opacity: 1;
}

.enter-link {
  color: #39ff14;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.3em;
  border: 1px solid rgba(57,255,20,0.4);
  padding: 14px 28px;
  transition: all 0.3s ease;
}

.enter-link:hover {
  background: rgba(57,255,20,0.1);
  box-shadow: 0 0 20px rgba(57,255,20,0.4);
}
