/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, sans-serif;
    background: #f9f9f9;
    color: #111;
    line-height: 1.6;
    font-size: 14px;
    padding: 20px;
}

/* Hide terminal-specific elements */
.terminal-window {
    background: none;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    max-width: 600px;
    margin: 0;
}

.terminal-header {
    display: none;
}

.terminal-body {
    background: none;
    padding: 0;
    min-height: auto;
}

/* Content container */
.terminal-body,
.post-content,
.readme-content {
    max-width: 600px;
    margin: 0;
    padding: 0;
}

/* Blog header */
.blog-header {
    margin-bottom: 35px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.blog-header h1 {
    font-size: 18px;
    font-weight: bold;
    color: #111;
    margin: 0;
}

/* Navigation */
.nav-back {
    margin-bottom: 30px;
}

.nav-back a {
    color: #0645ad;
    text-decoration: none;
    font-size: 13px;
}

.nav-back a:hover {
    text-decoration: underline;
}

/* Hide terminal prompt styling */
.prompt {
    display: none;
}

/* File listing - convert to simple text */
.file-listing {
    margin-bottom: 30px;
    font-size: 14px;
}

.file {
    margin-bottom: 8px;
    color: #666;
}

.file a {
    color: #0645ad;
    text-decoration: none;
}

.file a:hover {
    text-decoration: underline;
}

.hidden-link {
    color: #666 !important;
    text-decoration: none;
}

.hidden-link:hover {
    color: #333 !important;
    text-decoration: underline;
}

/* Blog posts on homepage */
.blog-posts {
    margin: 30px 0;
}

.post-entry {
    margin-bottom: 35px;
    padding: 0;
    border: none;
    background: none;
}

.post-meta {
    margin-bottom: 6px;
    font-size: 12px;
    color: #666;
}

.post-date {
    margin-right: 12px;
}

.post-tags {
    color: #888;
}

.tag {
    color: #888;
    font-size: 12px;
}

.post-title {
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: bold;
}

.post-title a {
    color: #0645ad;
    text-decoration: none;
}

.post-title a:hover {
    text-decoration: underline;
}

.post-excerpt {
    color: #333;
    font-size: 14px;
    line-height: 1.5;
}

/* Individual post page styling */
.post-header {
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 1px solid #ddd;
}

.post-header h1 {
    color: #111;
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: bold;
}

.post-metadata {
    color: #666;
    font-size: 12px;
}

.post-body {
    color: #111;
    line-height: 1.6;
}

.post-body h2 {
    color: #111;
    margin: 25px 0 12px 0;
    font-size: 16px;
    font-weight: bold;
}

.post-body h3 {
    color: #111;
    margin: 20px 0 8px 0;
    font-size: 14px;
    font-weight: bold;
}

.post-body p {
    margin-bottom: 15px;
}

.post-body ul, .post-body ol {
    margin: 15px 0 15px 25px;
}

.post-body li {
    margin-bottom: 4px;
}

.post-body code {
    background: #f0f0f0;
    color: #111;
    padding: 1px 3px;
    font-family: 'Monaco', 'Menlo', 'Consolas', monospace;
    font-size: 13px;
}

.post-body pre {
    background: #f0f0f0;
    border: 1px solid #ddd;
    padding: 12px;
    overflow-x: auto;
    margin: 15px 0;
    font-family: 'Monaco', 'Menlo', 'Consolas', monospace;
    font-size: 13px;
}

.post-body pre code {
    background: none;
    padding: 0;
}

.post-body blockquote {
    border-left: 3px solid #ccc;
    padding-left: 15px;
    margin: 15px 0;
    color: #555;
    font-style: italic;
}

.post-body a {
    color: #0645ad;
    text-decoration: none;
}

.post-body a:hover {
    text-decoration: underline;
}

.post-body hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 25px 0;
}

.post-body em {
    font-style: italic;
}

.post-body strong {
    font-weight: bold;
}

/* About/README page styling */
.readme-header {
    border-bottom: 1px solid #ddd;
    padding-bottom: 12px;
    margin-bottom: 25px;
}

.readme-header h1 {
    color: #111;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 4px;
}

.readme-header .subtitle {
    color: #666;
    font-size: 12px;
}

.readme-section {
    margin-bottom: 25px;
}

.readme-section h2 {
    color: #111;
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: bold;
}

.readme-section h3 {
    color: #111;
    font-size: 13px;
    margin-bottom: 6px;
    font-weight: bold;
}

.readme-section p {
    margin-bottom: 12px;
    line-height: 1.5;
}

.readme-section ul {
    margin: 12px 0 12px 25px;
}

.readme-section li {
    margin-bottom: 3px;
}

.ascii-art {
    display: none;
}

/* Responsive design */
@media (max-width: 768px) {
    body {
        padding: 15px;
    }
    
    .terminal-window,
    .post-content,
    .readme-content {
        max-width: 100%;
    }
    
    .post-title {
        font-size: 15px;
    }
    
    .post-header h1 {
        font-size: 18px;
    }
}

/* Remove any animations */
@keyframes blink {
    display: none;
} 