/* Footer Styles */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid rgba(0, 245, 255, 0.2);
    margin-top: 4rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
    opacity: 0.6;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 3rem 0 2rem;
    gap: 2rem;
}

.footer-left {
    flex: 1;
}

.footer-logo {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.logo-bracket {
    color: var(--neon-cyan);
}

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

.footer-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

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

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--neon-cyan);
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--neon-cyan);
}

.footer-link:hover::after {
    width: 100%;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 1.5rem 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    gap: 1rem;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-family: 'JetBrains Mono', monospace;
}

.footer-built {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.footer-tech {
    display: flex;
    gap: 0.3rem;
    align-items: center;
}

.tech-indicator {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--neon-cyan);
    opacity: 0.6;
    animation: techPulse 2s ease-in-out infinite alternate;
}

.tech-indicator:nth-child(2) {
    animation-delay: 0.5s;
    background: var(--neon-green);
}

.tech-indicator:nth-child(3) {
    animation-delay: 1s;
    background: var(--neon-teal);
}

@keyframes techPulse {
    from {
        opacity: 0.3;
        transform: scale(1);
    }

    to {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Footer Mobile Responsive */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-right {
        justify-content: center;
    }

    .footer-links {
        justify-content: center;
    }

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