.article-system-container {
    --local-accent: #d19a4a;
    --local-border: #222222;
    --local-success: #4caf50;
    
    max-width: 820px;
    margin: 80px auto 120px auto;
    padding: 0 20px;
    font-family: 'JetBrains Mono', Consolas, monospace;
    color: var(--text-main, #e0e0e0);
}

/* --- Terminal Stat Block --- */
.terminal-stat-block {
    font-family: 'JetBrains Mono', Consolas, monospace;
    font-size: 0.9rem;
    background: #050505;
    border: 1px solid var(--local-border);
    border-left: 3px solid var(--local-accent);
    padding: 30px;
    margin-top: 30px;
    color: var(--text-dim, #999999);
}

.stat-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stat-row {
    display: flex;
}

.stat-lbl {
    width: 160px;
    color: var(--local-accent);
    flex-shrink: 0;
}

.stat-val {
    color: var(--text-main, #e0e0e0);
}

.stat-val.success {
    color: var(--local-success);
}

/* --- Transitions --- */
.section-divider {
    border: 0;
    border-top: 1px solid var(--local-border);
    margin: 60px 0;
}

.footer-divider {
    margin: 80px 0 40px 0;
}

/* --- Editorial Header --- */
.editorial-header {
    margin-bottom: 80px;
}

.editorial-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 35px;
    text-align: justify;
}

.editorial-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-dim, #999999);
    font-weight: 400;
    border-left: 2px solid var(--local-accent);
    padding-left: 25px;
    margin: 0;
}

/* --- Editorial Content --- */
.article-content {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--text-main, #e0e0e0);
    max-width: 760px;
    margin: 0 auto;
    text-align: justify;
}

.article-content h2 {
    font-size: 2rem;
    color: #ffffff;
    margin: 100px 0 35px 0;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--local-border);
    font-weight: 600;
}

.article-content h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin: 60px 0 25px 0;
}

.article-content p {
    margin: 30px 0;
}

.article-content a {
    color: var(--local-accent);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.article-content a:hover {
    border-bottom: 1px solid var(--local-accent);
}

.article-content strong {
    color: #ffffff;
    font-weight: 600;
}

/* --- Lists --- */
.article-content ul,
.article-content ol {
    margin: 40px 0;
    padding-left: 0;
    list-style: none;
}

.article-content li {
    margin: 15px 0;
    padding-left: 30px;
    position: relative;
}

.article-content ul li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--local-accent);
    font-weight: bold;
}

/* --- Callouts & Quotes --- */
.article-content blockquote,
.callout,
.quote {
    background: rgba(209, 154, 74, 0.05);
    border: 1px solid rgba(209, 154, 74, 0.15);
    border-left: 4px solid var(--local-accent);
    padding: 35px;
    margin: 60px 0;
    font-size: 1.15rem;
    color: var(--text-main, #e0e0e0);
}

.article-content blockquote p {
    margin: 0;
}

/* --- Code & Pre --- */
.article-content pre {
    background: #000000 !important;
    border: 1px solid var(--local-border);
    padding: 30px;
    margin: 50px 0;
    border-radius: 4px;
    overflow-x: auto;
    font-size: 0.95rem;
    line-height: 1.7;
}

.article-content code {
    color: var(--local-accent);
    background: rgba(255, 255, 255, 0.04);
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 0.9em;
}

.article-content pre code {
    background: transparent;
    padding: 0;
    color: inherit;
    border: none;
}

/* --- Tables --- */
.article-content table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 60px 0;
    border: 1px solid var(--local-border);
}

.article-content th {
    background: #080808;
    color: #ffffff;
    font-weight: 600;
    text-align: justify;
    padding: 20px;
    border-bottom: 1px solid var(s--local-border);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.article-content td {
    padding: 20px;
    border-bottom: 1px solid var(--local-border);
    color: var(--text-dim, #999999);
}

.article-content tr:last-child td {
    border-bottom: none;
}

.article-content tr:hover td {
    background: rgba(255, 255, 255, 0.01);
    color: var(--text-main, #e0e0e0);
}

/* --- Checklist Component --- */
.checklist {
    margin: 60px 0;
    padding: 35px;
    background: #050505;
    border: 1px dashed var(--local-border);
}

.checklist ul li::before {
    content: '[ ]';
    color: var(--text-dim, #999999);
}

.checklist ul li.checked::before {
    content: '[x]';
    color: var(--local-accent);
}

/* --- FAQ Component --- */
.faq {
    margin: 60px 0;
}

.faq details {
    border-bottom: 1px solid var(--local-border);
    padding: 25px 0;
}

.faq summary {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: justify;
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq summary::after {
    content: '+';
    color: var(--local-accent);
    font-size: 1.3rem;
}

.faq details[open] summary::after {
    content: '-';
}

.faq details p {
    margin-top: 20px;
    color: var(--text-dim, #999999);
}

/* --- Author Card Component --- */
.author-card {
    display: flex;
    align-items: center;
    gap: 25px;
    margin: 80px 0;
    padding: 40px;
    border: 1px solid var(--local-border);
    background: #050505;
    position: relative;
}

.author-card::before {
    content: '';
    position: absolute;
    top: 0; 
    left: -1px;
    width: 3px;
    height: 100%;
    background: var(--local-accent);
}

.author-card img,
.author-avatar {
    width: 80px;
    height: 80px;
    margin: 0;
    border: 1px solid var(--local-border);
    filter: grayscale(100%);
}

.author-info h4 {
    margin: 0 0 8px 0;
    font-size: 1.3rem;
    color: #ffffff;
}

.author-info p {
    margin: 0;
    font-size: 1rem;
    color: var(--text-dim, #999999);
}

/* --- CTA Component --- */
.cta {
    margin: 60px 0;
    padding: 40px;
    text-align: center;
    border: 1px solid var(--local-accent);
    background: rgba(209, 154, 74, 0.05);
}

.cta a {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background: var(--local-accent);
    color: #000000;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
}

/* --- Terminal EOF Block --- */
.terminal-eof-block {
    margin: 40px 0 20px 0;
    font-size: 0.95rem;
}

.terminal-eof-block .prompt {
    color: var(--local-accent);
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .article-system-container {
        padding: 0 20px;
        margin: 40px auto;
    }

    .editorial-title {
        font-size: 2.3rem;
        text-align: justify;
    }

    .stat-row {
        flex-direction: column;
        gap: 4px;
    }

    .stat-lbl {
        width: auto;
    }

    .author-card {
        flex-direction: column;
        text-align: center;
    }
}