:root {
    --accent: #4da6ff;
    --text-muted: #b3b3b3;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    background: transparent;
    font-family: Arial, Helvetica, sans-serif;
}

a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.site-footer {
    text-align: center;
    padding: 2rem;
    color: var(--text-muted);
    background-color: rgba(26, 26, 26, 0.5);
    backdrop-filter: blur(10px) saturate(150%);
    -webkit-backdrop-filter: blur(10px) saturate(150%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.9rem;
}

.site-footer p {
    margin: 0.4rem 0;
}

.site-footer .social-links a {
    margin: 0 0.4rem;
}
