html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  background: #0a0a0e;
}

#warning-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  color: #fff;
}

.warning-content {
  background-color: #000000;
  border: 1px solid #333333;
  padding: 30px;
  max-width: 600px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

.warning-content h1 {
  color: #cccccc;
  margin-top: 0;
}

.warning-content p {
  margin: 15px 0;
  line-height: 1.5;
  color: #aaaaaa;
}

#enter-button {
  background-color: #000000;
  color: #cccccc;
  border: 1px solid #333333;
  padding: 15px 30px;
  margin-top: 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  cursor: pointer;
}

#enter-button:hover {
  color: #ffffff;
}

#stars {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
}

#text {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 1;
  pointer-events: none;
  font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: #fff;
  font-size: clamp(36px, 8vw, 128px);
  filter: drop-shadow(0 0 12px rgba(255,255,255,.18)) drop-shadow(0 0 36px rgba(255,255,255,.09));
  text-shadow: 0 0 1px rgba(255,255,255,.5);
}

.twitter-link {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
}

.twitter-link a {
  color: #aaaaaa; 
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 14.7px; 
}

.twitter-link a:hover {
  text-decoration: underline;
}

#cli {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 600px;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 5px;
  padding: 20px;
  font-family: monospace;
  color: #ddd;
  z-index: 10;
}

#cli-output {
  min-height: 20px;
  max-height: 200px;
  margin-bottom: 10px;
  white-space: pre-line;
  overflow-y: auto;
  font-size: 14px;
  line-height: 1.4;
}

#cli-input-line {
  display: flex;
}

#prompt {
  color: #0f0;
  margin-right: 5px;
}

#cli-input {
  flex: 1;
  background: transparent;
  border: none;
  color: #ddd;
  font-family: monospace;
  font-size: 16px;
  outline: none;
}