a {
    text-decoration: none;
    color: var(--text-color);
    transition: color 0.3s ease;

    &:hover {
        color: var(--primary-color);
        opacity: 0.7;
    }
}

.footer {
    width: 100%;
    min-height: 160px;
    background-color: var(--navbar-bg);
    color: var(--text-color);
    box-shadow: var(--box-shadow);
    border-top: 1px solid var(--border-color);
    padding: 1rem 2rem;
    z-index: 10;
    position: relative;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
    flex-shrink: 0;

    .container {
        max-width: 1300px;
        margin: 0 auto;
    }
}

.footer-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    width: 100%;
}

.footer-icon {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    min-width: 74px;
    border: var(--border-color) 2px solid;
    border-radius: 50%;
    margin: 1rem 0 2rem 0;
    transition: all 0.3s ease;
}

.footer-key {
    width: 75px;
    height: 75px;
    background-image: url(/assets/img/icon/key_footer.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;

    &:hover {
        transform: scale(1.05);
    }
}

.network {
    position: relative;
    font-size: 1.5rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    width: 300px;
    margin: 0;
}

.network-2 {
    position: relative;
    font-size: 14px;
    text-transform: none;
    transition: color 0.3s ease;
    width: 280px;
    font-weight: initial;
}

.footer-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    row-gap: 0;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;

    a {
        font-size: 0.95rem;
        transition: color 0.2s ease;
        text-decoration: none;
        position: relative;
        padding: 0.5rem 0;

        &::after {
            content: '|';
            margin-left: 1.5rem;
            color: var(--border-color);
        }

        &:last-child::after {
            display: none;
        }
    }
}

@media (max-width: 768px) {
    .footer-wrapper {
        justify-content: center;
    }

    .footer-left {
        flex-direction: column;
    }

    .footer-icon {
        display: none;
    }

    .footer-links {
        gap: 8px;
        font-size: 14px;

        a {
            margin-left: 0;

            &::after {
                margin-left: 8px;
            }
        }
    }
}