body {
  background: #1C2526; /* Dark blue, slightly lighter for hybrid feel */
  color: #E6E6E6; /* Bright off-white for high readability */
  font-family: 'Fira Code', monospace;
  font-size: 16px; /* Improved readability */
  margin: 0;
  padding: 20px;
  line-height: 1.6; /* Better text spacing */
}

.terminal {
  max-width: 800px;
  margin: auto;
  background: #2E3A3B; /* Slightly lighter panel for contrast */
  border: 2px solid #B266FF; /* Light violet border for hybrid accent */
  padding: 20px;
  box-shadow: 0 0 15px rgba(178, 102, 255, 0.3); /* Subtle violet glow */
  border-radius: 5px; /* Softened edges for modern look */
}

.prompt {
  color: #1E90FF; /* Bright blue for terminal prompt */
  font-weight: bold;
  margin-bottom: 15px;
}

h1 {
  color: #9932CC; /* Deep violet for headers */
  font-size: 24px;
  margin-bottom: 10px;
}

p, li {
  color: #E6E6E6; /* Off-white for body text */
}

a {
  color: #1E90FF; /* Blue for links */
  text-decoration: none;
  transition: color 0.2s ease; /* Smooth hover transition */
}

a:hover {
  color: #B266FF; /* Light violet on hover */
  text-decoration: underline;
}

ul {
  list-style: none;
  padding: 0;
}

li {
  margin: 12px 0;
}

/* Ensure images and other content are readable */
img {
  max-width: 100%;
  border: 1px solid #B266FF; /* Light violet border for media */
}