@import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&family=Syne:wght@700;800&display=swap');

* { box-sizing: border-box; }

body {
  background: #0a0a0a;
  color: #e8e8e8;
  font-family: 'Space Mono', monospace;
  margin: 0;
  padding: 0;
}

/* NAV */
nav {
  background: #000;
  border-bottom: 1px solid #1a1a1a;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #f5c518;
  text-decoration: none;
}
.nav-links { display: flex; gap: 1.5rem; }
.nav-links a {
  font-size: 0.78rem;
  color: #888;
  text-decoration: none;
}
.nav-links a:hover { color: #f5c518; }

/* WRAPPER */
.wrapper { max-width: 800px; margin: 0 auto; padding: 3rem 1.5rem; }

/* HEADER */
.blog-header { margin-bottom: 2.5rem; border-bottom: 1px solid #1a1a1a; padding-bottom: 2rem; }
.blog-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: #f5c518;
  margin-bottom: 0.4rem;
}
.blog-subtitle { font-size: 0.8rem; color: #555; }

/* TARJETA DE IDENTIDAD */
.identity-card {
  background: #111;
  border: 1px solid #222;
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  margin-bottom: 2rem;
  font-size: 0.78rem;
  color: #555;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.identity-card a { color: #f5c518; text-decoration: none; }
.identity-card a:hover { text-decoration: underline; }

/* FEED DE ARTÍCULOS */
#feed { margin-top: 1rem; }

.post-card {
  border: 1px solid #222;
  padding: 1.8rem;
  margin-bottom: 1.5rem;
  border-radius: 12px;
  background: #111;
  transition: border-color 0.2s ease;
}
.post-card:hover { border-color: #f5c518; }

.post-meta {
  font-size: 0.7rem;
  color: #555;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.post-category {
  display: inline-block;
  background: rgba(0,255,159,0.06);
  border: 1px solid rgba(0,255,159,0.2);
  color: #00ff9f;
  border-radius: 4px;
  padding: 0.1rem 0.5rem;
  font-size: 0.65rem;
  margin-left: 0.5rem;
}
.post-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.8rem;
  line-height: 1.4;
}
.post-excerpt { font-size: 0.8rem; color: #888; line-height: 1.7; margin-bottom: 1rem; }
.post-footer {
  font-size: 0.7rem;
  color: #444;
  border-top: 1px solid #1a1a1a;
  padding-top: 0.8rem;
  margin-top: 1rem;
}

/* FOOTER */
.site-footer {
  font-size: 0.7rem;
  color: #555;
  margin-top: 3rem;
  border-top: 1px solid #1a1a1a;
  padding-top: 1rem;
  text-align: right;
}
.site-footer a { color: #555; text-decoration: none; }
.site-footer a:hover { color: #888; }

/* Estilos para contenido de artículos cargados por JS */
#feed h2 { color: #f5c518; font-family: 'Syne', sans-serif; font-size: 1.2rem; margin-top: 0; }
#feed h3 { color: #f5c518; font-size: 1rem; border-left: 3px solid #f5c518; padding-left: 10px; }
#feed p { color: #888; font-size: 0.82rem; line-height: 1.7; }
#feed code { background: #1a1a1a; padding: 2px 5px; border-radius: 4px; font-size: 0.8rem; }
#feed blockquote, #feed p[style*="italic"] {
  background: #1a1a1a;
  border-left: 2px solid #f5c518;
  padding: 1rem;
  border-radius: 6px;
  font-style: italic;
}
