.adamiro-help-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--primary-10);
    color: var(--teal);
    border-radius: 50%;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    margin-left: 10px;
    vertical-align: middle;
    transition: all 0.2s ease;
    border: 1px solid rgba(60, 77, 254, 0.2);
}

.adamiro-help-icon:hover {
    background: var(--teal);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(60, 77, 254, 0.3);
}

.adamiro-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
}

.adamiro-modal-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(5, 11, 23, 0.7);
    backdrop-filter: blur(6px);
}

.adamiro-modal-content.glassmorphism {
    position: relative;
    background: rgba(20, 31, 56, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(47, 184, 160, 0.18);
    padding: 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 550px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
    animation: adamiro-modal-pop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes adamiro-modal-pop {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(16px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.adamiro-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(241, 245, 249, 0.08);
    border: 1px solid rgba(241, 245, 249, 0.12);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    color: rgba(241, 245, 249, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    line-height: 1;
}

.adamiro-modal-close:hover {
    background: rgba(241, 245, 249, 0.14);
    color: #F1F5F9;
}

.adamiro-modal-body h3 {
    margin-top: 0;
    font-size: 22px;
    color: #F1F5F9;
    margin-bottom: 16px;
    font-weight: 600;
}

#adamiro-help-text {
    color: rgba(241, 245, 249, 0.82);
    line-height: 1.7;
    font-size: 15px;
}

#adamiro-help-text p {
    margin-bottom: 14px;
}
