/* Стили для ссылок в футере */
.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: var(--primary-color);
    background: rgba(126, 87, 194, 0.1);
    transform: translateY(-2px);
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.footer-links a:hover::after {
    width: 80%;
}

.separator {
    color: var(--border-color);
    font-weight: 300;
    user-select: none;
}

/* Альтернативный вариант с иконками */
.footer-links.with-icons a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links.with-icons a::before {
    font-size: 0.8rem;
}

.footer-links.with-icons a:first-child::before {
    content: '🛡️';
}

.footer-links.with-icons a:last-child::before {
    content: '📄';
}

/* Вариант для темной темы */
.footer.dark .footer-links a {
    color: rgba(255, 255, 255, 0.7);
}

.footer.dark .footer-links a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

/* Адаптивность */
@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 10px;
        padding: 20px 0;
    }
    
    .footer-links a {
        padding: 10px 20px;
        width: 200px;
        text-align: center;
    }
    
    .separator {
        display: none;
    }
    
    /* Для мобильных можно добавить иконки */
    .footer-links.mobile-icons a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
}

/* Анимация появления */
.footer-links {
    animation: fadeInUp 0.6s ease 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}