/*
Theme Name: cheatspire_atualizado
Theme URI: https://cheatspire.online
Author: Christian
Author URI: https://cheatspire.online
Description: Template WordPress premium focado em notícias de jogos, códigos, mods e dicas. Desenvolvido com Tailwind CSS e foco em personalização avançada.
Version: 16.4.0 (v16.4)
Text Domain: cheatspire
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: news, games, gaming, dark-mode, custom-colors, custom-logo, featured-images, full-width-template, post-formats, sticky-post, theme-options, translation-ready
*/

/* Estilos base necessários para o WordPress */
.alignleft { float: left; margin-right: 1.5em; margin-bottom: 1.5em; }
.alignright { float: right; margin-left: 1.5em; margin-bottom: 1.5em; }
.aligncenter { clear: both; display: block; margin-left: auto; margin-right: auto; margin-bottom: 1.5em; }
.wp-caption { margin-bottom: 1.5em; max-width: 100%; }
.wp-caption img { display: block; margin: 0 auto; }
.wp-caption-text { font-size: 0.875rem; font-style: italic; margin: 0.5em 0; text-align: center; }
.screen-reader-text { border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; word-wrap: normal !important; }

/* --- 1. LEGIBILIDADE E ESPAÇAMENTO (RETOQUE FINAL) --- */
.entry-content p, 
.entry-content li,
.entry-content div,
article p {
    letter-spacing: 0.025em !important;
    line-height: 2.1 !important; /* Espaçamento bem aberto para não cansar a vista */
    margin-bottom: 2.5rem !important; /* Espaço generoso entre parágrafos */
    font-size: 1.125rem !important;
    color: #374151 !important;
}

.dark .entry-content p, 
.dark .entry-content li,
.dark article p {
    color: #cbd5e1 !important;
}

/* Listas mais espaçadas */
.entry-content ul, 
.entry-content ol {
    margin-bottom: 3rem !important;
    padding-left: 1.5rem !important;
}

.entry-content li {
    margin-bottom: 1.25rem !important;
}

/* Títulos com respiro */
.entry-content h2, 
.entry-content h3, 
.entry-content h4 {
    margin-top: 4.5rem !important;
    margin-bottom: 2rem !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: -0.02em !important;
}

/* --- 2. SEPARADOR PREMIUM (HR) --- */
/* Seletores ultra-específicos para matar a linha preta do WP */
body .entry-content hr.wp-block-separator,
body .entry-content hr.is-style-wide,
body .entry-content hr.is-style-dots,
body .entry-content hr {
    border: none !important;
    background: none !important;
    height: 60px !important;
    margin: 5rem auto !important;
    position: relative !important;
    overflow: visible !important;
    opacity: 1 !important;
    display: block !important;
    width: 100% !important;
}

