footer {
    position: relative;
    background: #13131B;
    overflow: hidden;
    color: #fff;
    margin-top: 2rem;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 180px;
    overflow: hidden;
    line-height: 0;
    transform: translateY(-100%);
}
.footer-wave svg {
    display: block;
    width: 100%;
    height: 100%;
}


.footer-charts {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding-top: 2rem;
    height: 180px;
}

#line-chart {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.candles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-wrap: nowrap;
    opacity: 0.9;
}
.candle {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 2px;
}
.wick, .body {
    opacity: 0.7;
    border-radius: 2px;
}
.wick {
    width: 2px;
}
.body {
    width: 6px;
}


.footer-content {
    max-width: 1200px;
    margin: 1rem auto 0 auto;
    padding: 0 1rem 2rem;
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}
.footer-col {
    flex: 1 1 300px;
    min-width: 250px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}
.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 10%;
    object-fit: cover;
}
.footer-description {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.4;
}


.footer-links {
    list-style: none;
    margin-top: 1rem;
}
.footer-links li {
    margin: 0.5rem 0;
}
.footer-links a {
    text-decoration: none;
    color: #fff;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}
.footer-links a:hover {
    opacity: 1;
}


.footer-apps {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.footer-apps img {
    width: 140px;
    height: auto;
    object-fit: contain;
    transition: opacity 0.3s;
}
.footer-apps img:hover {
    opacity: 0.8;
}


.footer-socials {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}
.footer-socials a {
    color: #fff;
    font-size: 1.4rem;
    transition: opacity 0.3s;
}
.footer-socials a:hover {
    opacity: 0.8;
}


.footer-bottom {
    margin-bottom: 2rem;*/
    font-size: 0.8rem;
    text-align: center;
    opacity: 0.6;
}


@media (max-width: 600px) {
    .main-content {
        flex-direction: column;
    }
    .footer-content {
        flex-direction: column;
    }
}