body:has(.site-footer) {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-footer {
    margin-top: auto;
    width: 100%;
    flex-shrink: 0;
    box-sizing: border-box;
    padding: 12px 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 14px;
}

.site-footer__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #c5fd39;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.2s ease;
}

.site-footer__link:hover {
    color: #a3e62b;
    transform: translateY(-1px);
}

.site-footer__github-icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    display: block;
}
