 h1 {
  font-family: 'Source Serif Pro', serif;
 } 

 body{
    background-color: #0d0d0d;
    color: white;
    font-family: 'Merriweather', serif;
  } 
 .back-btn {
    display: inline-block;
    margin-bottom: 20px;
    padding: 8px 14px;
    border: 1px solid white;
    border-radius: 6px;
    text-decoration: none;
    color: white;
    font-size: 14px;
    transition: all 0.2s ease;
 }
 .back-btn:hover {
    background-color: white;
    color: black;
 
 }

 .project-description {
    margin-bottom: 20px;
    max-width: 600px;
    line-height: 1.5;
 }
.scanner-section {
    margin-bottom: 30px;
}

h1 {
    margin-bottom: 10px;
}
ul li a {
    color: white;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: 0.2s;
}
ul li a:hover {
    border-bottom: 1px solid white;
}
body {
    max-width: 800px;
    margin: auto;
    padding: 20px;
}
.build-notes {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
    max-width: 1.6;
}
.build-notes h2 {
    margin-bottom: 10px;
    font-size: 20px;
}
.page-description {
    max-width: 700px;
    margin: 0 auto 25px auto;
    text-align: center;
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0.9;
}

#about-terminal .terminal {
  background-color: #111;
  color: #e5e5e5;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0,0,0,0.7);
  font-family: "Fira Code", monospace;
}

#purple-terminal {
  max-width: 800px;
  margin: 40px auto;
}

.page-description {
  max-width: 700px;
  margin: 0 auto 25px auto;
  text-align: center;
  font-size: 1rem;
  line-height: 1.5;
  opacity: 0.9;
}

.terminal {
  background-color: #111;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
  font-family: "Fira Code", monospace;
  color: #e5e5e5;
  overflow: hidden;
}

.terminal-header {
  background-color: #222;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.terminal-header .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.terminal-header .red { background-color: #ff5f57; }
.terminal-header .yellow { background-color: #febc2e; }
.terminal-header .green { background-color: #28c840; }

.terminal-title {
  margin-left: 10px;
  font-size: 0.9rem;
  color: #aaa;
}

.terminal-body {
  padding: 12px;
  height: 260px;
  overflow-y: auto;
  font-size: 0.9rem;
  line-height: 1.4;
  white-space: pre-wrap;
  margin-bottom: 0;
  padding-bottom: 5px;
}

#about-terminal .terminal {
  background-color: #111;
  color: #e5e5e5;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0,0,0,0.7);
  font-family: "Fira Code", monospace;
}

.terminal {
  background-color: #111;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0,0,0,0.7);
  font-family: "Fira Code", monospace;
  color: #e5e5e5;
  overflow: hidden;
  padding-bottom: 0;
}

.terminal-header {
  background-color: #222;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.terminal-header .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.terminal-header .red { background-color: #ff5f57; }
.terminal-header .yellow { background-color: #febc2e; }
.terminal-header .green { background-color: #28c840; }

.terminal-title {
  margin-left: 10px;
  font-size: 0.9rem;
  color: #aaa;
}

.terminal-body {
  position: relative;
  z-index: 1;
  padding: 12px;
  min-height: auto;
  text-align: left;
  white-space: pre-wrap;
  line-height: 1.4;
}

.terminal-buttons {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.terminal-buttons button {
  padding: 8px 14px;
  background-color: #222;
  border: 1px solid #444;
  color: #eee;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.2s;
}

.terminal-buttons button:hover {
  background-color: #333;
  border-color: #666;
}
.sub-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.sub-buttons button {
  padding: 6px 12px;
  background-color: #1a1a1a;
  border: 1px solid #444;
  color: #eee;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.2s;
}

.sub-buttons button:hover {
  background-color: #333;
  border-color: #666;
}
.terminal-back {
  display: block;
  text-align: left;
  margin: 10px 0 0 12px;
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
}

.terminal-back:hover {
  color: #fff;
}
:root{
  --bg: #0b0f14;
  --surface: #0f1720;
  --accent: #1793d1;
  --accent-2: #00d1ff;
  --text: #e6eef6;
  --muted: #9aa6b2;
  --glass: rgba(255,255,255,0.04);
  --radius: 8px;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, "Roboto Mono", monospace;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  min-height:100%;
  background:var(--bg);
  color:var(--text);
  font-family:var(--mono);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.4;
}
a{color:var(--accent)}
button{font-family:var(--mono)}



