.oswald-text {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400; /* Adjust weight as needed */
  font-style: normal;
}

.special-elite-regular-text {
  font-family: "Special Elite", system-ui;
  font-weight: 400;
  font-style: normal;
}

body {
  font-family: "Oswald", sans-serif; /* Sleek font for spy theme */
  margin: 0;
  padding: 0;
  background-color: #121212; /* Dark background */
  color: #e0e0e0; /* Light text for contrast */
}

header {
  background-color: #1a1a1a; /* Darker header */
  color: #e0e0e0;
  padding: 1rem;
  text-align: center;
  border-bottom: 2px solid #ffbf00; /* Amber accent */
  position: relative;
}

header h1 {
  font-size: 2rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.logo-container {
  display: inline-block;
  padding: 0.5rem;
  border-radius: 50%; /* Optional: Make it circular */
  margin-bottom: 0.5rem;
}

header img {
  width: 60px;
  height: 60px;
}

nav {
  margin-top: 0.5rem;
}

nav a {
  color: #ff4500; /* Orange-red accent for links */
  margin: 0 1rem;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

main {
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
  background-color: #1a1a1a;
  border: 1px solid #444;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

footer {
  background-color: #1a1a1a;
  color: #e0e0e0;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
  font-size: 0.9rem;
  border-top: 2px solid #ffbf00; /* Amber accent */
}

footer p {
  margin: 0;
}

.search-bar {
  margin: 1rem auto;
  text-align: center;
}

.search-bar input[type="text"] {
  padding: 0.5rem;
  width: 60%;
  border: 1px solid #444;
  border-radius: 4px;
  background-color: #1a1a1a;
  color: #e0e0e0;
}

.search-bar button {
  padding: 0.5rem 1rem;
  background-color: #ff4500;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

search-bar button:hover {
  background-color: #e63900;
}

.terminal {
  background-color: #000; /* Black terminal background */
  color: #0f0; /* Green text for terminal feel */
  font-family: "Courier New", Courier, monospace; /* Monospace font for terminal */
  padding: 2rem;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 255, 0, 0.5); /* Screen glow */
  max-width: 600px;
  margin: 2rem auto;
  text-align: center;
}

.terminal-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.terminal-subtext {
  font-size: 1rem;
  margin-bottom: 2rem;
}

.terminal-inputs {
  margin-bottom: 1rem;
}

.terminal-input {
  background-color: #000;
  color: #0f0;
  border: 1px solid #0f0;
  padding: 0.5rem;
  margin: 0.5rem 0;
  width: 80%;
  font-family: "Courier New", Courier, monospace;
  font-size: 1rem;
  border-radius: 3px;
}

.terminal-input:focus {
  outline: none;
  box-shadow: 0 0 5px #0f0;
}

.terminal-submit {
  background-color: #0f0;
  color: #000;
  border: none;
  padding: 0.5rem 1rem;
  font-family: "Courier New", Courier, monospace;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 3px;
  text-transform: uppercase;
}

.terminal-submit:hover {
  background-color: #0c0;
}

.terminal-status {
  margin-top: 1rem;
  font-size: 0.9rem;
  font-style: italic;
}

.terminal-submit-link {
  display: inline-block;
  background-color: #0f0; /* Same green as the button */
  color: #000; /* Black text */
  text-decoration: none;
  padding: 0.5rem 1rem;
  font-family: "Courier New", Courier, monospace;
  font-size: 1rem;
  border-radius: 3px;
  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer;
}

.terminal-submit-link:hover {
  background-color: #0c0; /* Slightly darker green on hover */
}

#wordle ul {
  list-style-type: none; /* Removes the bullet points */
  padding: 0; /* Optional: Removes default padding */
  margin: 0; /* Optional: Removes default margin */
}
