flowchart TD
%%{init: {"theme":"default", "flowchart":{"htmlLabels": true}, "securityLevel":"loose"}}%%
lotto_page
Pay["복권결제"]
Auto["자동 생성"]
Passive["수동 선택"]
Semi_auto["반자동 생성"]
pay_fail(["결제실패"])
lotto_page --- Auto & Passive & Semi_auto --> Pay --- pay_fail & no_money(["금액 부족"]) & pay_success
no_money(["금액 부족"]) --> charging
pay_success --> MP_1
MP_1 --> lotto_check
charging["충전페이지"]
MP_1[]
pay_success(["구매 성공"])
lotto_page["
복권 구매 페이지
"]
lotto_check["
복권 당첨 확인
"]
%% 스타일 정의
classDef check fill:#C8E6C9,stroke:#2E7D32,stroke-width:1px,color:#000;
%% 여러 노드에 일괄 적용
class pay_fail,no_money,pay_success,Auto,Passive,Semi_auto check;