﻿.site-footer {
    width: 100vw;
    max-width: 100%;
    margin: 0;
    padding: 60px 20px 40px;
    background: rgba(0, 0, 0, 0.85); /* dark background */
    color: var(--text-color);
    text-align: center;
    font-size: 0.95rem;
    backdrop-filter: blur(6px);
    border-top: 1px solid var(--accent);
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    box-sizing: border-box;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
    max-width: 1000px;
    margin-inline: auto;
}

    .footer-nav a {
        color: var(--accent);
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s ease;
    }

        .footer-nav a:hover {
            color: var(--accent-2);
            text-shadow: 0 0 8px var(--accent);
        }

.footer-bottom {
    opacity: 0.7;
    margin-top: 10px;
    font-size: 0.85rem;
}
