body {
  font-family: monospace;
  background: #0e0e0e;
  color: #e0e0e0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
}

.box {
  background: #1a1a1a;
  border: 2px solid #333;
  padding: 16px;
  width: 380px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

h2 {
  text-transform: uppercase;
  font-size: 14px;
  margin: 0 0 8px 0;
  color: #bbb;
  letter-spacing: 1px;
}

label {
  font-size: 12px;
  color: #aaa;
}

select,
input,
button {
  background: #0e0e0e;
  border: 1px solid #444;
  color: #e0e0e0;
  padding: 4px 6px;
  font-family: monospace;
  font-size: 12px;
  outline: none;
}

select:focus,
input:focus {
  border-color: #888;
}

button {
  cursor: pointer;
  text-transform: uppercase;
  border: 1px solid #666;
  background: #111;
}

button:hover {
  background: #222;
}

#output {
  background: #0e0e0e;
  border: 1px solid #333;
  padding: 8px;
  font-size: 11px;
  word-wrap: break-word;
  margin-top: 6px;
}

footer {
  font-size: 10px;
  color: #666;
  text-align: center;
  margin-top: 12px;
  width: 380px;
  line-height: 1.4;
}
