body {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    font-weight: 350;
}

.site-footer {
    background: #fafafa;
    border-top: 1px solid rgba(0,0,0,0.04);
    padding: 3rem 2rem 2.5rem;
    margin-top: 0;
    transition: background 0.2s, border-color 0.2s;
}

body.dark-mode .site-footer {
    background: #0f0f0f;
    border-color: #2a2a2a;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.dim-section {
    display: flex;
    justify-content: center;
}

.dim-badge {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
    transition: background-color 0.15s ease;
}

body.dark-mode .dim-badge {
    background-color: #1a1a1a;
    border-color: #3f3f46;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.dim-badge:hover {
    background-color: #f5f5f5;
    border-color: #d1d5db;
}

body.dark-mode .dim-badge:hover {
    background-color: #262626;
    border-color: #52525b;
}

.dim-badge::before {
    display: none;
}

.dim-logo {
    width: 32px;
    height: 32px;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #18181b;
}

body.dark-mode .dim-logo {
    color: #e4e4e7;
}

.dim-info {
    text-align: left;
    margin: 0 16px;
}

.dim-title {
    color: #18181b;
    font-size: 15px;
    font-weight: 500;
    display: block;
    letter-spacing: -0.2px;
}

body.dark-mode .dim-title {
    color: #e4e4e7;
}

.dim-title .version {
    color: #6b7280;
    font-weight: 450;
    font-style: normal;
}

body.dark-mode .dim-title .version {
    color: #9ca3af;
}

.dim-status {
    color: #64748b;
    font-size: 12px;
    font-weight: 450;
    display: flex;
    align-items: center;
    opacity: 0.9;
}

body.dark-mode .dim-status {
    color: #a1a1aa;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    font-size: 1rem;
}

.footer-links a {
    color: #52525b;
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 450;
}

.footer-links a:hover {
    color: #111111;
}

body.dark-mode .footer-links a {
    color: #a1a1aa;
}

body.dark-mode .footer-links a:hover {
    color: #ffffff;
}

.footer-copyright {
    color: #94a3b8;
    font-size: 0.9rem;
    text-align: center;
    font-weight: 400;
}

body.dark-mode .footer-copyright {
    color: #71717a;
}

.footer-divider {
    width: 80px;
    height: 1px;
    background: #e2e8f0;
    margin: 0.5rem 0;
}

body.dark-mode .footer-divider {
    background: #3f3f46;
}