
@keyframes _ndcSlideUp {
    from { transform: translateY(60%); opacity: 0; }
    to   { transform: translateY(0);   opacity: 1; }
}
#_nodo-cd-overlay {
    position: fixed;
    inset: 0;
    z-index: 3200;
    background: rgba(10,10,25,.68);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
#_nodo-cd-panel {
    width: 100%;
    max-width: 520px;
    max-height: 85vh;
    overflow-y: auto;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -8px 40px rgba(0,0,0,.38);
    animation: _ndcSlideUp .28s ease;
    overscroll-behavior: contain;
}
@media (min-width: 600px) {
    #_nodo-cd-panel {
        border-radius: 16px;
        margin-bottom: 48px;
    }
    #_nodo-cd-overlay { align-items: center; }
}
