.footer-bar {
    width: 100%;
    text-align: center;
    padding: 10px 0 20px 0;
    margin: 0;
    font-size: 0.90rem;
    z-index: 2;
}

.footer-bar a {
    display: inline-block;
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.84);
    text-decoration: none;
}

.footer-bar::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 10%;
    width: 80%;
    height: 2px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 229, 255, 0.80),
        rgba(255, 79, 216, 0.60),
        transparent
    );

    animation: laserLinePulse 3.6s ease-in-out infinite;
}

.footer-bar::after {
    content: "";
    position: absolute;
    top: 0;
    left: 10%;
    width: 20%;
    height: 2px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        rgba(0, 229, 255, 0.4),
        transparent
    );

    animation: laserScan 6s linear infinite;
}
