* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000000;
    font-family: 'Consolas', 'Monaco', 'Lucida Console', 'Liberation Mono', 'DejaVu Sans Mono', 'Courier New', monospace;
    color: #00ff00;
    padding: 20px;
    line-height: 1.6;
}

.terminal {
    max-width: 900px;
    margin: 0 auto;
    background: #0a0a0a;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.2);
    overflow: hidden;
}

.terminal-header {
    background: #1a1a1a;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.btn-close { 
    background: #ff5f56; 
}

.btn-minimize { 
    background: #ffbd2e; 
}

.btn-maximize { 
    background: #27c93f; 
}

.terminal-title {
    margin-left: auto;
    color: #888;
    font-size: 12px;
}

.terminal-body {
    padding: 20px;
    min-height: 500px;
}

.line {
    margin-bottom: 8px;
    opacity: 0;
    animation: fadeIn 0.3s forwards;
}

.line-nav {
    padding-left: 0 !important;
    margin-left: 0 !important;
}

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

.prompt {
    color: #00ff00;
}

.command {
    color: #00d4ff;
}

.comment {
    color: #6a9955;
}

.output {
    color: #cccccc;
    padding-left: 20px;
}

.nav-links {
    color: #cccccc;
    text-align: center;
    display: block;
    padding: 0;
    margin: 0;
    width: 100%;
}

.success {
    color: #4ec9b0;
}

.warning {
    color: #ffa500;
}

.error {
    color: #ff6b6b;
}

.cursor {
    display: inline-block;
    width: 10px;
    height: 18px;
    background: #00ff00;
    animation: blink 1s step-end infinite;
    margin-left: 2px;
}

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

a {
    color: #00d4ff;
    text-decoration: none;
    cursor: pointer;
}

a:hover {
    text-decoration: underline;
    color: #00ffff;
}

.clickable {
    cursor: pointer;
    transition: color 0.2s;
}

.clickable:hover {
    color: #00ffff;
}