/* Базовые стили для глянцевого футера */
.footer-glass {
    background: linear-gradient(135deg, rgba(24, 28, 36, 0.9) 0%, rgba(14, 16, 19, 0.9) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
}

/* Эффект перекрытия глянца */
.glass-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    z-index: 0;
}

/* Градиентный текст */
.text-gradient {
    background: linear-gradient(90deg, #c7c7c7 0%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

/* Анимация пунктов меню */
.menu-list .nav-link {
    transition: all 0.3s ease;
    padding: 5px 0;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
}

.menu-list .nav-link:hover {
    color: #fff;
    transform: translateX(5px);
}

.menu-list .nav-link:before {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    /* background: linear-gradient(90deg, #a0a3a7 0%, #feffff 100%); */
    transition: width 0.3s ease;
}

.menu-list .nav-link:hover:before {
    width: 100%;
}

/* Стили для соц-иконок */
.social-icons {
    gap: 15px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-icon .social-tooltip {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-100%);
    opacity: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    pointer-events: none;
    transition: all 0.3s ease;
}

.social-icon:hover .social-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(-120%);
}

/* Цвета для соцсетей */

.vk {
    background: #4a76a8;
}

.telegram {
    background: #0088cc;
}



.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Разделитель с эффектом свечения */
.glow-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(79, 172, 254, 0) 0%, #c5c6c7 50%, rgba(79, 172, 254, 0) 100%);
    position: relative;
}

.glow-divider:after {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(79, 172, 254, 0) 0%, rgba(79, 172, 254, 0.5) 50%, rgba(79, 172, 254, 0) 100%);
    filter: blur(5px);
}

/* Подпись "Сделано мной" */
.signature {
    display: inline-flex;
    align-items: center;
    font-style: italic;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Автоматическое обновление года */
#current-year {
    display: inline-block;
}

li a{
    color: white;
    text-decoration: none;
}