body .entry-content hr::before {
    content: "" !important;
    position: absolute !important;
    top: 50% !important;
    left: 0 !important;
    right: 0 !important;
    height: 2px !important;
    background: linear-gradient(90deg, transparent, #2563eb, transparent) !important;
    transform: translateY(-50%) !important;
    z-index: 1 !important;
}

body .entry-content hr::after {
    content: "\f11b" !important; /* Font Awesome Gamepad */
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    background: #f9fafb !important; /* Cor do fundo do site claro */
    padding: 0 2rem !important;
    color: #2563eb !important;
    font-size: 1.75rem !important;
    z-index: 10 !important;
}

.dark body .entry-content hr::after {
    background: #05070a !important; /* Cor do fundo do site escuro */
}

/* --- 3. CODE COPY (ESTILO DO SITE) --- */
/* Estilo para blocos de código e cheats */
.entry-content pre, 
.entry-content code,
.cheat-code-wrapper {
    background: #f3f4f6 !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 1rem !important;
    padding: 1.5rem !important;
    margin: 2.5rem 0 !important;
    position: relative !important;
    font-family: 'JetBrains Mono', 'Fira Code', monospace !important;
    overflow-x: auto !important;
    color: #1e3a5f !important;
}

/* Garantir cor legível no pré-formatado no claro */
.entry-content pre.wp-block-preformatted,
.entry-content pre.wp-block-code,
.entry-content pre.wp-block-code code {
    color: #1e3a5f !important;
}

.dark .entry-content pre, 
.dark .entry-content code,
.dark .cheat-code-wrapper {
    background: #0c0f16 !important;
    border-color: rgba(0, 170, 255, 0.2) !important;
    color: #7dd3fc !important;
}

.dark .entry-content pre *,
.dark .entry-content code *,
.dark .cheat-code-wrapper * {
    color: #7dd3fc !important;
}

/* Botão de Copiar */
.copy-code-btn {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: #2563eb;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 20;
}

.copy-code-btn:hover {
    background: #1d4ed8;
    transform: scale(1.05);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .entry-content p, 
    .entry-content li {
        font-size: 1.05rem !important;
        line-height: 2.0 !important;
        letter-spacing: 0.03em !important;
    }
    
    body .entry-content hr {
        margin: 4rem auto !important;
    }
    
    body .entry-content hr::after {
        font-size: 1.25rem !important;
        padding: 0 1rem !important;
    }
}

/* ========================================
   JETPACK SOCIAL — estilo horizontal no tema
   ======================================== */

/* Container principal */
.sharedaddy.sd-sharing-enabled {
    margin: 2rem 0 1rem !important;
    padding: 1.25rem 1.5rem !important;
    background: rgba(0, 170, 255, 0.04) !important;
    border: 1px solid rgba(0, 170, 255, 0.15) !important;
    border-radius: 12px !important;
}
.dark .sharedaddy.sd-sharing-enabled {
    background: rgba(0, 170, 255, 0.06) !important;
    border-color: rgba(0, 170, 255, 0.25) !important;
}

/* Título "Compartilhe isso:" */
.sd-title {
    font-size: 0.7rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    color: #6b7280 !important;
    margin-bottom: 0.75rem !important;
    display: block !important;
}
.dark .sd-title {
    color: #94a3b8 !important;
}

/* Lista horizontal sem bullets */
.sd-sharing-enabled .sd-content ul {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 8px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.sd-sharing-enabled .sd-content ul li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
}

/* Esconder o item vazio do final */
.sd-sharing-enabled .sd-content ul li:empty {
    display: none !important;
}

/* Botões base */
.sd-sharing-enabled .sd-content ul li a,
.sd-sharing-enabled .sd-content ul li a.share-more {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 6px 14px !important;
    border-radius: 8px !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    border: 1px solid transparent !important;
    background: rgba(255,255,255,0.06) !important;
    color: #374151 !important;
}
.dark .sd-sharing-enabled .sd-content ul li a {
    background: rgba(255,255,255,0.07) !important;
    color: #cbd5e1 !important;
}

/* Hover geral */
.sd-sharing-enabled .sd-content ul li a:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
}

/* Cores por rede */
.sd-sharing-enabled .sd-content ul li.share-facebook a {
    border-color: rgba(24,119,242,0.4) !important;
    color: #1877f2 !important;
}
.sd-sharing-enabled .sd-content ul li.share-facebook a:hover {
    background: rgba(24,119,242,0.12) !important;
    box-shadow: 0 4px 12px rgba(24,119,242,0.3) !important;
}

.sd-sharing-enabled .sd-content ul li.share-twitter a,
.sd-sharing-enabled .sd-content ul li.share-x a {
    border-color: rgba(0,0,0,0.3) !important;
    color: #000 !important;
}
.dark .sd-sharing-enabled .sd-content ul li.share-twitter a,
.dark .sd-sharing-enabled .sd-content ul li.share-x a {
    border-color: rgba(255,255,255,0.2) !important;
    color: #fff !important;
}
.sd-sharing-enabled .sd-content ul li.share-twitter a:hover,
.sd-sharing-enabled .sd-content ul li.share-x a:hover {
    background: rgba(0,0,0,0.08) !important;
}
.dark .sd-sharing-enabled .sd-content ul li.share-twitter a:hover,
.dark .sd-sharing-enabled .sd-content ul li.share-x a:hover {
    background: rgba(255,255,255,0.1) !important;
}

.sd-sharing-enabled .sd-content ul li.share-telegram a {
    border-color: rgba(0,136,204,0.4) !important;
    color: #0088cc !important;
}
.sd-sharing-enabled .sd-content ul li.share-telegram a:hover {
    background: rgba(0,136,204,0.12) !important;
    box-shadow: 0 4px 12px rgba(0,136,204,0.3) !important;
}

.sd-sharing-enabled .sd-content ul li.share-whatsapp a {
    border-color: rgba(37,211,102,0.4) !important;
    color: #25d366 !important;
}
.sd-sharing-enabled .sd-content ul li.share-whatsapp a:hover {
    background: rgba(37,211,102,0.12) !important;
    box-shadow: 0 4px 12px rgba(37,211,102,0.3) !important;
}

