
footer 
{
    user-select: none;
    background-color: var(--footerHeaderColor);
    color: white;
    padding: 30px 0;
    box-shadow: 0 0 10px rgba(39, 19, 213, 0.6);
    margin-top: auto;
}

.footerContainer 
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
}

.footerCopyright 
{
    font-size: 14px;
    font-weight: 500;
}

.footerLinks 
{
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footerLinks a 
{
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
}

.footerLinks a:hover 
{
    color: #90e0ef;
    border-bottom-color: #90e0ef;
}

.socialIcons 
{
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.socialIcons a 
{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}

.socialIcons a:hover 
{
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.ico 
{
    font-size: 18px;
    color: white;
    transition: color 0.3s ease;
}

.ico:hover 
{
    color: #90e0ef;
}


@media screen and (max-width: 1024px) {
    footer {
        padding: 25px 0;
    }
    
    .footerContainer {
        flex-direction: column;
        gap: 20px;
        padding: 0 15px;
    }
    
    .footerCopyright {
        order: 3;
        font-size: 13px;
    }
    
    .footerLinks {
        order: 1;
        gap: 20px;
        justify-content: center;
    }
    
    .socialIcons {
        order: 2;
        justify-content: center;
        gap: 20px;
    }
    
    .socialIcons a {
        width: 45px;
        height: 45px;
    }
    
    .ico {
        font-size: 20px;
    }
}

@media screen and (max-width: 480px) {
    footer {
        padding: 20px 0;
    }
    
    .footerContainer {
        padding: 0 10px;
        gap: 15px;
    }
    
    .footerLinks {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .footerLinks a {
        font-size: 15px;
        padding: 8px 0;
    }
    
    .footerCopyright {
        font-size: 12px;
        text-align: center;
        line-height: 1.4;
    }
    
    .socialIcons {
        gap: 15px;
    }
    
    .socialIcons a {
        width: 42px;
        height: 42px;
    }
}

@media screen and (max-width: 320px) {
    .footerContainer {
        padding: 0 5px;
    }
    
    .footerLinks a {
        font-size: 14px;
    }
    
    .footerCopyright {
        font-size: 11px;
    }
    
    .socialIcons {
        gap: 12px;
    }
    
    .socialIcons a {
        width: 38px;
        height: 38px;
    }
    
    .ico {
        font-size: 16px;
    }
}
