footer {
    bottom: 0;
    margin-bottom: 0px;
    margin-top: 20px;
    width: 100%;
    color: white;
    text-align: center;
    padding: 20px 0px 3px 0px;
    background: rgba(0, 4, 40, 0.95);
    position: relative;
    overflow: hidden;
}

.footer {
    background: rgba(0, 4, 40, 0.95);
    padding: 3rem 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.1),
            rgba(255, 255, 255, 0.2),
            rgba(255, 255, 255, 0.1),
            transparent);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    position: relative;
    z-index: 1;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: white;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 8px;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.3s ease;
}

.social-link:hover::before {
    transform: scale(1);
    opacity: 1;
}

.social-link:hover {
    transform: translateY(-5px);
}

.footer_logo {
    width: 30px;
    height: 30px;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.social-link:hover .footer_logo {
    animation: gentlePulse 1.5s infinite;
}

.social-link span {
    position: relative;
    color: white;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.social-link:hover span {
    opacity: 1;
    transform: translateX(0);
}

.copyright {
    text-align: center;
    color: #e2e8f0;
    font-size: 0.9rem;
    margin: 0;
    position: relative;
    padding: 15px 0;
}

.copyright::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.1),
            rgba(255, 255, 255, 0.2),
            rgba(255, 255, 255, 0.1),
            transparent);
}

@keyframes gentlePulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .social-links {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .social-link::before {
        display: none;
    }
}