/* ================================
   ARCHIVE UI — SHARED BY LORE PAGES
   ================================ */

   .archive {
    margin-bottom: 96px;
  }
  
  .archive pre {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    white-space: pre-wrap;
    line-height: 1.7;
  
    max-width: 680px;
    margin: 0 auto;
  
    padding: 0;
    padding-left: 12px;
  
    /* REQUIRED for backdrop-filter to work */
    background: rgba(0, 0, 0, 0.01);
  
    border: none;
    opacity: 0.9;
  
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  }
  .archive pre::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255,255,255,0.08);
  }
  
  
  
  /* Fragment metadata */
  .fragment-meta {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    opacity: 0.45;
    margin-bottom: 12px;
  
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
  }
  
  
  /* Scroll reveal */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  