/* Footer order rules for award pages only */
/* Pages: Site.html, Ai.html, Bot.html, Avtomat.html, 𝓛𝓮𝓷𝓭𝓲𝓷𝓰.html */

/* Desktop version: © 2025 Dev by Ivanov, К началу истории, Все права защищены */
@media (min-width: 769px) {
    #footer .box-bottom {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        flex-direction: row !important;
        gap: 0 !important;
    }
    #footer .box-bottom .box-right {
        order: 1 !important;
        flex: 0 0 auto !important;
        width: auto !important;
        display: flex !important;
        justify-content: flex-start !important;
    }
    #footer .box-bottom .box-left {
        order: 2 !important;
        flex: 0 0 auto !important;
        width: auto !important;
        display: flex !important;
        justify-content: center !important;
    }
    #footer .box-bottom .box-center {
        order: 3 !important;
        flex: 0 0 auto !important;
        width: auto !important;
        display: flex !important;
        justify-content: flex-end !important;
        text-align: center !important;
    }
}

/* Mobile version: К началу истории, Все права защищены, © 2025 Dev by Ivanov */
@media (max-width: 768px) {
    #footer .box-bottom .box-left {
        order: 1;
    }
    #footer .box-bottom .box-center {
        order: 2;
    }
    #footer .box-bottom .box-right {
        order: 3;
    }
}

