* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    background-color: #0a0c0f;
    font-family: 'Inter', sans-serif;
    color: #eef2ff;
    line-height: 1.6;
    scroll-behavior: smooth;
  }

  /* fondos minimalistas + grid */
  .bg-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: radial-gradient(circle at 20% 30%, #0e2a1f, #030507 80%);
  }

  .grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: 
      linear-gradient(rgba(51, 153, 51, 0.08) 1px, transparent 1px),
      linear-gradient(90deg, rgba(51, 153, 51, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
  }

  .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
  }

  /* navbar (mismo estilo que landing y blog) */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0 32px;
    flex-wrap: wrap;
    gap: 20px;
    border-bottom: 1px solid rgba(51, 153, 51, 0.25);
    margin-bottom: 32px;
  }

  .logo {
    font-size: 1.9rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #B0FFB0, #339933);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .logo span {
    font-weight: 500;
    color: #7f8c8d;
    background: none;
  }

  .nav-links {
    display: flex;
    gap: 32px;
    font-weight: 500;
  }

  .nav-links a {
    color: #cddfe7;
    text-decoration: none;
    transition: 0.2s;
    font-size: 1rem;
  }

  .nav-links a:hover {
    color: #6fcf97;
  }

  .btn-outline {
    border: 1px solid #339933;
    background: transparent;
    padding: 8px 20px;
    border-radius: 100px;
    color: #ccffcc;
    font-weight: 600;
    transition: 0.25s;
  }

  .btn-outline:hover {
    background: rgba(51, 153, 51, 0.15);
    border-color: #5cff7e;
  }

  /* breadcrumb sutil */
  .breadcrumb {
    margin-bottom: 24px;
    font-size: 0.85rem;
    color: #8aa88a;
  }
  .breadcrumb a {
    color: #9fdf9f;
    text-decoration: none;
  }
  .breadcrumb a:hover {
    text-decoration: underline;
  }

  /* layout principal: artículo + sidebar */
  .post-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin: 20px 0 60px;
  }

  .post-main {
    flex: 2.5;
    min-width: 0;
  }

  /* cabecera del artículo */
  .post-header {
    margin-bottom: 32px;
  }

  .post-category {
    display: inline-block;
    background: rgba(51, 153, 51, 0.2);
    backdrop-filter: blur(4px);
    padding: 4px 14px;
    border-radius: 40px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #b5ffb5;
    margin-bottom: 20px;
    border: 0.5px solid #2e6b2e;
  }

  .post-header h1 {
    font-size: 2.7rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    background: linear-gradient(135deg, #FFFFFF, #b3ffb3);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
  }

  .post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    font-size: 0.85rem;
    color: #98b898;
    border-bottom: 1px solid #2a402a;
    padding-bottom: 24px;
    margin-bottom: 24px;
  }
  .post-meta i {
    margin-right: 6px;
    color: #6fcf97;
  }

  /* contenido del artículo estilo limpio */
  .post-content {
    font-size: 1.05rem;
    color: #e2f0e5;
  }
  .post-content p {
    margin-bottom: 1.5rem;
  }
  .post-content h2 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    border-left: 4px solid #339933;
    padding-left: 20px;
  }
  .post-content h3 {
    font-size: 1.4rem;
    margin: 1.6rem 0 0.8rem;
    font-weight: 600;
    color: #ccffcc;
  }
  .post-content code {
    background: #0f1f12;
    padding: 0.2rem 0.4rem;
    border-radius: 8px;
    font-family: monospace;
    font-size: 0.9em;
    color: #b5ffb5;
  }
  .post-content pre {
    background: #051007;
    padding: 20px;
    border-radius: 20px;
    overflow-x: auto;
    margin: 24px 0;
    border: 1px solid #2b5e2b;
    font-family: monospace;
    color: #cef5ce;
  }
  .post-content ul, .post-content ol {
    margin: 1rem 0 1.5rem 2rem;
  }
  .post-content li {
    margin: 0.5rem 0;
  }
  .post-content blockquote {
    border-left: 4px solid #6fcf97;
    background: rgba(51, 153, 51, 0.08);
    padding: 1rem 1.8rem;
    margin: 2rem 0;
    font-style: italic;
    border-radius: 24px;
  }
  .post-content img {
    max-width: 100%;
    border-radius: 28px;
    margin: 30px 0;
    border: 1px solid #2e6b2e;
  }

  /* caja de autor / llamado a afiliado */
  .author-box {
    background: rgba(20, 35, 25, 0.7);
    backdrop-filter: blur(8px);
    border-radius: 32px;
    padding: 28px 32px;
    margin: 48px 0;
    border: 1px solid #2d6e2d;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
  }
  .author-info {
    display: flex;
    gap: 18px;
    align-items: center;
  }
  .author-avatar {
    width: 60px;
    height: 60px;
    background: #1e3a1e;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #7fe07f;
  }
  .author-text strong {
    color: white;
  }
  .affiliate-link {
    background: #1f4f1f;
    padding: 12px 28px;
    border-radius: 100px;
    font-weight: 700;
    transition: 0.2s;
    color: white;
    text-decoration: none;
  }
  .affiliate-link:hover {
    background: #2e7d32;
    transform: scale(1.02);
  }

  /* sidebar lateral */
  .post-sidebar {
    flex: 1;
    min-width: 260px;
  }
  .sidebar-widget {
    background: rgba(10, 21, 12, 0.7);
    backdrop-filter: blur(8px);
    border-radius: 28px;
    padding: 28px 24px;
    margin-bottom: 32px;
    border: 1px solid #2c552c;
  }
  .sidebar-widget h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    border-left: 3px solid #339933;
    padding-left: 16px;
  }
  .trending-list {
    list-style: none;
  }
  .trending-list li {
    margin-bottom: 18px;
    border-bottom: 1px dashed #2c5a2c;
    padding-bottom: 12px;
  }
  .trending-list a {
    color: #cff0cf;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
  }
  .trending-list a:hover {
    color: #9bff9b;
  }
  .product-reco {
    display: flex;
    gap: 16px;
    align-items: center;
    margin: 20px 0;
  }
  .btn-small {
    background: transparent;
    border: 1px solid #339933;
    border-radius: 60px;
    padding: 6px 16px;
    font-size: 0.8rem;
    color: #b3ffb3;
    text-decoration: none;
  }
  /* comentarios simulados */
  .comments-area {
    margin: 50px 0 80px;
  }
  .comment {
    background: #0c1810;
    border-radius: 24px;
    padding: 20px;
    margin: 20px 0;
  }
  .comment strong {
    color: #9bff9b;
  }
  /* footer */
  .footer {
    border-top: 1px solid #1e3a2a;
    margin-top: 40px;
    padding: 40px 0 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    color: #7d9a7d;
  }
  .footer a {
    color: #9fdf9f;
    text-decoration: none;
  }
  @media (max-width: 900px) {
    .post-header h1 {
      font-size: 1.9rem;
    }
    .post-layout {
      flex-direction: column;
    }
    .navbar {
      flex-direction: column;
      align-items: flex-start;
    }
  }