/* Animated Background Component */

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.grid-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
}

.grid-line.horizontal {
    width: 100%;
    height: 1px;
    animation: slideRight 20s linear infinite;
}

.grid-line.vertical {
    height: 100%;
    width: 1px;
    animation: slideDown 15s linear infinite;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
    animation: float 20s ease-in-out infinite;
}

.orb1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--color-brand-primary), transparent);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.orb2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--color-brand-secondary), transparent);
    bottom: 20%;
    right: 15%;
    animation-delay: -5s;
}

.orb3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--color-brand-tertiary), transparent);
    top: 50%;
    left: 50%;
    animation-delay: -10s;
}
