/* Footer Styles */
.site-footer {
    background: var(--darker-bg);
    color: var(--text-secondary);
    border-top: 2px solid #2A2A2D;
    padding: 3rem 0;
}

.main-footer {
    background-color: #1e1e1e;
    padding-top: 32px;
    padding-bottom: 32px;
    margin-top: calc(20vh);
    min-height: auto;
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.footer-logo {
    width: 28px;
    height: 28px;
    margin-right: 8px;
}

.footer-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.35em;
    line-height: 1.334;
    margin: 0;
}

.footer-disclaimer {
    color: white;
    opacity: 0.7;
    margin-bottom: 16px;
    font-size: 0.875rem;
    line-height: 1.43;
    margin: 0 0 16px 0;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-link {
    background: transparent;
    border: 0;
    color: inherit;
    border-color: currentColor;
    padding: 4px 5px;
    font-size: 0.8125rem;
    font-family: 'Ubuntu', 'Roboto', 'Segoe UI', 'Arial', sans-serif;
    font-weight: 700;
    line-height: 1.75;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, 
                box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, 
                border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    border-radius: 4px;
}

.footer-link:hover {
    background-color: rgba(255, 255, 255, 0.04);
}
