* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
}
@font-face {
    font-family: 'Terminal';
    src: local('Courier New'), local('Courier'), local('monospace');
    font-display: swap;
}
body {
    font-family: 'Courier New', 'Courier', 'Consolas', 'Monaco', 'Lucida Console', monospace;
    background: #000000;
    color: #00ff00;
    min-height: 100vh;
    padding: 20px;
    line-height: 1.7;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: "liga" 1, "kern" 1;
}
.terminal {
    max-width: 1000px;
    margin: 0 auto;
    background: #000000;
    border: 2px solid #00ff00;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}
.prompt {
    color: #00ff00;
    font-weight: normal;
    letter-spacing: 0.02em;
}
.command {
    color: #ffff00;
    font-weight: normal;
    letter-spacing: 0.01em;
}
.output {
    color: #00ff00;
    margin: 10px 0;
    line-height: 1.8;
    letter-spacing: 0.01em;
}
#w-output {
    white-space: pre;
    font-family: 'Courier New', 'Courier', 'Consolas', 'Monaco', 'Lucida Console', monospace;
    overflow-x: auto;
    line-height: 1.6;
    letter-spacing: 0.02em;
    font-size: 0.95em;
}
.readme-output {
    overflow-x: auto;
}
.readme-output pre {
    white-space: pre-wrap;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    line-height: 1.75;
    letter-spacing: 0.01em;
    font-family: 'Courier New', 'Courier', 'Consolas', 'Monaco', 'Lucida Console', monospace;
}
.header {
    border-bottom: 1px solid #00ff00;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.header pre {
    color: #ffffff;
    font-size: 0.9em;
    white-space: pre-wrap;
    line-height: 1.5;
    letter-spacing: 0.02em;
    font-family: 'Courier New', 'Courier', 'Consolas', 'Monaco', 'Lucida Console', monospace;
}
.project {
    margin: 20px 0;
    padding: 15px;
    border-left: 3px solid #00ff00;
    background: rgba(0, 255, 0, 0.05);
}
.project-title {
    color: #ffff00;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 1.05em;
    letter-spacing: 0.02em;
    line-height: 1.6;
}
.project-desc {
    color: #00ff00;
    margin: 8px 0;
    line-height: 1.75;
    letter-spacing: 0.01em;
}
.project-link {
    color: #00ffff;
    text-decoration: none;
    letter-spacing: 0.01em;
    font-family: 'Courier New', 'Courier', 'Consolas', 'Monaco', 'Lucida Console', monospace;
}
        .project-link:focus {
            outline: 1px dashed #00ff00;
            outline-offset: 2px;
        }
