/* ============================================
   Hero Background - GHOSTDAG Animation
   Dynamic DAG (Directed Acyclic Graph) visualization
   ============================================ */

/* DAG Canvas Container */
.dag-animation-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
}

/* Canvas Element */
.dag-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .dag-animation-container {
    display: none;
  }
}
