.footer {
    background: rgba(15, 15, 20, 0.95);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center top, rgba(106, 226, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-logo {
    font-family: 'Clash Display', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-pink), var(--accent-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    position: relative;
}

.footer-logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-pink));
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0 0 1.5rem 0;
    padding: 0;
}

.footer-links li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 2px;
}

.footer-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-cyan);
    transition: width 0.3s ease;
}

.footer-links li a:hover {
    color: var(--text-white);
}

.footer-links li a:hover::after {
    width: 100%;
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 600px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.6rem 1rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 0.5rem;
}

.footer-socials a svg {
    flex-shrink: 0;
}

.footer-socials a span {
    white-space: nowrap;
}

.footer-socials a:hover {
    color: var(--text-white);
    background: rgba(106, 226, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-cyan);
}

.footer-copy {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

.footer-thanks {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    max-width: 500px;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

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

    .footer-socials a {
        padding: 0.5rem 0.8rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 0;
    }

    .footer-logo {
        font-size: 1.3rem;
    }

    .footer-links li a,
    .footer-socials a {
        font-size: 0.9rem;
    }

    .footer-copy {
        font-size: 0.8rem;
    }
}
