.blockchain-network {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Change from 0 to -1 to ensure it stays behind content */
    overflow: hidden;
    pointer-events: none;
}

/* Node styles removed as requested */

.blockchain-line {
    position: absolute;
    height: 3px; /* Slightly thicker lines since they're the focus now */
    background: transparent;
    transform-origin: left center;
    z-index: 1;
    overflow: hidden;
}

/* Line grows from left to right with light effect */
.blockchain-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(67, 255, 186, 0) 0%, 
        rgba(67, 255, 186, 1) 50%, 
        rgba(67, 255, 186, 0) 100%);
    transform: translateX(-100%);
    box-shadow: 0 0 10px rgba(67, 255, 186, 0.8); /* Added glow effect to lines */
}

/* Animation for light traveling along the line - slower speed */
.blockchain-line.animate-line::before {
    animation: light-travel 4s ease-out forwards; /* Even slower for better visibility */
}

.blockchain-line.fade-out {
    opacity: 0;
    transition: opacity 0.8s ease-out;
}

/* Slower light travel animation */
@keyframes light-travel {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}
