#changelog-popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 99998;
    align-items: center;
    justify-content: center;
}
#changelog-popup-overlay.active {
    display: flex;
}

#changelog-popup {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    padding: 36px 40px 28px;
    max-width: 480px;
    width: calc(100% - 32px);
    position: relative;
    z-index: 99999;
    animation: clpop-in 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    text-align: center;
}

@keyframes clpop-in {
    from { opacity: 0; transform: scale(0.75) translateY(30px); }
    to   { opacity: 1; transform: scale(1)    translateY(0);    }
}

#changelog-popup .cl-popup-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #1a9e8f 0%, #0e7a6d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(26, 158, 143, 0.35);
}
#changelog-popup .cl-popup-icon i {
    color: #fff;
    font-size: 26px;
}

#changelog-popup h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 8px;
}

#changelog-popup .cl-popup-badge {
    display: inline-block;
    background: linear-gradient(135deg, #1a9e8f, #0e7a6d);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

#changelog-popup p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 22px;
}



#changelog-popup .cl-popup-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}
#changelog-popup .cl-popup-btn-primary {
    background: linear-gradient(135deg, #1a9e8f, #0e7a6d);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
#changelog-popup .cl-popup-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(26, 158, 143, 0.4);
    color: #fff;
    text-decoration: none;
}
#changelog-popup .cl-popup-btn-secondary {
    background: #f0f0f0;
    color: #555;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.15s;
}
#changelog-popup .cl-popup-btn-secondary:hover {
    background: #e0e0e0;
}

#changelog-popup-canvas-left,
#changelog-popup-canvas-right {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 99997;
}
#changelog-popup-canvas-left  { left: 0; }
#changelog-popup-canvas-right { right: 0; }
