:root {
  --terminal-green: #33ff33;
  --terminal-dark: #0a0a0a;
  --terminal-dim: #1a5c1a;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--terminal-dark);
  color: var(--terminal-green);
}

body {
  font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
  font-size: 14px;
  line-height: 1.5em;
  text-shadow: 0 0 3px rgba(51, 255, 51, 0.5);
}

/* CRT scanline effect */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.15),
    rgba(0, 0, 0, 0.15) 1px,
    transparent 1px,
    transparent 2px
  );
  z-index: 1000;
}

/* CRT vignette */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 60%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 999;
}

h1, h2, h3 {
  font-weight: normal;
  margin: 0;
}
h1 {
  font-size: 3em;
  line-height: 1em;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0 0 10px var(--terminal-green), 0 0 20px rgba(51, 255, 51, 0.5);
}
h2 {
  margin-bottom: 0.5em;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--terminal-dim);
  padding-bottom: 0.25em;
}
h3 {
  letter-spacing: 1px;
}
h3 span {
  text-align: center;
}
h3 span+span {
  margin-left: 1em;
  font-size: 0.8em;
  opacity: 0.7;
}

a {
  color: var(--terminal-green);
  text-decoration: none;
  border-bottom: 1px dashed var(--terminal-green);
}
a:hover {
  text-shadow: 0 0 10px var(--terminal-green);
}

header {
  margin-top: 1em;
}
p {
  margin: 0;
}
ul {
  margin: 0;
}
section+section {
  margin-top: 1em;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2em;
}
.content {
  margin: 1.5em 0 2em 0;
}
.contact {
  margin: 0.5em 0 1.5em 0;
}
.contact article {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.contact ul li {
  margin: 0 0.5em;
}
.contact ul li+li::before {
  content: '| ';
  opacity: 0.5;
}

.employment section {
  padding: 0.5em 0;
  border-bottom: 1px solid var(--terminal-dim);
}
.employment section:last-child {
  border-bottom: none;
}

/* Print styles - clean black on white */
@media print {
  @page {
    margin: 0.75in;
  }

  :root {
    --terminal-green: #000;
    --terminal-dark: #fff;
    --terminal-dim: #ccc;
  }

  html {
    background: #fff !important;
    color: #000 !important;
  }

  body {
    font-size: 11px;
    text-shadow: none !important;
  }

  body::before,
  body::after {
    display: none !important;
  }

  h1 {
    font-size: 2.5em;
    text-shadow: none !important;
  }

  h2 {
    border-bottom-color: #ccc;
  }

  a {
    color: #000 !important;
    border-bottom: none;
    text-decoration: underline;
  }

  .container {
    max-width: 100%;
    padding: 0;
    margin: 0;
  }

  .contact ul li+li::before {
    content: '· ';
  }

  .employment section {
    border-bottom-color: #eee;
  }
}
