/* Footer */
.footer {
    margin-top: auto;
    padding: 2rem;
    background: var(--bg-tertiary);
    border-top: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

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

.footer-left {
    display: flex;
    align-items: center;
}

.footer-made-by {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-made-by a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.footer-made-by a:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

.footer-right {
    display: flex;
    align-items: center;
}

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

.footer-link {
    color: var(--text-tertiary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    border: 1px solid transparent;
}

.footer-link:hover {
    color: var(--primary);
    background: var(--bg-quaternary);
    border-color: var(--border-light);
    transform: translateY(-1px);
}

/* Mobile Footer */
@media (max-width: 768px) {
    .footer {
        padding: 1.5rem 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 0;
    }
    
    .footer-right {
        display: none;
    }
    
    .footer-made-by {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 1rem;
    }
    
    .footer-made-by {
        font-size: 0.8rem;
    }
} 