.content-container {
  width: 100dvw;
  height: 100dvh;
  margin: 0;
  padding: 0;
  background: #0a0a0a;
  color: #33ff33;
  font-family: "Cascadia Code", "Fira Code", "Courier New", Courier, monospace;
  font-size: 1.1rem;
  line-height: 1.4;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  /* Monitor Bezel (Frame) */
  border: 40px solid #b0b0b0;
  border-radius: 0;
  box-shadow: inset 5px 5px 10px rgba(255, 255, 255, 0.3), inset -5px -5px 10px rgba(0, 0, 0, 0.4), 0 10px 40px rgba(0, 0, 0, 0.8), inset 0 0 60px rgba(0, 0, 0, 0.9);
  /* Screen Bevel (Subtle plastic feel) */
  border-top-color: #c8c8c8;
  border-bottom-color: #8c8c8c;
  border-left-color: #a0a0a0;
  border-right-color: #a0a0a0;
  /* Power Indicator */
  /* CRT Screen Overlays (Scanlines) */
  /* Screen Flicker */
}
.content-container::before {
  content: "";
  position: absolute;
  bottom: -32px;
  right: 10px;
  width: 8px;
  height: 8px;
  background: #00ff00;
  border-radius: 50%;
  box-shadow: 0 0 10px #00ff00, 0 0 2px #fff;
  z-index: 10;
  animation: power-glow 2s infinite alternate;
}
.content-container .screen-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.2) 80%), linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.04), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.04));
  z-index: 2;
  background-size: 100% 100%, 100% 3px, 4px 100%;
  pointer-events: none;
}
.content-container::after {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(18, 16, 16, 0.05);
  opacity: 0;
  z-index: 3;
  pointer-events: none;
  animation: flicker 0.15s infinite;
}
.content-container > * {
  position: relative;
  z-index: 1;
  padding: 3rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Terminal Content Styles */
.terminal-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.prompt {
  font-weight: bold;
}
.prompt .user {
  color: #4ade80;
}
.prompt .host {
  color: #3b82f6;
}
.prompt .at {
  color: #fff;
}
.prompt .path {
  color: #fff;
}

.command {
  color: #fff;
}

.output {
  color: #dfdfdf;
  text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  padding-left: 1rem;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: normal;
  margin: 0;
  padding: 0;
  display: block;
  width: fit-content;
}

.cursor {
  display: inline-block;
  width: 0.6em;
  height: 1.2em;
  background: #33ff33;
  margin-left: 2px;
  animation: blink 1s step-end infinite;
  vertical-align: middle;
}

/* Terminal Utilities / Typography Highlights */
.standout {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  color: #66ff66;
}

.highlight {
  background-color: #33ff33;
  color: #0c0c0c;
  padding: 0 4px;
  font-weight: bold;
  box-shadow: 0 0 5px rgba(51, 255, 51, 0.4);
}

.dim {
  opacity: 0.6;
  font-size: 0.9em;
}

.tech-blob {
  color: #33ffff;
  font-style: italic;
}
.tech-blob::before {
  content: "[";
}
.tech-blob::after {
  content: "]";
}

.terminal-container {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.terminal-header, .terminal-footer {
  flex-shrink: 0;
}

.terminal-footer {
  margin-bottom: 50px;
}

.terminal-scrollable {
  flex: 0 1 auto;
  overflow-y: auto;
  margin: 0;
  padding-right: 0.5rem;
  /* Custom CRT Scrollbar */
}
.terminal-scrollable:empty {
  display: none;
}
.terminal-scrollable::-webkit-scrollbar {
  width: 6px;
}
.terminal-scrollable::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 3px;
}
.terminal-scrollable::-webkit-scrollbar-thumb {
  background: #1a801a;
  border: 1px solid #33ff33;
  border-radius: 3px;
  box-shadow: 0 0 5px rgba(51, 255, 51, 0.4);
}

.terminal-separator {
  border: 0;
  border-top: 1px dashed #1a801a;
  margin: 1rem 0;
  opacity: 0.3;
}

/* Terminal Links */
a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  position: relative;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
a:hover, a:focus {
  color: #fff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.8), 0 0 12px rgba(51, 255, 51, 0.4);
  text-decoration-color: #fff;
  outline: none;
}

.alias-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0 1.5rem;
  padding-left: 1rem;
}

.alias-item::before {
  content: "alias ";
  color: #1a801a;
}

@keyframes blink {
  from, to {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
@keyframes power-glow {
  from {
    opacity: 0.8;
    box-shadow: 0 0 5px #00ff00;
  }
  to {
    opacity: 1;
    box-shadow: 0 0 15px #00ff00;
  }
}
@keyframes flicker {
  0% {
    opacity: 0.27861;
  }
  5% {
    opacity: 0.34769;
  }
  10% {
    opacity: 0.23604;
  }
  15% {
    opacity: 0.90626;
  }
  20% {
    opacity: 0.18128;
  }
  25% {
    opacity: 0.83891;
  }
  30% {
    opacity: 0.65583;
  }
  35% {
    opacity: 0.57807;
  }
  40% {
    opacity: 0.26559;
  }
  45% {
    opacity: 0.84693;
  }
  50% {
    opacity: 0.96019;
  }
  55% {
    opacity: 0.08523;
  }
  60% {
    opacity: 0.71313;
  }
  65% {
    opacity: 0.0904;
  }
  70% {
    opacity: 0.62931;
  }
  75% {
    opacity: 0.58214;
  }
  80% {
    opacity: 0.9197;
  }
  85% {
    opacity: 0.38671;
  }
  90% {
    opacity: 0.94273;
  }
  95% {
    opacity: 0.8239;
  }
  100% {
    opacity: 0.10398;
  }
}
/* Subtle Vignette */
.content-container {
  background: radial-gradient(circle, #1a1a1a 0%, #000000 100%);
}

/*# sourceMappingURL=app.output.css.map */
