/* Footer */
footer {
    background: var(--footer-bg);
    padding: 3rem 0;
}

footer .container {
    display: flex;
    flex-direction: column;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
}

.copyright {
    text-align: left;
}

.trading-statement {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.legal-links {
    text-align: right;
}

.legal-links a {
    text-decoration: none;
    margin-left: 1.5rem;
}

/* Cookie Notice - Fixed at bottom */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: var(--card-bg);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

#acceptCookies {
    background: var(--button-bg);
}

#customizeCookies {
    background: transparent;
    border: 2px solid var(--button-bg);
    color: var(--button-bg);
}

#customizeCookies:hover {
    background: rgba(40,116,252,0.1);
} 