.guide-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #cbd5e1;
    line-height: 1.75;
}

/* Header Area */
.guide-header {
    margin-bottom: 32px;
    border-bottom: 1px solid #334155;
    padding-bottom: 24px;
}

.guide-category {
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.72rem;
    font-weight: 700;
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.08);
    border: 1px solid rgba(56, 189, 248, 0.2);
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
}

.guide-header h1 {
    font-size: 2.1rem;
    font-weight: 700;
    margin: 6px 0 16px 0;
    color: #f8fafc;
    line-height: 1.25;
}

/* Meta Line & Byline */
.guide-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.825rem;
    color: #94a3b8;
}

.guide-meta time {
    color: #94a3b8;
}

.guide-meta .meta-dot {
    color: #475569;
    user-select: none;
}

/* Neutral, editorial styling for Author link */
.guide-author {
    color: #94a3b8;
}

.guide-author a {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dotted #64748b;
    transition: color 0.15s ease, border-color 0.15s ease;
}

.guide-author a:hover {
    color: #38bdf8;
    border-bottom-color: #38bdf8;
}

/* Compact Credibility Badge */
.human-badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 4px;
    color: #cbd5e1;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    user-select: none;
}

/* Headings inside Markdown */
.guide-body h2 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-top: 36px;
    margin-bottom: 12px;
    color: #f1f5f9;
    border-bottom: 1px solid #1e293b;
    padding-bottom: 8px;
}

.guide-body h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-top: 28px;
    margin-bottom: 10px;
    color: #e2e8f0;
}

/* Body Content */
.guide-body p {
    margin-bottom: 18px;
    color: #cbd5e1;
}

.guide-body strong {
    color: #f8fafc;
    font-weight: 600;
}

.guide-body a {
    color: #38bdf8;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.guide-body a:hover {
    color: #7dd3fc;
}

.guide-body ul, 
.guide-body ol {
    margin-bottom: 20px;
    padding-left: 24px;
    color: #cbd5e1;
}

.guide-body li {
    margin-bottom: 8px;
}

.guide-body hr {
    border: 0;
    border-top: 1px solid #334155;
    margin: 36px 0;
}

/* Tables */
.guide-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0;
    font-size: 0.95rem;
    background: #1e293b;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #334155;
}

.guide-body th, 
.guide-body td {
    border: 1px solid #334155;
    padding: 12px 16px;
    text-align: left;
}

.guide-body th {
    background: #0f172a;
    color: #f8fafc;
    font-weight: 600;
}

.guide-body td {
    color: #cbd5e1;
}

.guide-body tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.02);
}

/* Callouts / Blockquotes */
.guide-body blockquote {
    margin: 24px 0;
    padding: 14px 18px;
    background: #1e293b;
    border-left: 4px solid #38bdf8;
    border-radius: 0 6px 6px 0;
    color: #e2e8f0;
}

.guide-body blockquote p {
    margin: 0;
}

/* Inline Code Snippets */
.guide-body code {
    background: #1e293b;
    border: 1px solid #334155;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.875em;
    color: #e2e8f0;
}