/* latin-ext */
@font-face {
  font-family: 'Fira Code';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/firacode-400-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Fira Code';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/firacode-400-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext bold */
@font-face {
  font-family: 'Fira Code';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/firacode-700-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin bold */
@font-face {
  font-family: 'Fira Code';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/firacode-700-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

body {
    font-family: 'Fira Code', monospace;
    background-color: #0c0c0c; 
    color: #d1d1d1;
    line-height: 1.6;
}
.terminal-border { border: 1px solid #1f2937; }
.scanline {
    width: 100%; height: 2px;
    background: rgba(74, 222, 128, 0.1);
    position: absolute; animation: scan 4s linear infinite;
}
@keyframes scan { from { top: 0; } to { top: 100%; } }
.prompt::before { content: "pliniofm@linux:~$ "; color: #4ade80; font-weight: bold; }
.dir { color: #60a5fa; font-weight: bold; }
.exe { color: #f87171; font-weight: bold; }
.comment { color: #6b7280; font-style: italic; }
.output-box { 
    background: #161616; 
    border: 1px solid #333; 
    padding: 20px;
    border-left: 4px solid #4ade80;
}
.cursor { display: inline-block; width: 8px; height: 18px; background: #4ade80; animation: blink 1s infinite; vertical-align: middle; margin-top: -5px;}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0c0c0c; }
::-webkit-scrollbar-thumb { background: #333; }
img { filter: grayscale(1) contrast(1.2) brightness(0.8); border: 1px solid #333; }
img:hover { filter: none; border-color: #4ade80; transition: 0.3s; }