/* Botão "Mais" */
.sd-sharing-enabled .sd-content ul li.share-more a {
    border-color: rgba(0,170,255,0.35) !important;
    color: #0077cc !important;
}
.dark .sd-sharing-enabled .sd-content ul li.share-more a {
    color: #00aaff !important;
    border-color: rgba(0,170,255,0.4) !important;
}
.sd-sharing-enabled .sd-content ul li.share-more a:hover {
    background: rgba(0,170,255,0.1) !important;
    box-shadow: 0 4px 12px rgba(0,170,255,0.25) !important;
}

/* Esconder ícones circulares padrão do Jetpack */
.sd-sharing-enabled .sd-content ul li a svg,
.sd-sharing-enabled .sd-content ul li a img {
    width: 14px !important;
    height: 14px !important;
}

/* ========================================
   HUB BANNER — post single
   ======================================== */
.cs-hub-banner {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 90px;
    overflow: hidden;
    border-bottom: 1px solid rgba(0,170,255,0.15);
    text-decoration: none !important;
    transition: all 0.3s ease;
}
.cs-hub-banner:hover {
    border-bottom-color: rgba(0,170,255,0.4);
}

/* Fundo borrado com a imagem do jogo */
.cs-hub-banner-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(18px) brightness(0.35) saturate(1.4);
    transform: scale(1.08);
    transition: filter 0.4s ease;
}
.cs-hub-banner:hover .cs-hub-banner-bg {
    filter: blur(14px) brightness(0.45) saturate(1.6);
}
.cs-hub-banner-bg--empty {
    background: linear-gradient(135deg, #0c0f16 0%, #0a1628 100%);
    filter: none;
}

/* Overlay gradiente lateral */
.cs-hub-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(5,7,10,0.55) 0%,
        rgba(0,100,200,0.08) 60%,
        rgba(5,7,10,0.7) 100%
    );
}

/* Linha neon no topo */
.cs-hub-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00aaff, #0066ff, transparent);
    opacity: 0.7;
    transition: opacity 0.3s;
}
.cs-hub-banner:hover::before {
    opacity: 1;
}

/* Conteúdo */
.cs-hub-banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 20px;
    gap: 16px;
}

.cs-hub-banner-left {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

/* Thumbnail maior */
.cs-hub-banner-thumb {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid rgba(0,170,255,0.35);
    box-shadow: 0 0 14px rgba(0,170,255,0.25);
    transition: all 0.3s ease;
}
.cs-hub-banner:hover .cs-hub-banner-thumb {
    border-color: rgba(0,170,255,0.7);
    box-shadow: 0 0 22px rgba(0,170,255,0.45);
}
.cs-hub-banner-thumb--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,170,255,0.15);
    color: #00aaff;
    font-size: 1.4rem;
}

.cs-hub-banner-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.cs-hub-banner-label {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #00aaff;
    display: flex;
    align-items: center;
    gap: 5px;
}

.cs-hub-banner-title {
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 0 20px rgba(0,170,255,0.3);
    transition: color 0.2s, text-shadow 0.2s;
}
.cs-hub-banner:hover .cs-hub-banner-title {
    color: #00aaff;
    text-shadow: 0 0 20px rgba(0,170,255,0.6);
}

/* Botão Ver HUB */
.cs-hub-banner-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: linear-gradient(135deg, #0077cc, #0055aa);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 9px 18px;
    border-radius: 10px;
    border: 1px solid rgba(0,170,255,0.4);
    box-shadow: 0 0 12px rgba(0,170,255,0.2);
    transition: all 0.25s ease;
    white-space: nowrap;
}
.cs-hub-banner:hover .cs-hub-banner-btn {
    background: linear-gradient(135deg, #0099ff, #0066cc);
    box-shadow: 0 0 20px rgba(0,170,255,0.5);
    transform: translateX(-2px);
}

.cs-hub-banner-arrow {
    transition: transform 0.25s ease;
    font-size: 0.65rem;
}
.cs-hub-banner:hover .cs-hub-banner-arrow {
    transform: translateX(3px);
}

/* Mobile */
@media (max-width: 480px) {
    .cs-hub-banner-title { font-size: 0.85rem; }
    .cs-hub-banner-btn { padding: 8px 12px; font-size: 0.65rem; }
    .cs-hub-banner-thumb { width: 46px; height: 46px; }
}

/* ========================================
   CARD DE AUTOR — post single
   ======================================== */
.cs-author-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0,170,255,0.2);
    background: #05070a;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.cs-author-card:hover {
    border-color: rgba(0,170,255,0.45);
    box-shadow: 0 0 32px rgba(0,170,255,0.1);
}

