body {
  font-family: 'IBM Plex Mono', monospace;
  background-color: #0a0a0a;
  color: #00ff00;
}

/* Override jekyll-theme-hacker heading colors */
h1, h2, h3, h4, h5, h6, header h1 {
  color: #00ff00;
}

/* Navigation Styles */
.nav-container {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  position: relative;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #00ff00;
  text-decoration: none;
  padding: 5px 10px;
  border: 1px solid #00ff00;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  background-color: #00ff00;
  color: #0a0a0a;
  text-shadow: none;
}

/* Mobile styles for navigation */
@media screen and (max-width: 600px) {
  .nav-container {
    flex-direction: column;
    align-items: center;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 5px;
  }

  .nav-links a {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    margin-bottom: 5px;
  }
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  margin: 10px 5px;
  background-color: transparent;
  color: #00ff00;
  border: 1px solid #00ff00;
  text-decoration: none;
  font-family: 'IBM Plex Mono', monospace;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #00ff00;
  color: #0a0a0a;
  text-shadow: none;
}

.ascii-banner {
  font-family: monospace;
  white-space: pre;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #00ff00;
  font-size: 0.7em;
  overflow-x: auto;
}

/* Adjust ASCII banner for mobile devices */
@media screen and (max-width: 600px) {
  .ascii-banner {
    font-size: 0.25em; /* Even smaller font size for mobile */
  }
}

/* Extra small devices */
@media screen and (max-width: 375px) {
  .ascii-banner {
    font-size: 0.18em; /* Extremely small font for very small devices */
  }
}

.cta-container {
  margin: 30px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.case-study {
  margin-bottom: 40px;
  border-left: 3px solid #00ff00;
  padding-left: 20px;
}

.terminal-quote {
  background-color: #111;
  border: 1px solid #00ff00;
  padding: 15px;
  margin: 15px 0;
  position: relative;
  font-style: italic;
}

.terminal-quote:before {
  content: "$ echo ";
  color: #888;
  font-style: normal;
}

/* Form styles */
.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 10px;
  background-color: #111;
  border: 1px solid #00ff00;
  color: #00ff00;
  font-family: 'IBM Plex Mono', monospace;
}

input[type="checkbox"] + label {
  display: inline;
  margin-left: 10px;
}

/* Code block for PGP key */
pre {
  background-color: #111;
  padding: 15px;
  overflow-x: auto;
  border: 1px solid #333;
}

/* Form button styling to match .btn class */
button[type="submit"].btn {
  cursor: pointer;
  font-size: 16px;
  margin-top: 10px;
}