* {
    font-family: 'Noto Sans KR', sans-serif;
}

body {
    transition: background-color 0.3s ease, color 0.3s ease;
}

.no-theme-transition {
    transition: none !important;
}

/* 라이트 모드 */
[data-theme='light'] body {
    background-color: #f8f8f8;
}

/* 다크 모드 */
[data-theme='dark'] body {
    background-color: #191e24;
}

.discord-svg {
    margin-top: 1px;
    filter: brightness(0) invert(1);
}


.fade-in {
    opacity: 0;
    transform: translateY(90px);
    transition: all 1s ease-out;
    will-change: opacity, transform;
}

.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}
