html,
body {
  background-color: #000000;
  color: #00ff66;
  font-family: "Courier New", monospace;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}
body {
  padding: 50px;
}
a {
  color: #00ff99;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.container {
  max-width: 800px;
  margin: 3rem auto;
  padding: 1rem;
  border: 1px solid #009944;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.85);
  -webkit-box-shadow: 0 0 20px rgba(0, 153, 68, 0.2);
          box-shadow: 0 0 20px rgba(0, 153, 68, 0.2);
}
h1 {
  color: #00ff99;
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}
form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
input[type="text"] {
  background: #000000;
  color: #00ff66;
  border: 1px solid #009944;
  padding: 0.5rem 0.8rem;
  font-family: inherit;
  font-size: 1rem;
  width: 100%;
  max-width: 300px;
}
input[type="text"]:focus {
  outline: none;
  border-color: #00ff99;
  -webkit-box-shadow: 0 0 5px #00ff99;
          box-shadow: 0 0 5px #00ff99;
}
button,
input[type="submit"] {
  background: #009944;
  color: #000000;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
button:hover,
input[type="submit"]:hover {
  background: #00ff99;
}
.error {
  color: #ff4444;
  background: #330000;
  padding: 0.5rem;
  border: 1px solid #660000;
  margin-bottom: 1rem;
  text-align: center;
}
pre {
  background: #001100;
  color: #33cc66;
  border: 1px solid #009944;
  padding: 1rem;
  overflow-x: auto;
  white-space: pre-wrap;
  word-wrap: break-word;
  border-radius: 5px;
  font-size: 0.9rem;
}
.meta {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #33cc66;
}
.meta strong {
  color: #00ff99;
}
.badge {
  display: inline-block;
  background: #00ff66;
  color: #000000;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  font-size: 0.8rem;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  position: relative;
  top: -3px;
}
h2 a {
  position: relative;
  top: 7px;
  color: #b30000;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
}
h2 a:hover {
  color: red;
}
