@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

footer {
    background: linear-gradient(135deg, #111827, #1f2937);
    color: #d1d5db;
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(139, 92, 246, 0.3);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    font-size: 1.5rem;
    font-family: 'Inter', sans-serif;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #8b5cf6;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-links a {
    color: #9ca3af;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #8b5cf6;
    transform: translateY(-2px);
}

.copyright {
    color: #6b7280;
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .footer-links {
        gap: 1rem;
    }
}