.footer {
    background: #0b0a19;
    padding: 40px 0 20px 0;
    color: #fff;
    border-top: 1px solid #2F2D4C;
    
}

.footer-container {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}

/* Соцсети */
.footer-social a img {
    width: 28px;
    margin-right: 10px;
    transition: 0.3s;
}

.footer-social a img:hover {
    opacity: 0.7;
}

/* Подписка */
.footer-subscribe p {
    margin-bottom: 8px;
    font-size: 14px;
    color: #bfbfbf;
}

.subscribe-box {
    display: flex;
    align-items: center;
    background: #14122e;
    padding: 4px;
    border-radius: 5px;
}

.subscribe-box input {
    background: transparent;
    border: none;
    padding: 10px 8px;
    width: 180px;
    color: #fff;
    outline: none;
}

.subscribe-box button {
    background: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}

.subscribe-box button:hover {
    opacity: 0.9;
}

/* Флаги */
.footer-flags img {
    width: 28px;
    margin-left: 8px;
    border-radius: 50%;
    cursor: pointer;
}

/* Нижний блок */
.footer-bottom {
    width: 90%;
    margin: 25px auto 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 15px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-links a {
    color: #bfbfbf;
    text-decoration: none;
    margin-right: 20px;
    font-size: 14px;
}

.footer-links a:hover {
    color: #fff;
}

.footer-copy {
    font-size: 14px;
    color: #bfbfbf;
}

.footer-dev {
    display: inline-block;
    padding: 10px 20px;
    background: #15132C;
    color: #fff;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.footer-dev:hover {
    opacity: 0.8;
}


/* Адаптация */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .subscribe-box {
        justify-content: center;
    }

    .footer-flags img {
        margin: 0 5px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

.footer-social a {
    text-decoration: none !important;
    display: inline-block;
    line-height: 0;
    font-size: 0;
}