/* Linha neon no topo */
.cs-author-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00aaff, #0055ff, transparent);
    z-index: 2;
}

/* Glow decorativo no canto */
.cs-author-glow {
    position: absolute;
    top: -60px; right: -60px;
    width: 220px; height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,120,255,0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.cs-author-card-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px;
}

/* Avatar */
.cs-author-left { flex-shrink: 0; }

.cs-author-avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(0,170,255,0.45);
    box-shadow: 0 0 20px rgba(0,170,255,0.25), inset 0 0 0 2px rgba(0,170,255,0.1);
    transition: border-color 0.3s, box-shadow 0.3s;
    display: block;
}
.cs-author-card:hover .cs-author-avatar {
    border-color: rgba(0,170,255,0.75);
    box-shadow: 0 0 30px rgba(0,170,255,0.4);
}

/* Divisor vertical */
.cs-author-left::after {
    content: '';
    display: block;
    width: 1px;
    height: 0;
    background: transparent;
}

/* Info */
.cs-author-right {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    border-left: 1px solid rgba(0,170,255,0.12);
    padding-left: 24px;
}

.cs-author-label {
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #00aaff;
    display: flex;
    align-items: center;
    gap: 5px;
}

.cs-author-name {
    font-size: 1.1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ffffff;
    text-decoration: none !important;
    transition: color 0.2s, text-shadow 0.2s;
    display: block;
    line-height: 1.2;
}
.cs-author-name:hover {
    color: #00aaff !important;
    text-shadow: 0 0 16px rgba(0,170,255,0.4);
}

.cs-author-bio {
    font-size: 0.82rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.55);
    margin: 4px 0 8px !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
    font-style: italic;
}

/* Redes sociais */
.cs-author-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 2px;
}

.cs-author-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px; height: 30px;
    border-radius: 7px;
    font-size: 0.75rem;
    text-decoration: none !important;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.2s ease;
    color: #fff !important;
}
.cs-author-social-x   { background: rgba(0,0,0,0.6); }
.cs-author-social-ig  { background: linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045); border-color: transparent; }
.cs-author-social-fb  { background: rgba(24,119,242,0.7); }
.cs-author-social-yt  { background: rgba(255,0,0,0.7); }
.cs-author-social-web { background: rgba(0,119,204,0.7); }

.cs-author-social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    filter: brightness(1.2);
}

/* Link ver perfil completo */
.cs-author-card-footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(0,170,255,0.08);
    padding: 10px 28px;
    display: flex;
    justify-content: flex-end;
}
.cs-author-card-footer a {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(0,170,255,0.6);
    text-decoration: none !important;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 5px;
}
.cs-author-card-footer a:hover { color: #00aaff; }

/* Mobile */
@media (max-width: 520px) {
    .cs-author-card-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
    .cs-author-right { border-left: none; border-top: 1px solid rgba(0,170,255,0.12); padding-left: 0; padding-top: 16px; }
    .cs-author-avatar { width: 72px; height: 72px; }
}

/* ========================================
   PÁGINA DE AUTOR — cs-author-page
   ======================================== */

/* HERO */
.cs-author-page-hero {
    position: relative;
    padding: 60px 0 70px;
    overflow: hidden;
    background: #05070a;
}

/* Fundo com grid neon sutil */
.cs-author-page-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,170,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,170,255,0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

/* Gradiente de brilho centralizado */
.cs-author-page-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,100,220,0.18) 0%, transparent 70%);
    pointer-events: none;
}

