body {
    background-color: #0a0a0a;
    color: #00ff00;
    font-family: 'Courier New', monospace;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    overflow: hidden;
}

.container {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ===== IMAGE STYLES ===== */
.profile-image {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #00ff00;
    opacity: 0;
    animation: fadeIn 2s ease-in forwards;
    margin-bottom: 20px;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* ===== TERMINAL STYLES ===== */
.terminal {
    width: 95%;
    max-width: 800px;
    border: 1px solid #00ff00;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
    text-align: left;
    margin-top: 20px;
    max-height:70vh;
    overflow-y: scroll;
}

.terminal-header {
    background-color: #121212;
    padding: 5px 10px;
    border-bottom: 1px solid #00ff00;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.terminal-buttons {
    display: flex;
    gap: 5px;
}

.terminal-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-btn.red { background-color: #ff5f56; }
.terminal-btn.yellow { background-color: #ffbd2e; }
.terminal-btn.green { background-color: #27c93f; }

.terminal-title {
    font-size: 0.8rem;
    color: #00ff00;
}

.terminal-body {
    background-color: #121212;
    padding: 15px;
    min-height: 200px;
    overflow-y: auto;
}

.command-line {
    display: flex;
    margin: 5px 0;
}

.prompt {
    color: #00ff00;
    margin-right: 5px;
    white-space: nowrap;
}

.command {
    color: #00ff00;
    flex-grow: 1;
}

.response {
    margin: 0 0 10px 15px;
    white-space: pre-wrap;
}

.input-container {
    display: flex;
    margin: 5px 0;
}

.input-line {
    display: flex;
    width: 100%;
}

#command-input {
    background: transparent;
    border: none;
    color: #00ff00;
    font-family: 'Courier New', monospace;
    font-size: 1em;
    width: 100%;
    outline: none;
    flex-grow: 1;
}

.links {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.links a {
    color: #00ff00;
    text-decoration: none;
    border-bottom: 1px dashed #00ff00;
    padding-bottom: 2px;
}

.links a:hover {
    color: #ffffff;
    border-bottom-color: #ffffff;
}

/* Blinking cursor */
.cursor {
    display: inline-block;
    width: 8px;
    height: 16px;
    background-color: #00ff00;
    animation: blink 1s infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

/* Add to your existing CSS */
.input-line2 {
    display: flex;
    margin: 5px 0;
    align-items: flex-start;
}

.input-line2 textarea {
    background: transparent;
    border: 1px solid #00ff00;
    color: #00ff00;
    flex-grow: 1;
    outline: none;
    padding: 5px;
    resize: none;
    min-height: 80px;
    width:400px;
    font-weight:bolder;
}

.submit-line {
    margin-left: 85px;
    margin-top: 10px;
}

#submit-btn {
    background-color: #003300;
    color: #00ff00;
    border: 1px solid #00ff00;
    padding: 5px 15px;
    cursor: pointer;
}

#submit-btn:hover {
    background-color: #005500;
}

.input-line2 input {
    background: transparent;
    border: none;
    color: #00ff00;
    outline: none;
    font-size:16px;
    font-weight:bolder;
}

.input-line2 .prompt {
    min-width: 80px;
    display: inline-block;
}

#submit-btn[disabled] {
    opacity: 0.7;
    cursor: not-allowed;
}

.response-success {
    color: #00ff77;
}

.response-error {
    color: #ff5555;
}
.response ul {
    margin: 0.5em 0;
    padding-left: 1.5em;
}

.response li {
    margin-bottom: 0.3em;
    line-height: 1.4;
}

.terminal-link {
    color: #4af;
    text-decoration: none;
    cursor: pointer;
}

.terminal-link:hover {
    text-decoration: underline;
}