/* =========================================
   /// MASTER STYLESHEET ///
   ========================================= */

/* --- CORE TYPOGRAPHY & BACKGROUND --- */
body {
  background-color: #050505;
  color: #39ff14; 
  font-family: "Courier New", Courier, monospace;
  margin: 0;
  padding: 10px;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 2px, #0a0a0a 2px, #0a0a0a 4px); 
  cursor: crosshair; 
}

/* --- HEADINGS --- */
h1 {
  text-align: center;
  color: #ff00ff; 
  text-shadow: 2px 2px #00ffff; 
  border: 2px dashed #00ffff;
  padding: 10px;
  letter-spacing: 2px;
}

h2, h3 {
  color: #00ffff;
  border-bottom: 1px solid #39ff14;
  padding-bottom: 5px;
}

/* --- LAYOUT STRUCTURE --- */
.container {
  display: table;
  width: 100%;
  min-height: 75vh;
}

.nav {
  display: table-cell;
  width: 20%;
  border: 2px solid #39ff14;
  padding: 15px;
  vertical-align: top;
  background-color: #020202;
}

.content {
  display: table-cell;
  width: 80%;
  border: 2px solid #ff00ff;
  padding: 15px;
  background-color: #020202;
  vertical-align: top; /* <--- ALIGNMENT FIX APPLIED HERE */
}

iframe {
  width: 100%;
  height: 100%;
  min-height: 75vh; /* <--- HEIGHT STRETCH FIX APPLIED HERE */
  border: none;
}

/* --- LINKS --- */
a {
  color: #00ffff;
  text-decoration: none;
  font-weight: bold;
  display: block;
  margin-bottom: 15px;
}

a:hover {
  color: #050505;
  background-color: #39ff14; 
}

/* --- RETRO ELEMENTS --- */
marquee {
  background-color: #000080; 
  color: white;
  font-weight: bold;
  padding: 5px;
  border: 1px solid white;
}

hr {
  border: 1px dashed #39ff14;
  margin: 20px 0;
}

.highlight {
  color: #ff00ff;
  font-weight: bold;
}

/* --- CUSTOM UTILITY CLASSES --- */

/* Useful for terminal outputs or code blocks */
.terminal-block {
  background-color: #000;
  color: #ccc;
  border: 1px solid #555;
  padding: 10px;
  font-family: monospace;
  white-space: pre-wrap;
}

/* Useful for organized lists like hardware specs or tables */
.sys-spec-table {
  width: 100%;