.cs-author-page-hero-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, #f8fafc);
    pointer-events: none;
}
.dark .cs-author-page-hero-overlay {
    background: linear-gradient(to bottom, transparent, #05070a);
}

/* Breadcrumb */
.cs-author-page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 40px;
}
.cs-author-page-breadcrumb a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.2s;
}
.cs-author-page-breadcrumb a:hover { color: #00aaff; }
.cs-author-page-breadcrumb span:last-child { color: #00aaff; }

/* Perfil principal */
.cs-author-page-profile {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

/* Avatar */
.cs-author-page-avatar-wrap {
    position: relative;
    flex-shrink: 0;
}
.cs-author-page-avatar {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
    border: 3px solid rgba(0,170,255,0.5);
}
.cs-author-page-avatar-ring {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: linear-gradient(135deg, #00aaff, #0044cc, transparent, #00aaff) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    animation: cs-ring-spin 6s linear infinite;
}
@keyframes cs-ring-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* Info */
.cs-author-page-info {
    flex: 1;
    min-width: 0;
}

.cs-author-page-role {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #00aaff;
    margin-bottom: 8px;
}

.cs-author-page-name {
    font-size: 2.4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: #ffffff;
    line-height: 1.1;
    margin: 0 0 14px;
    text-shadow: 0 0 40px rgba(0,170,255,0.2);
}

.cs-author-page-bio {
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
    max-width: 600px;
    margin: 0 0 20px;
}

/* Stats */
.cs-author-page-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}
.cs-author-page-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.cs-author-page-stat-num {
    font-size: 1.3rem;
    font-weight: 900;
    color: #00aaff;
    line-height: 1;
}
.cs-author-page-stat-label {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.35);
}
.cs-author-page-stat-divider {
    width: 1px;
    height: 30px;
    background: rgba(255,255,255,0.1);
}

/* Redes sociais */
.cs-author-page-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.cs-author-page-social {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    border-radius: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    text-decoration: none !important;
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff !important;
    transition: all 0.2s ease;
    letter-spacing: 0.04em;
}
.cs-author-page-social:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
    filter: brightness(1.2);
}
.cs-aps-x   { background: rgba(0,0,0,0.6); }
.cs-aps-ig  { background: linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045); border-color: transparent; }
.cs-aps-yt  { background: rgba(255,0,0,0.7); }
.cs-aps-fb  { background: rgba(24,119,242,0.7); }
.cs-aps-web { background: rgba(0,119,204,0.7); }

/* Título de seção */
.cs-author-page-section-title {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: center;
}
.cs-author-page-section-title h2 {
    font-size: 1.3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #111827;
    white-space: nowrap;
    flex-shrink: 0;
}
.dark .cs-author-page-section-title h2 { color: #f1f5f9; }
.cs-author-page-section-title h2 span { color: #0077cc; }
.dark .cs-author-page-section-title h2 span { color: #00aaff; }
.cs-author-page-section-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,170,255,0.3), transparent);
}

/* Cards de posts */
.cs-author-page-post-card {
    display: flex;
    flex-direction: column;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    background: #fff;
    text-decoration: none !important;
    transition: all 0.25s ease;
}
.dark .cs-author-page-post-card {
    background: #0c0f16;
    border-color: rgba(255,255,255,0.06);
}
.cs-author-page-post-card:hover {
    border-color: rgba(0,170,255,0.4);
    box-shadow: 0 8px 24px rgba(0,170,255,0.1);
    transform: translateY(-3px);
}

.cs-author-page-post-thumb {
    position: relative;
    height: 160px;
    overflow: hidden;
}
.cs-author-page-post-thumb img { transition: transform 0.4s ease; }
.cs-author-page-post-card:hover .cs-author-page-post-thumb img { transform: scale(1.05); }

.cs-author-page-post-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5,7,10,0.6) 0%, transparent 60%);
}

.cs-author-page-post-info {
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cs-author-page-post-date {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #0077cc;
    display: flex;
    align-items: center;
    gap: 5px;
}
.dark .cs-author-page-post-date { color: #00aaff; }

.cs-author-page-post-title {
    font-size: 0.88rem;
    font-weight: 800;
    color: #111827;
    line-height: 1.4;
    transition: color 0.2s;
}
.dark .cs-author-page-post-title { color: #f1f5f9; }
.cs-author-page-post-card:hover .cs-author-page-post-title { color: #0077cc; }
.dark .cs-author-page-post-card:hover .cs-author-page-post-title { color: #00aaff; }

/* Mobile */
@media (max-width: 640px) {
    .cs-author-page-profile { flex-direction: column; align-items: center; text-align: center; }
    .cs-author-page-name { font-size: 1.8rem; }
    .cs-author-page-stats { justify-content: center; }
    .cs-author-page-socials { justify-content: center; }
    .cs-author-page-bio { text-align: left; }
}
