.site-footer {
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: auto;
}

.site-footer span {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.ph-badge {
    display: inline-flex;
    align-items: center;
}

.footer-links a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.2s;
}

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

.footer-links .footer-api {
    color: #ccff00;
    font-weight: 600;
}

.footer-links .footer-api:hover {
    color: #d4ff33;
}

@media (max-width: 600px) {
    .site-footer {
        padding: 16px 24px;
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 16px;
    }
    .footer-right {
        flex-direction: column;
        gap: 10px;
    }
}
