.footer {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #100921;
    border-top: 1.5px solid rgba(139, 92, 246, 0.15);
    color: #f1f5f9;
    font-size: 1rem;
    z-index: 10000;
}
.footer-nav-split {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}
.footer-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.footer-links a {
    color: var(--light-purple);
    transition: color 0.2s;
    position: relative;
    padding: 0 0.75rem;
    text-decoration: none;
}
.footer-links a:not(:last-of-type)::after {
    content: "|";
    position: absolute;
    right: -0.5rem;
    color: #7a00fb57;
    font-size: 1.1em;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}
.footer-links a:hover {
    color: var(--primary-purple);
    text-decoration: none;
}
.footer .text-muted {
    color: #ffffff57 !important;
    font-size: 1rem;
    margin-left: 1.5rem;
    white-space: nowrap;
}
@media (max-width: 600px) {
    .footer-nav-split {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .footer-links {
        flex-direction: row;
        gap: 0.2rem;
        width: 100%;
    }
    .footer-links a:not(:last-of-type)::after {
        content: "";
    }
    .footer .text-muted {
        margin-left: 0;
        margin-top: 0.5rem;
        display: block;
        text-align: left;
        width: 100%;
    }
}
@media (min-width: 768px) {
    .footer {
        position: fixed;
    }
}