/* ─── X99 Custom Footer ─── */

.main-footer {
    display: none !important;
}

.x99-footer {
    border-top: 1px solid rgba(255,255,255,0.04);
    background: rgba(12,12,16,0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.x99-footer-inner {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    position: relative;
}
.x99-footer-copy {
    white-space: nowrap;
    font-size: 12.5px;
    font-weight: 300;
    color: rgba(255,255,255,0.22);
    letter-spacing: 0.01em;
    flex-shrink: 0;
}
.x99-footer-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    font-size: 12.5px;
    font-weight: 300;
    color: rgba(255,255,255,0.22);
    letter-spacing: 0.01em;
    white-space: nowrap;
}
#x99MadeIn {
    cursor: default;
    transition: color 0.2s;
}
#x99MadeIn:hover {
    color: rgba(255,255,255,0.35);
}
.x99-footer-nyan {
    height: 32px;
    vertical-align: middle;
    margin-left: 8px;
    pointer-events: none;
    animation: x99NyanIn 0.3s ease forwards;
}
@keyframes x99NyanIn {
    from { opacity: 0; transform: translateX(-10px); }
    to { opacity: 1; transform: translateX(0); }
}
