/* ── "Submit a Plugin" CTA section ─────────────────────────────────────── */

.cm-submit-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    margin-top: 80px;
    padding: 48px 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 2px solid #e0009d;
    background: rgba(255, 255, 255, 0.03);
}

.cm-submit-cta__heading {
    margin: 0;
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    line-height: 1.3 !important;
}

.cm-submit-cta .cm-submit-btn {
    margin-top: 6px;
}

/* ── Submit CTA button ──────────────────────────────────────────────────── */

.cm-submit-btn {
    display: inline-block;
    background: #e0009d;
    color: #06062c;
    border: 1px solid #e0009d;
    border-radius: 0;
    padding: 10px 22px;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.5s ease;
    box-shadow: 0 0 0 0 rgba(224, 0, 157, 0.5);
}

.cm-submit-btn:hover {
    background: #b90082;
    border-color: #b90082;
    box-shadow: 0 0 2em 0 rgba(44, 44, 129, 0.8);
}

/* ── Submit modal ───────────────────────────────────────────────────────── */

.cm-submit-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cm-submit-modal[hidden] {
    display: none;
}

.cm-submit-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
}

.cm-submit-modal__box {
    position: relative;
    z-index: 1;
    background: #06062c;
    border-top: 2px solid #e0009d;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    width: 100%;
    max-width: 560px;
    padding: 32px;
    max-height: 90vh;
    overflow-y: auto;
    color: #ffffff;
}

.cm-submit-modal__close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    transition: color 0.15s ease;
}

.cm-submit-modal__close:hover {
    color: #ffffff;
}

.cm-submit-modal__title {
    margin: 0 0 8px;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    padding-right: 24px;
}

.cm-submit-modal__intro {
    margin: 0 0 24px;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}


