/* bg.css - Elora tech-grid background, matching eloraaitrading.com.
   Two fixed layers painted behind all content: a faint green grid + a soft
   bottom glow. Sits on top of each page's dark base, under the content. */

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

body::after {
  content: "";
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 40%;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0, 255, 136, 0.05), transparent);
}
