:root {
    --bg-color: #0a0a0a;
    --accent-green: #00FF88;
    --text-white: #ffffff;
    --text-gray: #a0a0a0;

    /* --- VARIÁVEL DE BORDA --- */
    --border-color: #333333;

    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-code: 'Fira Code', monospace;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: var(--bg-color);
    color: var(--text-white);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

/* --- HEADER (PADRONIZADO) --- */
.main-header {
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.4s ease, padding 0.4s ease;
}

.main-header.header-scrolled,
.single-post .main-header {
    padding: 20px 0 !important;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Garante que o menu NUNCA empilhe, mesmo no mobile */
    flex-direction: row; 
}

.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo img {
    height: 40px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-gray);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    font-weight: 400;
}

.nav-links a:hover {
    color: var(--accent-green);
    text-shadow: 0 0 8px rgba(0, 255, 136, 0.4);
}

/* --- HERO (TELA CHEIA E DINÂMICO) --- */
.hero-section {
    width: 100%;
    height: 100vh;
    height: 100svh;
    
    display: flex;
    align-items: center; 
    justify-content: center; 

    position: relative; /* Necessário para posicionar a img absoluta */
    overflow: hidden;
    background-color: var(--bg-color); /* Fundo base preto */
}

/* A Imagem Dinâmica de Fundo */
#hero-dynamic-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cobre todo o container mantendo proporção */
    opacity: 0.2;      /* AQUI ESTÁ: 20% de opacidade */
    z-index: 0;        /* Fica atrás do conteúdo */
    pointer-events: none; /* Não interfere no clique */
}

/* O Conteúdo do Hero (Texto/Botões) */
.hero-content-wrapper {
    position: relative;
    z-index: 2; /* Garante que fique SOBRE a imagem */
    width: 100%;
    text-align: left; 
}

/* REMOVI O ESTILO ANTIGO DE .hero-section .container POIS CRIEI O WRAPPER */

.post-card.featured {
    width: 100%;
}

.post-title {
    font-family: var(--font-heading);
    color: var(--accent-green);
    
    /* Hero Title da Home continua fluido com Clamp */
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    line-height: 1.1;
    margin-bottom: 40px;
    font-weight: 700;
    letter-spacing: -2px;
    text-shadow: 4px 4px 8px #0a0a0a;
    
    width: 100%;
    max-width: 10em; 
    text-wrap: balance;
    overflow-wrap: break-word; 
}

.description-container {
    display: flex;
    gap: 20px;
    align-items: flex-start; 
    justify-content: flex-start;
    max-width: 580px;
    margin-bottom: 45px;
}

.vertical-bar {
    width: 5px;
    background-color: var(--accent-green);
    flex-shrink: 0;
    align-self: stretch;
}

.description-text {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--text-white);
    line-height: 1.4;
    align-self: center;
    text-shadow: 4px 4px 10px #0a0a0a;
    text-align: left; 
}

.cta-button {
    display: inline-block;
    font-family: var(--font-heading);
    background: var(--accent-green);
    color: var(--bg-color);
    border: 1px solid var(--accent-green);
    text-decoration: none;
    font-size: clamp(0.85rem, 1.1vw, 1rem);
    padding: 0.5em 1.5em;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    font-weight: 700;
    text-shadow: none; 
}

.cta-button:hover {
    background: rgba(0, 255, 136, 0.03);
    color: var(--accent-green);
}

/* --- BLOG GRID --- */
.latest-posts {
    padding: 100px 0;
    background-color: var(--bg-color);
    position: relative;
    z-index: 5;
}

.section-label {
    font-family: var(--font-heading);
    color: var(--text-white);
    /* CLAMP: 1.3rem no mobile -> 1.5rem no desktop */
    font-size: clamp(1.3rem, 4vw, 1.5rem);
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.section-label span {
    color: var(--accent-green);
}

.posts-grid {
    display: grid;
    /* Auto-fit cuida da responsividade das colunas sozinho */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.grid-item {
    padding: 30px;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    background: var(--bg-color);
    cursor: pointer;
    text-decoration: none;
}

.grid-item:hover {
    border-color: var(--accent-green);
    background: rgba(0, 255, 136, 0.03);
    transform: translateY(-5px);
}

.grid-item h3 {
    font-family: var(--font-heading);
    /* CLAMP: 1.45rem no mobile -> 1.8rem no desktop */
    font-size: clamp(1.45rem, 3vw, 1.8rem);
    color: var(--text-white);
    margin-bottom: 15px;
    line-height: 1.1;
    font-weight: 700;
}

.grid-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 25px;
    flex-grow: 1;
}

.post-cat {
    font-family: var(--font-code);
    color: var(--accent-green);
    font-size: 0.75rem;
    margin-bottom: 15px;
}

.read-link {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-white);
    text-decoration: none;
    border-bottom: 1px solid var(--accent-green);
    align-self: flex-start;
    transition: 0.3s;
    font-weight: 700;
}

