
/* Layered animated gradient for futuristic effect */
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(120deg, #1e90ff, #ff3c3c, #1e90ff);
    background-size: 300% 300%;
    animation: animateBackground 20s ease infinite;
    z-index: -1;
    opacity: 0.1;
    pointer-events: none;
}

@keyframes animateBackground {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
