/* VeRB - Very Rapid Backgrounds */
.verb-container {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
    overflow: hidden;
}

.verb-block {
    position: absolute;
    width: 150%;
    left: -25%;
    filter: blur(2px);
    opacity: 0.9;
}

.verb-wave-edge {
    position: absolute;
    width: 150%;
    left: -25%;
    height: 40px;
    opacity: 0.6;
    filter: blur(4px);
}

.verb-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.03) 2px,
            rgba(255, 255, 255, 0.03) 4px
        );
    pointer-events: none;
}

.verb-svg {
    position: absolute;
    width: 0;
    height: 0;
}
