.site-footer {
    position: relative;

    width: 100%;

    padding: 38px 0;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(157, 0, 255, 0.12),
            transparent 45%
        ),
        #030006;

    border-top: 1px solid rgba(157, 0, 255, 0.22);
}

.site-footer::before {
    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    width: 70%;
    height: 1px;

    transform: translateX(-50%);

    background: linear-gradient(
        90deg,
        transparent,
        rgba(157, 0, 255, 0.8),
        transparent
    );

    box-shadow:
        0 0 20px rgba(157, 0, 255, 0.55);
}

.footer-container {
    position: relative;

    width: min(1320px, 88%);

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    z-index: 2;
}

.footer-logo {
    flex-shrink: 0;

    color: #ffffff;

    font-family: "Montserrat", sans-serif;

    font-size: 1.15rem;
    font-weight: 800;

    letter-spacing: 2px;

    text-decoration: none;
    text-transform: uppercase;

    text-shadow:
        0 0 5px rgba(255, 255, 255, 0.45),
        0 0 12px rgba(255, 255, 255, 0.18);
}

.footer-logo span {
    color: #9d00ff;

    text-shadow:
        0 0 5px rgba(157, 0, 255, 0.95),
        0 0 12px rgba(157, 0, 255, 0.8),
        0 0 25px rgba(157, 0, 255, 0.55);
}

.footer-copy {
    margin: 0;

    color: #777180;

    font-family: "Montserrat", sans-serif;

    font-size: 0.68rem;

    letter-spacing: 0.5px;
}

.footer-links {
    display: flex;
    align-items: center;

    gap: 25px;
}

.footer-links a {
    color: #9b96a8;

    font-family: "Montserrat", sans-serif;

    font-size: 0.7rem;
    font-weight: 500;

    text-decoration: none;

    transition:
        color 0.25s ease,
        text-shadow 0.25s ease;
}

.footer-links a:hover {
    color: #ffffff;

    text-shadow:
        0 0 12px rgba(157, 0, 255, 0.9);
}

@media (max-width: 800px) {

    .footer-container {
        flex-direction: column;

        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

}

.footer-up {
    color: #9d00ff !important;

    font-weight: 700 !important;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.footer-up:hover {
    color: #ffffff !important;

    text-shadow:
        0 0 8px rgba(157, 0, 255, 1),
        0 0 18px rgba(157, 0, 255, 0.8) !important;
}

.footer-copy span {
    color: #5f5968;
}

html {
    scroll-behavior: smooth;
}