/* Footer */
.footer {
    border-top: 1px solid #00ff88;
    padding: 12px 0;
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    font-size: 0.75rem;
}

.footer-links {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-link {
    color: #00ff88;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #00cc66;
}

.footer-separator {
    color: #00ff88;
    opacity: 0.6;
    margin: 0 5px;
}

