/* === FOOTER === */
.footer {
    background: #0f1115;
    padding: 0.75rem 0;
    position: relative;
    border-top: 3px solid #d6940d;
    margin-top: auto;
    z-index: 100;
}

.footer-container {
    max-width: 100%;
    margin: 0;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.footer-brand {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
    color: #d6940d;
    letter-spacing: 1.5px;
}

.footer-copyright {
    color: #8b909a;
    font-size: 0.8rem;
}

.footer-center {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.footer-link {
    color: #c1c9d2;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #d6940d;
}

.footer-separator {
    color: #8b909a;
    font-size: 0.85rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    list-style: none;
}

.footer-social-link {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(214, 148, 13, 0.1);
    transition: all 0.3s ease;
}

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

.social-icon {
    width: 24px;
    height: 24px;
    stroke: #c1c9d2;
}

.footer-social-link:hover .social-icon {
    stroke: #fff;
}

/* Официальные цвета платформ */
.discord:hover {
    background: #5865F2;
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.4);
}

.vk:hover {
    background: #0077FF;
    box-shadow: 0 4px 12px rgba(0, 119, 255, 0.4);
}

.telegram:hover {
    background: #26A5E4;
    box-shadow: 0 4px 12px rgba(38, 165, 228, 0.4);
}

.youtube:hover {
    background: #FF0000;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.4);
}

/* === Адаптивность === */
@media (max-width: 1365px) {
    .footer {
        padding: 1rem 0;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1.5rem;
    }
    
    .footer-left {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .footer-center {
        position: static;
        transform: none;
        flex-direction: column;
        gap: 0.75rem;
        order: 1;
    }
    
    .footer-social {
        order: 2;
    }
    
    .footer-link {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer-brand {
        font-size: 1rem;
    }
    
    .footer-copyright {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 1.5rem 0;
    }
    
    .footer-container {
        gap: 1.5rem;
    }
    
    .footer-link {
        font-size: 0.75rem;
    }
    
    .footer-social-link {
        width: 36px;
        height: 36px;
    }
    
    .social-icon {
        width: 20px;
        height: 20px;
    }
}

