/* ============================
   Kuykendall Industries Console CSS
   ============================ */

/* Design Tokens */
:root {
  --bg: #08090a;
  --fg: #00ffee;
  --dim: #00ffee20;
  --soft: #999;
  --font: monospace;
}

/* Global Reset */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Canvas Background */
#cortex {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background: transparent;
  pointer-events: none;
}

/* Terminal Shell */
.terminal-shell {
  max-width: 860px;
  width: 100%;
  padding: 2rem;
  background: #000000dd;
  border: 1px solid var(--dim);
  border-radius: 12px;
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.08), inset 0 0 10px rgba(0, 255, 255, 0.05);
  backdrop-filter: blur(2px);
  position: relative;
  z-index: 1;
}

/* Console Block */
.console-block {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--fg);
  white-space: pre-wrap;
  word-wrap: break-word;
  padding: 0;
  margin: 0;
}

/* Link Styling */
.console-block a {
  color: var(--fg);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}
.console-block a:hover {
  color: #00e5cc;
  text-shadow: 0 0 6px rgba(0, 255, 255, 0.5);
}

/* Footer */
footer {
  font-size: 0.75rem;
  color: var(--soft);
  text-align: center;
  position: fixed;
  bottom: 1rem;
  width: 100%;
  z-index: 1;
  pointer-events: none;
}
