/* Footer Styles - Matching DogeGage Chat */

.footer {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 0;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
    opacity: 0.9;
}

.footer-name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
    opacity: 0.9;
}

.footer-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.2s;
    opacity: 0.8;
}

.footer-link:hover {
    color: var(--primary);
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 1.25rem 0;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}
