/* Footer Styles */
footer {
    background: var(--dark-bg);
    color: var(--text-color);
    padding: 2rem;
    border-top: 1px solid var(--light-bg);
}

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

.footer-links {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    text-align: left;
    width: 100%;
}

.footer-column {
    flex: 1;
    padding: 0 1rem;
}

.footer-column h4 {
    font-family: 'SCR-N Seven', 'Orbitron', monospace;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-column ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
    display: block;
}

.footer-column ul li a {
    color: var(--text-color);
    opacity: 0.7;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-column ul li a:hover {
    opacity: 1;
    color: var(--primary-color);
    transform: translateX(3px);
}

.copyright {
    text-align: center;
    opacity: 0.7;
    font-size: 0.9rem;
    padding-top: 1rem;
}

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