/* LifeNode — TOTAL FATALITY mode
   dark cyber-terminal theme inspired by Deus Ex / Blade Runner
*/

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Roboto+Mono:wght@400;700&display=swap');

html, body {
  background-color: #000;
  color: #d6af63;
  font-family: 'Roboto Mono', monospace;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

h1, h2, h3 {
  font-family: 'Orbitron', sans-serif;
  color: #ffcc33;
  text-shadow: 0 0 8px #ff3300;
  letter-spacing: 1px;
}

a {
  color: #ff6633;
  text-decoration: none;
  border-bottom: 1px dotted #ff6633;
  transition: all 0.2s ease-in-out;
}

a:hover {
  color: #ffe680;
  border-bottom: 1px solid #ffe680;
  text-shadow: 0 0 6px #ffcc33;
}

header, footer {
  text-align: center;
  padding: 1rem;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  background: linear-gradient(to right, #190000 0%, #000 50%, #190000 100%);
  box-shadow: 0 0 20px #330000;
}

main {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
}

code, pre {
  background: #111;
  color: #ffcc99;
  padding: 2px 6px;
  border-radius: 4px;
}

hr {
  border: 0;
  height: 1px;
  background: radial-gradient(circle, #ffcc33 0%, transparent 70%);
  margin: 2rem 0;
}

img {
  display: block;
  margin: 1rem auto;
  max-width: 100%;
  border: 1px solid #ffcc33;
  box-shadow: 0 0 12px #331100;
  border-radius: 4px;
}

/* navigation bar (top links) */
nav {
  text-align: center;
  padding: 0.7rem;
  background: #0a0000;
  box-shadow: 0 0 10px #330000;
}
nav a {
  margin: 0 1rem;
  color: #ffcc66;
}
nav a:hover {
  color: #ffffff;
  text-shadow: 0 0 6px #ff6600;
}

/* subtle glow animation for headers */
@keyframes pulse {
  0% { text-shadow: 0 0 6px #ff3300; }
  50% { text-shadow: 0 0 16px #ff6600; }
  100% { text-shadow: 0 0 6px #ff3300; }
}
h1 {
  animation: pulse 3s infinite;
}
