:root {
    --bg-dark: #121212;
    --surface: #1e1e1e;
    --text-main: #e0e0e0;
    --text-dim: #b0b0b0;
    --accent: #00e5ff; /* Cyan for links */
    --highlight: #ffd700; /* Gold for emphasis */
    --border: #333;
}

body {
    font-family: 'Inter', Arial, sans-serif; /* "Inter" is a top 2026 font for readability */
    line-height: 1.7;
    color: var(--text-main);
    background-color: var(--bg-dark);
    margin: 0;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: #000;
    border-bottom: 2px solid var(--accent);
    padding: 20px 0;
}

header h1 {
    color: var(--accent);
    margin: 0;
    font-size: 1.8rem;
}

/* The Content Cards */
.post-preview {
    background: var(--surface);
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent); /* DoC style accent bar */
    border-radius: 4px;
}

.post-preview h2 {
    margin-top: 0;
    color: #fff;
}

/* Links & Buttons */
a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

a:hover {
    text-decoration: underline;
    color: var(--highlight);
}

.read-more {
    display: inline-block;
    margin-top: 10px;
    color: var(--highlight);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* Sidebar Widgets */
.sidebar-widget {
    background: var(--surface);
    padding: 20px;
    border: 1px solid var(--border);
    margin-bottom: 20px;
}

.sidebar-widget h3 {
    color: var(--accent);
    border-bottom: 1px solid var(--border);
    padding-bottom: 10px;
}