.info {
    margin: 15px 0;
    padding: 10px;
    border: 1px dashed #00ff00;
    line-height: 1.75;
    letter-spacing: 0.01em;
}
.cursor {
    display: inline-block;
    width: 8px;
    height: 16px;
    background: #00ff00;
    animation: blink 1s infinite;
}
@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}
.separator {
    color: #00ff00;
    margin: 15px 0;
}
.separator pre {
    font-family: 'Courier New', 'Courier', 'Consolas', 'Monaco', 'Lucida Console', monospace;
    letter-spacing: 0.02em;
    line-height: 1.4;
}
.login-line {
    margin: 5px 0;
    line-height: 1.7;
    letter-spacing: 0.02em;
    font-family: 'Courier New', 'Courier', 'Consolas', 'Monaco', 'Lucida Console', monospace;
}
.login-input {
    color: #00ff00;
    display: inline;
}
.password-input {
    color: #00ff00;
}
.hidden {
    display: none !important;
}
.typing-cursor {
    display: inline-block;
    width: 8px;
    height: 16px;
    background: #00ff00;
    animation: blink 0.7s infinite;
    vertical-align: middle;
}
.boot-message {
    color: #888888;
    margin: 2px 0;
    line-height: 1.6;
    letter-spacing: 0.01em;
    font-family: 'Courier New', 'Courier', 'Consolas', 'Monaco', 'Lucida Console', monospace;
}
.boot-message.success {
    color: #00ff00;
}
.boot-message.info {
    color: #00ffff;
}
.content-section {
    display: none;
}
.content-section.visible {
    display: block;
}
#boot-sequence {
    position: relative;
}
.interactive-terminal {
    margin-top: 20px;
}
.command-hint {
    color: #888888;
    font-size: 0.9em;
    margin-bottom: 5px;
    font-style: italic;
}
.command-input-wrapper {
    display: flex;
    align-items: center;
    margin: 10px 0;
}
.command-input {
    background: transparent;
    border: none;
    color: #00ff00;
    font-family: 'Courier New', 'Courier', 'Consolas', 'Monaco', 'Lucida Console', monospace;
    font-size: inherit;
    outline: none;
    flex: 1;
    padding: 0;
    margin-left: 5px;
    letter-spacing: 0.02em;
    line-height: 1.6;
}
.command-input:focus {
    outline: 1px dashed #00ff00;
    outline-offset: 2px;
}
.command-history {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 10px;
}
.command-output {
    color: #00ff00;
    white-space: pre-wrap;
    word-wrap: break-word;
    margin: 5px 0;
    line-height: 1.75;
    letter-spacing: 0.01em;
    font-family: 'Courier New', 'Courier', 'Consolas', 'Monaco', 'Lucida Console', monospace;
}
.command-error {
    color: #ff0000;
}
.command-success {
    color: #00ff00;
}
.command-help {
    color: #00ffff;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #00ff00;
    color: #000000;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}
.skip-link:focus {
    top: 0;
}
@media (max-width: 768px) {
    body {
        padding: 10px;
        font-size: 12px;
    }
    .terminal {
        padding: 10px;
        border-width: 1px;
    }
    .header pre {
        font-size: 6px;
        line-height: 1.2;
        overflow-x: auto;
    }
    #w-output {
        font-size: 10px;
    }
    .readme-output pre {
        font-size: 11px;
    }
    .project-title {
        font-size: 12px;
    }
    .project-desc {
        font-size: 11px;
    }
    .info {
        padding: 5px;
    }
    .separator pre {
        font-size: 8px;
        overflow: hidden;
    }
            .command-history {
                max-height: 200px;
            }
        }
.copy-btn {
    display: inline-block;
    margin-left: 8px;
    padding: 1px 4px;
    background: transparent;
    border: none;
    color: #888888;
    cursor: pointer;
    font-size: 0.75em;
    text-decoration: none;
    font-family: 'Courier New', 'Courier', 'Consolas', 'Monaco', 'Lucida Console', monospace;
    transition: color 0.2s ease;
    vertical-align: baseline;
    letter-spacing: 0.01em;
    line-height: 1.4;
}
        .copy-btn:focus {
            outline: 1px dashed #00ff00;
            outline-offset: 2px;
        }
        .copy-btn.copied {
            color: #00ff00;
        }
        .section {
            scroll-margin-top: 20px;
        }
        .typing-command,
        .typing-output {
            display: inline-block;
        }
        .typing-command {
            border-right: 2px solid #00ff00;
            animation: blink-cursor 0.7s step-end infinite;
        }
        .typing-output {
            white-space: pre-wrap;
            word-wrap: break-word;
        }
        @keyframes blink-cursor {
            from, to { border-color: transparent; }
            50% { border-color: #00ff00; }
        }
@media (max-width: 480px) {
    body {
        padding: 5px;
        font-size: 11px;
    }
    .terminal {
        padding: 8px;
    }
    .header pre {
        font-size: 4.5px;
        letter-spacing: -0.5px;
    }
    #w-output {
        font-size: 9px;
    }
    .readme-output pre {
        font-size: 10px;
    }
}
@media (max-width: 768px) {
    .info > .output[style*="flex"] {
        flex-direction: column !important;
        gap: 10px !important;
    }
    .info > .output[style*="flex"] pre:first-child {
        font-size: 8px !important;
        text-align: center;
    }
    .info > .output[style*="flex"] pre:last-child {
        font-size: 11px !important;
    }
}