.grid-item:hover .read-link {
    color: var(--accent-green);
    text-shadow: 0 0 8px rgba(0, 255, 136, 0.4);
}

/* --- LOAD MORE SECTION --- */
.load-more-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 50px;
}

#load-more-btn {
    all: unset;
    display: inline-block;
    font-family: var(--font-heading);
    color: var(--accent-green);
    border: 1px solid var(--accent-green);
    padding: 0.6em 2em;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    cursor: pointer;
    background: transparent;
    text-align: center;
}

#load-more-btn:hover {
    background: var(--accent-green);
    color: var(--bg-color);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.4);
}

#load-more-btn.hidden {
    display: none;
}

/* --- POST PAGE & ABOUT --- */
.screenshot-container {
    background: #242424;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    margin: 40px 0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.screenshot-container img {
    width: 100%;
    display: block;
}

.screenshot-container figcaption {
    padding: 15px;
    margin: 0;
    color: var(--text-gray);
    font-family: var(--font-code);
    font-size: 0.75rem;
    text-align: left;
    background: transparent;
    line-height: 1.2;
}

.single-post .post-content-area {
    padding-top: 140px;
    padding-bottom: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.single-post .post-header {
    margin-bottom: 50px;
}

.single-post .entry-title {
    font-family: var(--font-heading);
    color: #e0e0e0;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
    font-size: clamp(2.6rem, 5vw, 3.5rem);
}

.single-post .post-body {
    max-width: 100%;
    margin: 40px 0;
}

/* --- ALTERAÇÕES DE LEITURA (READABILITY) --- */
.single-post .post-body p {
    margin-bottom: 30px;
    /* CLAMP: Responsividade da fonte */
    font-size: clamp(1.1rem, 2vw, 1.125rem);
    
    /* 1. ALTURA DA LINHA */
    line-height: 1.8;
    
    /* 2. COR MAIS SUAVE */
    color: #e0e0e0;

    /* 3. LARGURA DE LEITURA IDEAL */
    max-width: 75ch; 
    
    /* 4. REQUINTE TIPOGRÁFICO */
    letter-spacing: -0.01em;
    text-align: left;
    
    /* 5. RENDERIZAÇÃO MELHORADA */
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

.single-post .post-body h2 {
    font-family: var(--font-heading);
    color: var(--accent-green);
    line-height: 1.1;
    margin: 60px 0 20px;
    /* CLAMP: 1.7rem -> 2.2rem */
    font-size: clamp(1.7rem, 4vw, 2.2rem);
    font-weight: 700;
}

.single-post .post-body strong {
    color: var(--accent-green);
    font-weight: 700;
}

/* --- LISTAS DO POST (UL e OL unificados) --- */
.single-post .post-body ul,
.single-post .post-body ol {
    padding-left: 30px;
    margin-bottom: 30px;
}

.single-post .post-body ul {
    list-style: disc;
}

.single-post .post-body ol {
    list-style: decimal;
}

/* 2. Os Itens da lista */
.single-post .post-body ul li,
.single-post .post-body ol li {
    margin-bottom: 10px; 
    color: #e0e0e0;
    
    /* Mesmo tamanho exato do parágrafo */
    font-size: clamp(1.1rem, 2vw, 1.125rem);
    
    line-height: 1.8;
    max-width: 68ch;
    letter-spacing: -0.01em;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

.single-post .post-body a {
    color: var(--accent-green);
    text-decoration: underline;
    transition: 0.3s;
}

.single-post .post-body a:hover {
    text-shadow: 0 0 8px rgba(0, 255, 136, 0.6);
    color: var(--text-white);
}

/* --- INLINE CODE HIGHLIGHTER (NOVO: GLOBAL) --- */
/* Estiliza todo <code> dentro do post, EXCETO os blocos de terminal (<pre>) */
.single-post .post-body code:not(pre code) {
    background-color: #1e1e1e;
    color: #00FF88; /* Verde Neon */
    padding: 2px 6px;
    border-radius: 4px;
    font-family: var(--font-code);
    font-size: 0.9em;
    border: 1px solid #333;
    white-space: nowrap; /* Evita quebra de linha em comandos */
}

/* Ajuste específico para quando o code está dentro de links */
.single-post .post-body a code {
    color: inherit;
    border-color: var(--accent-green);
    cursor: pointer;
}

.single-post .terminal-block {
    background: #000;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    margin: 35px 0;
    font-family: var(--font-code);
}

.terminal-header {
    background: #242424;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #333;
}

.single-post .terminal-block pre {
    padding: 20px;
    color: var(--accent-green);
    overflow-x: auto;
    font-size: 0.95rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.red { background: #ff5f56; }
.yellow { background: #ffbd2e; }
.green { background: #27c93f; }

.single-post .post-image {
    margin: 0;
    border: none;
}

.about-section {
    padding: 100px 0;
    border-top: 1px solid var(--border-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
    align-items: flex-start;
}

.about-text p {
    color: var(--text-gray);
    /* CLAMP: 1rem -> 1.15rem */
    font-size: clamp(1.1rem, 2vw, 1.125rem);
    line-height: 1.8;
    margin-bottom: 25px;
}

.about-text strong {
    color: var(--accent-green);
    font-weight: 700;
}

.about-text .highlight-text {
    color: var(--text-white);
    font-family: var(--font-heading);
    /* CLAMP: Levemente maior que o texto comum */
    font-size: clamp(1.1rem, 2.5vw, 1.25rem);
    margin-top: 40px;
    border-left: 3px solid var(--accent-green);
    padding-left: 20px;
}

.contact-card {
    background: #0f0f0f;
    padding: 40px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.contact-card h3 {
    font-family: var(--font-heading);
    /* CLAMP: 1.3rem -> 1.5rem */
    font-size: clamp(1.3rem, 4vw, 1.5rem);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-card h3 span {
    color: var(--accent-green);
}

.contact-list {
    list-style: none;
}

.contact-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-code);
    font-size: 1rem;
}

.contact-list i {
    color: var(--accent-green);
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
}

.contact-list a {
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-list a:hover {
    color: var(--accent-green);
    transform: translateX(5px);
    display: inline-block;
}

/* --- FOOTER (ESTRUTURA GERAL) --- */
.main-footer {
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-color);
    margin-top: 50px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-gray);
    font-size: 0.85rem;
}

.footer-text {
    margin: 0;
    line-height: 1.8;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--accent-green);
}

/* --- LOADER --- */
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.progress-container {
    width: 250px;
    height: 4px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.progress-fill {
    width: 0%;
    height: 100%;
    background: var(--accent-green);
    box-shadow: 0 0 15px var(--accent-green);
    transition: width 0.4s ease;
}

#loader-percentage {
    font-family: var(--font-code);
    color: var(--accent-green);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

/* --- SEARCH OVERLAY --- */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 15vh;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.search-overlay.hidden {
    display: none;
    opacity: 0;
}

.search-container {
    width: 100%;
    max-width: 600px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    overflow: hidden;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #333;
}

.search-icon {
    color: var(--accent-green);
    font-size: 1.2rem;
    margin-right: 15px;
}

#search-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 1.2rem;
    font-family: var(--font-code);
    outline: none;
}

#close-search {
    background: transparent;
    border: 1px solid #333;
    color: var(--text-gray);
    padding: 2px 8px;
    font-size: 0.7rem;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--font-code);
}

.search-results {
    max-height: 400px;
    overflow-y: auto;
}

.search-results::-webkit-scrollbar { width: 6px; }
.search-results::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }

.search-item {
    display: block;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    text-decoration: none;
    transition: background 0.2s;
}

.search-item:hover,
.search-item.active {
    background: rgba(0, 255, 136, 0.05);
    border-left: 3px solid var(--accent-green);
    outline: none;
}

.search-item h4 {
    color: var(--text-white);
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 5px;
}

.search-item span {
    color: var(--accent-green);
    font-size: 0.75rem;
    font-family: var(--font-code);
}

/* Estilo para a descrição curta na busca */
.search-item p {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-top: 4px;
    font-family: var(--font-body);
    line-height: 1.4;
    
    /* Garante que não fique gigante se a descrição for longa */
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Limita a 2 linhas */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* --- LIGHTBOX --- */
.screenshot-container img,
.post-body img {
    cursor: zoom-in;
    transition: opacity 0.3s;
}

.screenshot-container img:hover {
    opacity: 0.9;
}

.image-modal {
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.image-modal.hidden {
    display: none;
    opacity: 0;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    border: 1px solid #333;
    box-shadow: 0 0 50px rgba(0, 255, 136, 0.1);
    animation: zoomIn 0.3s;
    cursor: zoom-out;
}

#caption-text {
    margin-top: 15px;
    color: var(--text-gray);
    font-family: var(--font-code);
    font-size: 0.9rem;
    text-align: center;
    width: 80%;
}

#close-modal-btn {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    font-family: sans-serif;
}

#close-modal-btn:hover {
    color: var(--accent-green);
}

/* --- SHARE SECTION --- */
.share-section {
    margin-top: 60px;
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.share-label {
    font-family: var(--font-code);
    color: var(--text-gray);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 10px 20px;
    color: var(--text-white);
    text-decoration: none;
    font-family: var(--font-code);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 4px;
}

.share-btn i {
    color: var(--text-gray);
    transition: color 0.3s;
}

/* Efeito Hover Neon */
.share-btn:hover {
    border-color: var(--accent-green);
    background: rgba(0, 255, 136, 0.05);
    transform: translateY(-2px);
    color: var(--accent-green);
}

.share-btn:hover i {
    color: var(--accent-green);
}

/* Feedback de Cópia */
#copy-feedback {
    font-family: var(--font-code);
    color: var(--accent-green);
    font-size: 0.8rem;
    margin-top: 5px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Responsivo para mobile */
@media (max-width: 600px) {
    .share-buttons {
        flex-direction: column; /* Botões empilhados no mobile */
    }
    .share-btn {
        justify-content: center;
        width: 100%;
    }
}

/* ========================================================
   MEDIA QUERIES OTIMIZADAS & SIMPLIFICADAS
   ======================================================== */

/* ÚNICO Breakpoint Principal para Layout (Tablets e Menores) */
@media (max-width: 991px) {
    /* Ajustes Gerais */
    .container {
        padding: 0 25px;
    }

    /* About Section vira 1 coluna */
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Ajustes Específicos para Mobile (< 768px) */
@media (max-width: 768px) {
    /* Header: Mantém linha, reduz espaçamento */
    .nav-links {
        gap: 15px;
    }

    /* Hero: ESTABILIDADE MÁXIMA SEM PARALLAX */
    .hero-section {
        height: 100svh !important; 
        min-height: 100svh;
        padding-top: 80px; 
        align-items: center;
    }

    /* Hero Container: Garante alinhamento à esquerda */
    .hero-content-wrapper {
        text-align: left;
    }
    
    .description-container {
        justify-content: flex-start;
        text-align: left;
    }
    .description-text {
        text-align: left;
    }
    
    /* Footer: Empilha conteúdo */
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    /* Search Overlay */
    .search-overlay {
        padding-top: 20px;
    }
    .search-container {
        width: 95%;
    }
    #close-search {
        display: none;
    }
}

/* Ajustes para Telas Muito Pequenas ou Paisagem Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        /* Garante que o fundo continua estável na horizontal */
        height: auto;
        min-height: 100vh;
        padding-top: 80px;
        padding-bottom: 40px;
    }
    .search-results {
        max-height: 40vh;
    }
}

/* --- TABELAS RESPONSIVAS (POSTS) --- */
.table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin: 30px 0;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: #1a1a1a;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-green) #1a1a1a;
}

.table-wrapper::-webkit-scrollbar { height: 6px; }
.table-wrapper::-webkit-scrollbar-track { background: #1a1a1a; }
.table-wrapper::-webkit-scrollbar-thumb { background-color: var(--accent-green); border-radius: 3px; }

/* 2. Estilo da Tabela */
.post-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-code);
    font-size: 0.9rem;
    color: var(--text-gray);
    min-width: 600px;
}

.post-table thead tr {
    background-color: #242424;
    border-bottom: 2px solid var(--border-color);
}

.post-table th {
    padding: 15px;
    text-align: left;
    font-weight: 700;
    color: var(--text-white);
    border-right: 1px solid var(--border-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
}

.post-table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    vertical-align: middle;
}

.post-table tbody tr:nth-child(even) { background-color: rgba(255, 255, 255, 0.02); }
.post-table tbody tr:hover { background-color: rgba(0, 255, 136, 0.05); }

/* --- UTILITARIOS JS --- */
.hidden {
    display: none !important;
}

.js-control {
    /* Marcador logico */
}