.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 10px 12px 12px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(0, 0, 0, 0.2);
}

.site-footer-inner {
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 6px 12px;
}

.site-footer-left {
    white-space: nowrap;
}

.site-footer-right {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 10px;
    font-size: 11px;
}

.site-footer-social {
    display: flex;
    align-items: center;
    gap: 6px;
}

.site-footer-social-link {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.08);
    transition: all 0.2s ease;
}

.site-footer-social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.site-footer-inn {
    opacity: 0.9;
}

.site-footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
}

.site-footer-link:hover {
    border-bottom-color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 768px) {
    .site-footer {
        font-size: 12px;
    }
}


