/* assets/style.css - FuteHD Ultra Clean (PC & Mobile Uniforme) */
:root {
    --bg-main: #020617;
    --bg-card: #0f172a;
    --accent-green: #10b981;
    --accent-blue: #38bdf8;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --border-color: #334155;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', system-ui, sans-serif; -webkit-tap-highlight-color: transparent; }
body { background-color: var(--bg-main); color: var(--text-main); display: flex; flex-direction: column; min-height: 100vh; }
a { text-decoration: none; color: inherit; }

/* HEADER TOPO UNIFORME (ALINHADO COM O CONTEÚDO) */
.header-nav { background: #0f172a; border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 100; }

.header-container { max-width: 1100px; margin: 0 auto; padding: 15px 20px; width: 100%; display: flex; justify-content: space-between; align-items: center; }

.brand-logo { font-size: 1.5rem; font-weight: 900; text-transform: uppercase; color: #fff; display: flex; align-items: center; gap: 8px; }
.brand-logo i { color: var(--accent-green); }

/* BOTÃO DE MENU SEMPRE VISÍVEL */
.btn-menu { background: none; border: none; color: #f8fafc; font-size: 1.5rem; cursor: pointer; padding: 5px; display: block; }

/* MENU LATERAL DIREITO (FUNCIONA EM TUDO) */
.menu-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); z-index: 999; display: none; opacity: 0; transition: 0.3s; }
.menu-overlay.active { display: block; opacity: 1; }
.sidebar-mobile { position: fixed; top: 0; right: -300px; width: 280px; height: 100%; background: #0f172a; border-left: 1px solid var(--border-color); z-index: 1000; transition: right 0.3s ease; padding: 20px; display: flex; flex-direction: column; box-shadow: -5px 0 15px rgba(0,0,0,0.5); }
.sidebar-mobile.active { right: 0; }
.sidebar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; border-bottom: 1px solid var(--border-color); padding-bottom: 15px; }
.sidebar-title { font-size: 1.1rem; font-weight: 800; color: var(--text-muted); text-transform: uppercase; }
.btn-close { background: none; border: none; color: var(--text-muted); font-size: 1.5rem; cursor: pointer; }
.sidebar-link { padding: 15px; background: var(--bg-main); border-radius: 12px; margin-bottom: 10px; color: var(--text-muted); font-weight: 700; border: 1px solid var(--border-color); display: flex; align-items: center; gap: 12px; transition: 0.2s; }
.sidebar-link:hover, .sidebar-link.active { background: #1e293b; color: #fff; border-color: var(--accent-green); }

/* LAYOUT CENTRALIZADO ESTILO TIMELINE */
.main-wrapper { max-width: 1100px; margin: 30px auto; padding: 0 20px; width: 100%; flex: 1; }

/* RECONSTRUÇÃO DOS POSTS (IMAGEM + TITULO COMPLETO + DATA) */
.post-list { display: flex; flex-direction: column; gap: 15px; margin-bottom: 40px; }
.post-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 16px; padding: 15px; display: flex; gap: 15px; align-items: center; transition: 0.2s; }
.post-card:hover { transform: translateY(-2px); border-color: var(--accent-green); box-shadow: 0 8px 20px rgba(0,0,0,0.3); }

/* Destaque sutil apenas na borda do post fixado de jogos */
.post-card.pinned { border-color: var(--accent-blue); }

.post-image { width: 95px; height: 95px; flex-shrink: 0; border-radius: 12px; overflow: hidden; background: var(--bg-main); border: 1px solid var(--border-color); }
.post-image img { width: 100%; height: 100%; object-fit: cover; }

.post-content { flex: 1; display: flex; flex-direction: column; justify-content: space-between; min-height: 95px; overflow: hidden; }

/* TÍTULO 100% EXPOSTO (SEM CORTES) */
.post-title { font-size: 1.1rem; font-weight: 800; color: #fff; line-height: 1.4; margin-bottom: 8px; word-wrap: break-word; }

.post-footer { display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: var(--text-muted); font-weight: 700; }
.post-date { display: flex; align-items: center; gap: 4px; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 0.5px; }

.btn-ler-mais { color: var(--accent-green); font-size: 0.85rem; font-weight: 800; text-transform: uppercase; display: flex; align-items: center; gap: 3px; }
.post-card:hover .btn-ler-mais { color: #fff; }

/* PAGINAÇÃO */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 20px; flex-wrap: wrap; }
.page-link { padding: 8px 15px; background: var(--bg-card); border: 1px solid var(--border-color); color: var(--text-muted); border-radius: 8px; font-weight: 700; transition: 0.2s; }
.page-link:hover, .page-link.active { background: var(--accent-green); color: #fff; border-color: var(--accent-green); }