/* Matrix-inspired minimalist theme */

:root {
  --bg: #000000;
  --green: #00ff41;
  --green-dim: #00cc33;
  --green-soft: #009922;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--green);
  font-family: "Courier New", Courier, monospace;
  line-height: 1.6;
  text-shadow: 0 0 6px rgba(0, 255, 65, 0.6);
}

/* center content with breathing room */
.terminal {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
}

/* shaded box effect */
.hero {
  border: 1px solid rgba(0, 255, 65, 0.35);
  background: rgba(0, 255, 65, 0.05);
  padding: 20px;
  margin-bottom: 40px;
  box-shadow: 0 0 12px rgba(0, 255, 65, 0.15);
}

/* headings */
h1, h2 {
  font-weight: normal;
  color: var(--green);
  margin-bottom: 8px;
}

h1::after {
  content: "_";
  animation: blink 1s infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.subtitle {
  color: var(--green-dim);
  margin-bottom: 40px;
}

/* links */
a {
  color: var(--green);
  text-decoration: none;
}

a:hover {
  color: white;
}

/* lists */
ul {
  list-style: none;
  padding-left: 0;
}

li::before {
  content: "> ";
  color: var(--green-soft);
}

/* footer */
.footer {
  margin-top: 50px;
  font-size: 0.9rem;
  color: var(--green-soft);
}