.m-survey-popup__overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
}

.m-survey-popup {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 2rem 2.5rem;
    max-width: 420px;
    width: 90%;
    text-align: center;
}

.m-survey-popup__title {
    color: var(--accent);
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
}

.m-survey-popup__text {
    color: var(--text-muted);
    margin: 0 0 1.5rem;
    line-height: 1.5;
}

.m-survey-popup__actions {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}
