:root {
	--color-brand: #0fb879;
}

div.Header__name{
  color: #03452e;
}

/* Основной контейнер футера */
.custom-footer {
    text-align: left;
    //background-color: #0d111a; /* Темно-синий фон как на скрине */
    color: #ffffff;
    padding: 60px 0 30px 0;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Верхняя часть: Лого + Колонки */
.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 20px;
    filter: invert(100%);
    filter: brightness(100);

}

.brand-description {
    color: #8a92a3; /* Серый текст */
    font-size: 14px;
    line-height: 1.6;
    max-width: 300px;
}

/* Стили колонок */
.footer-links {
    display: flex;
    flex: 2;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.link-column h4 {
    color: #8a92a3;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.link-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.link-column ul li {
    margin-bottom: 12px;
}

.link-column ul li a {
    color: #02c076; /* Зеленый цвет ссылок */
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.2s;
}

.link-column ul li a:hover {
    opacity: 0.8;
}

/* Разделитель */
.footer-divider {
    border: 0;
    border-top: 1px solid #1e2633;
    margin-bottom: 25px;
}

/* Нижняя часть: Копирайт и Кнопка */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: #4e5666;
    font-size: 14px;
}

.btn-start-trading {
    background-color: #00c076; /* Фирменный зеленый */
    color: #fff !important;
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.3s;
}

.btn-start-trading:hover {
    background-color: #00a365;
}

/* Адаптивность для мобилок */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
    }
    .footer-links {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}
