/* 
 * MS Blog Interface - Corporate Executive Edition (High-End)
 * System Signature (Hex): 4D 53
 */

:root {
    --brand-blue: #3A56E4; 
    --bg-onyx: #050608; 
    --bg-surface: #0A0D12; 
    --hairline: rgba(255, 255, 255, 0.05); /* Linhas finas e chics */
    --hairline-brand: rgba(58, 86, 228, 0.2); 
    --text-platinum: #F8F9FA;
    --text-slate: #8B949E;
    --terminal-cyan: #58A6FF;
}

body {
    background-color: var(--bg-onyx);
    color: var(--text-platinum);
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* Tipografia de Alto Impacto */
h1, .display-5 {
    font-weight: 700;
    letter-spacing: -0.05em;
    color: #ffffff;
    line-height: 1.1;
}

h3.h5 {
    font-weight: 500;
    letter-spacing: -0.02em;
}

/* O Terminal Executivo (Com linha fina no fundo) */
.ms-terminal-header {
    background: transparent;
    border-bottom: 1px solid var(--hairline);
    padding: 1.5rem 0;
    font-family: 'Victor Mono', monospace;
    font-size: 0.85rem;
    color: var(--text-slate);
}

.ms-terminal-prefix { color: var(--brand-blue); font-weight: 700; }
.ms-terminal-text { color: var(--terminal-cyan); }

/* Cards Editoriais "Chic" */
.ms-article-card {
    background: transparent;
    border: 1px solid var(--hairline);
    border-radius: 2px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.ms-article-card:hover {
    border-color: rgba(88, 166, 255, 0.3);
    background: var(--bg-surface);
    transform: translateY(-5px);
}

/* Estilo de Categoria Refinado (Sublinhado Chic) */
.ms-category-badge {
    font-family: 'Victor Mono', monospace;
    color: var(--text-slate);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--hairline-brand);
}

/* Botão Chic e Minimalista */
.btn-exclusive {
    background-color: var(--brand-blue);
    color: #fff;
    border: 1px solid var(--brand-blue);
    border-radius: 2px;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 0.8rem 1.5rem;
    width: 100%;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-exclusive:hover {
    background-color: transparent;
    color: var(--brand-blue);
}

/* Widget Sidebar (Com bordas super finas) */
.ms-widget {
    background: transparent;
    border: 1px solid var(--hairline);
    border-top: 3px solid var(--brand-blue); /* Destaque no topo */
    padding: 2rem;
}