/* Background Styles */
.bg {
    animation: slide 6s ease-in-out infinite alternate; /* Slower animation */
    background-image: linear-gradient(-60deg, #222222 33%, #333333 33%, #333333 66%, #222222 66%); /* Muted dark gray tones */
    bottom: 0;
    left: -50%;
    opacity: 0.1; /* Further reduced opacity */
    position: fixed;
    right: -50%;
    top: 0;
    z-index: -1;
}

/* Variants for additional background effects */
.bg2 {
    animation-direction: alternate-reverse;
    animation-duration: 8s; /* Slower animation */
}

.bg3 {
    animation-duration: 10s; /* Slower animation */
}

@keyframes slide {
    0% {
        transform: translateX(-25%);
    }
    100% {
        transform: translateX(25%);
    }
}