:root {
    --bg-color: #1e1e2e; /* Dark, slightly warm background */
    --fg-color: #cdd6f4; /* Main text */
    --primary-color: #89b4fa; /* Blue directories/links */
    --user-color: #a6e3a1; /* Green user */
    --command-color: #f38ba8; /* Red/Pink commands */
    --dim-color: #6c7086; /* Comments and dates */
    
    --font-mono: "JetBrains Mono", "Fira Code", "Cascadia Code", Consolas, monospace;
}

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

body {
    background-color: var(--bg-color);
    color: var(--fg-color);
    font-family: var(--font-mono);
    font-size: 16px;
    line-height: 1.6;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

.terminal-container {
    width: 100%;
    max-width: 800px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

/* Prompt Styling */
.prompt-line {
    margin-bottom: 1rem;
    font-weight: bold;
}

.prompt-user { color: var(--user-color); }
.prompt-colon { color: var(--fg-color); }
.prompt-dir { color: var(--primary-color); }
.prompt-symbol { color: var(--fg-color); margin-right: 0.5rem; }
.prompt-command { color: var(--command-color); font-weight: normal; }

/* Navigation */
.terminal-nav {
    margin-bottom: 2rem;
    color: var(--dim-color);
}

.terminal-nav a {
    color: var(--primary-color);
    text-decoration: none;
}

.terminal-nav a:hover {
    text-decoration: underline;
}

/* Fastfetch style system info */
.sys-info {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: center;
}

.ascii-art {
    color: var(--primary-color);
    white-space: pre;
    font-weight: bold;
    line-height: 1.2;
}

.stat-label {
    color: var(--primary-color);
    font-weight: bold;
}

/* Content Styling */
.content-body {
    margin-bottom: 3rem;
}

.content-body h1, 
.content-body h2, 
.content-body h3 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-body h1::before { content: "# "; color: var(--dim-color); }
.content-body h2::before { content: "## "; color: var(--dim-color); }

.content-body p {
    margin-bottom: 1rem;
}

.content-body a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px dashed var(--primary-color);
}

.content-body a:hover {
    background-color: var(--primary-color);
    color: var(--bg-color);
}

/* Lists */
.post-list {
    list-style-type: none;
}

.post-list li {
    margin-bottom: 0.5rem;
    display: flex;
    gap: 1rem;
}

.post-date {
    color: var(--dim-color);
}

/* Code Blocks */
pre {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 4px;
    overflow-x: auto;
    margin-bottom: 1rem;
}

code {
    font-family: var(--font-mono);
    background-color: rgba(0, 0, 0, 0.3);
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
}

pre code {
    background-color: transparent;
    padding: 0;
}

/* Blinking Cursor */
.cursor-blink {
    animation: blink 1s step-end infinite;
    font-weight: bold;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.terminal-footer {
    margin-top: auto;
    padding-top: 2rem;
}
