/* LOUIS' CORTEX - NFO File Theme */

@font-face {
  font-family: 'IBM VGA';
  src: local('Courier New'), local('Consolas'), local('monospace');
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  background: #0a0a12;
  color: #b8b8b8;
  font-family: 'Courier New', Consolas, monospace;
  line-height: 1.4;
  padding: 1rem;
  display: flex;
  justify-content: center;
}

.nfo {
  white-space: pre;
  overflow-x: auto;
  min-width: min-content;
}

/* Colors for special elements */
.cyan { color: #00d4d4; }
.green { color: #00ff66; }
.magenta { color: #ff00ff; }
.white { color: #ffffff; }
.dim { color: #666666; }

/* Links */
a {
  color: #00d4d4;
  text-decoration: none;
}

a:hover {
  color: #00ff66;
  text-decoration: underline;
}

/* Selection */
::selection {
  background: #00d4d4;
  color: #0a0a12;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #0f0f1a;
}

::-webkit-scrollbar-thumb {
  background: #333344;
}

::-webkit-scrollbar-thumb:hover {
  background: #00d4d4;
}
