html {
    font-family: Inter, Arial, sans-serif;
}

body {
    margin: 0;
    padding: 0;
    font-family: inherit;
    background: #f8fafc;
    color: #0f172a;
}

:root {
    color-scheme: only light;
}

.app-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
    font-size: 13px;
    color: #6b7280;
    border-top: 1px solid #e5e7eb;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
}

.footer-left {
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer-left .version {
    opacity: 0.7;
}

.footer-right {
    display: flex;
    gap: 18px;
}

.footer-right a {
    color: #6b7280;
    text-decoration: none;
}

.footer-right a:hover {
    color: #111827;
}

@media (max-width: 768px) {
    .app-footer {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .footer-right {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }
}