.mr-footer {
    position: relative;
    padding: 34px 0 28px;
    background: linear-gradient(90deg, rgba(15, 20, 34, 0.94), rgba(25, 31, 45, 0.94));
    box-shadow: 0 -14px 32px rgba(0, 0, 0, 0.3);
}

.footer-separator {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, rgba(97, 216, 255, 0.35), rgba(97, 216, 255, 0.06));
}

.mr-footer__inner {
    width: var(--mr-content-width);
    margin: 0 auto;
    display: grid;
    gap: 20px;
    justify-items: center;
}

.footer-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 190px;
    min-height: 78px;
    padding: 16px 18px;
    border-radius: 14px;
    border: 1px solid rgba(166, 207, 255, 0.18);
    background: linear-gradient(180deg, rgba(28, 35, 52, 0.95), rgba(16, 21, 34, 0.95));
    color: #f6fbff;
    font-family: "Orbitron", sans-serif;
    font-size: 1.08rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.34);
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.footer-button:hover {
    transform: translateY(-2px) scale(1.02);
    border-color: rgba(183, 224, 255, 0.36);
    background: linear-gradient(180deg, rgba(42, 54, 79, 0.98), rgba(22, 31, 48, 0.96));
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.4);
}

.mr-footer__tagline {
    font-size: 0.95rem;
    color: rgba(228, 238, 255, 0.8);
    text-align: center;
    letter-spacing: 0.02em;
}

.mr-footer__nav {
    width: 100%;
    display: flex;
    justify-content: center;
}

.footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid rgba(166, 207, 255, 0.12);
    color: rgba(244, 249, 255, 0.9);
    background: rgba(255, 255, 255, 0.04);
    font-family: "Orbitron", sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    transition: border-color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.footer-links a:hover {
    transform: translateY(-1px);
    border-color: rgba(183, 224, 255, 0.26);
    background: rgba(255, 255, 255, 0.08);
}
