@charset "utf-8";

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000000; /* Pure Black */
  font-family: 'Consolas', 'Courier New', monospace; /* Monospace font for a tech look */
  line-height: 1.6;
  color: #00ff41; /* Classic Matrix Green text */
}

/* --- Neon Green Accent Links --- */
a {
  color: #00ff41; 
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  border-bottom: 1px transparent;
}

a:hover {
  color: #ffffff; /* White hover for high contrast */
  text-shadow: 0 0 8px #00ff41; /* Glow effect */
  text-decoration: none;
}

#container {
  width: 90%;
  max-width: 1200px;
  margin: 2em auto;
  border: 1px solid #00ff41; /* Green border around the whole site */
  box-shadow: 0 0 15px rgba(0, 255, 65, 0.2);
}

/* --- Header & Navigation --- */
.menu-area ul {
  list-style: none;
  display: flex;
  background: #000000;
  border-bottom: 1px solid #00ff41;
}

.menu-area li {
  flex-grow: 1;
  text-align: center;
}

.menu-area a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00ff41;
  height: 60px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.menu-area a:hover {
  background: #00ff41;
  color: #000000; /* Inverted colors on hover */
}

/* --- Alphabet Jump Bar --- */
.alphabet-nav {
  margin: 20px 0;
  padding: 15px;
  border: 1px solid #00ff41;
  text-align: center;
  background: rgba(0, 255, 65, 0.05);
}

.alphabet-nav a {
  display: inline-block;
  padding: 5px 12px;
  margin: 2px;
  border: 1px solid #00ff41;
  font-size: 0.9em;
}

.alphabet-nav a:hover {
  background: #00ff41;
  color: #000000;
}

/* --- Main Content --- */
article {
  padding: 2em;
  background-color: #000000;
}

.intro {
  text-align: center;
  border: 1px dashed #00ff41;
  padding: 2em;
  margin-bottom: 2em;
}

/* --- Typography --- */
h1, h2, h3 {
  color: #00ff41;
  text-transform: uppercase;
  margin-bottom: 1em;
}

h1 {
  font-size: 3em;
  text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

.letter-heading {
  display: block;
  font-size: 2em;
  border-bottom: 1px solid #00ff41;
  margin-top: 1.5em;
  padding-left: 10px;
}

p {
  color: #00cc33; /* Slightly dimmer green for body text to ease eye strain */
  margin-bottom: 1.2em;
}

/* --- List Styling --- */
ul {
  list-style: none; /* Removed bullets for a cleaner look */
}

li {
  margin: 10px 0;
}

li::before {
  content: "> "; /* Terminal style bullet points */
  color: #00ff41;
}

/* --- Footer --- */
footer {
  text-align: center;
  padding: 2em;
  border-top: 1px solid #00ff41;
  font-size: 0.8em;
  letter-spacing: 1px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .menu-area ul { flex-direction: column; }
  h1 { font-size: 2em; }
}