body { 
    background-color: #fafafa; 
    /* 전체 서체를 Pretendard로 변경 */
    font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}

.word-break-keep-all { 
    word-break: keep-all; 
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translate(-50%, -20px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}

.animate-fade-in-down { 
    animation: fadeInDown 0.3s ease-out forwards; 
}