.help-modal-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
}

.help-modal {
    width: min(800px, 100%);
    max-height: 85vh;
    overflow-y: auto;
    background: #fafafa;
    border-radius: 16px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25);
}

.help-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px 12px;
    border-bottom: 1px solid #e5e5e5;
}

.help-modal-header h2 {
    margin: 0;
    font-size: 1.6rem;
    color: #1f2937;
}

.help-modal-close {
    border: 0;
    background: transparent;
    color: #4b5563;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

.help-modal-body {
    padding: 20px 24px 24px;
    color: #1f2937;
    line-height: 1.65;
}

.help-modal-body > p {
    margin: 0 0 16px;
}

.help-modal-body > p:first-child {
    margin-bottom: 20px;
    color: #374151;
    font-size: 1.02rem;
}

.help-modal-body h3 {
    margin: 40px 0 10px;
    color: rgba( 71,119,60, .95 );
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.35;
}

.help-modal-body h3:first-of-type {
    margin-top: 0;
}

.help-modal-bubble {
    position: relative;
    padding: 18px 20px;
    border: 1px solid #dfe7df;
    border-radius: 18px 18px 18px 18px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}



body.help-modal-open {
    overflow: hidden;
}

@media screen and (max-width: 640px) {
    .help-modal-overlay {
        padding: 12px;
    }

    .help-modal-header,
    .help-modal-body {
        padding-left: 16px;
        padding-right: 16px;
    }

    .help-modal-bubble {
        margin-left: 10px;
        padding: 16px;
    }
}