body {
    background-color: black;
    color: green;
    font-family: monospace;
    margin: 0;
    padding: 0;
  }
  
  #terminal-container {
    width: 80%;
    margin: 50px auto;
    border: 2px solid green;
    padding: 10px;
    box-sizing: border-box;
    height: 500px;
    overflow-y: auto; /* so it can scroll if content is long */
  }
  
  #output {
    white-space: pre-wrap;
    margin-bottom: 10px;
  }
  
  #input-line {
    display: flex;
    align-items: center;
  }
  
  #input-line span {
    margin-right: 5px;
    color: lightgreen;
  }
  
  #terminal-input {
    background-color: black;
    color: green;
    border: none;
    outline: none;
    flex: 1;
    font-family: monospace;
    font-size: 16px;
  }

/* Portfolio page styles */
.portfolio-body {
    background-color: black;
    color: green;
    font-family: monospace;
    margin: 0;
    padding: 20px;
    line-height: 1.6;
    font-weight: 1000;
}

.portfolio-body .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.portfolio-body .header {
    text-align: center;
    margin-bottom: 40px;
}

.portfolio-body .profile-image {
    width: 200px;
    height: 200px;
    border-radius: 8px;
    margin-bottom: 20px;
    image-rendering: pixelated;
    border: 2px solid green;
}

.portfolio-body .name {
    font-size: 32px;
    font-weight: bold;
    color: lightgreen;
}

.portfolio-body .subtitle {
    font-size: 20px;
    color: #90EE90;
    margin-top: 4px;
}

.portfolio-body h1 {
    color: lightgreen;
    font-size: 28px;
    border-bottom: 2px solid green;
    padding-bottom: 10px;
    margin-top: 40px;
}

.portfolio-body h2 {
    color: #90EE90;
    font-size: 22px;
    margin-top: 30px;
}

.portfolio-body h3 {
    color: #98FB98;
    font-size: 18px;
    margin-top: 20px;
}

.portfolio-body .project {
    margin-bottom: 30px;
    padding: 20px;
    border: 1px solid green;
    border-radius: 8px;
}

.portfolio-body .project h2 {
    margin-top: 0;
}

.portfolio-body .video, .portfolio-body .image {
    max-width: 100%;
    height: auto;
    border: 1px solid green;
    border-radius: 4px;
    margin: 10px 0;
}

.portfolio-body a {
    color: lightgreen;
    text-decoration: underline;
}

.portfolio-body a:hover {
    color: #90EE90;
}

.portfolio-body .emoji {
    color: yellow;
}

.portfolio-body .media-container {
    margin: 15px 0;
}

.portfolio-body .github-link {
    display: inline-block;
    margin: 10px 0;
    padding: 8px 12px;
    border: 1px solid green;
    border-radius: 4px;
    background-color: rgba(0, 255, 0, 0.1);
}

.portfolio-body .quicklinks {
    text-align: center;
    margin: 30px 0 40px 0;
}

.portfolio-body .quicklinks a {
    display: inline-block;
    margin: 0 15px 10px 0;
    padding: 8px 16px;
    border: 1px solid green;
    border-radius: 4px;
    background-color: rgba(0, 255, 0, 0.1);
    text-decoration: none;
    color: lightgreen;
    transition: background-color 0.3s;
}

.portfolio-body .quicklinks a:hover {
    background-color: rgba(0, 255, 0, 0.2);
}

/* Project facts list */
.portfolio-body .project-facts {
    list-style: none;
    padding-left: 0;
    margin: 10px 0 15px 0;
    font-size: 14px;
}

.portfolio-body .project-facts li {
    margin: 4px 0;
}

.portfolio-body .project-facts strong {
    color: #90EE90;
}

/* Development stage badges */
.portfolio-body .badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.65em;
    font-weight: bold;
    text-transform: uppercase;
    margin-left: 8px;
    vertical-align: middle;
    border: 1px solid;
}

.portfolio-body .beta-badge {
    background-color: rgba(0, 255, 0, 0.2);
    color: #90EE90;
    border-color: #90EE90;
}

.portfolio-body .alpha-badge {
    background-color: rgba(255, 255, 0, 0.2);
    color: yellow;
    border-color: yellow;
}

/* Section subtitles */
.portfolio-body .section-subtitle {
    font-style: italic;
    color: #98FB98;
    margin-top: 5px;
    margin-bottom: 15px;
}
  