body {
    font-family: '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;
    background-color: #F2F4F6;
    color: #191F28;
    -webkit-font-smoothing: antialiased;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.animate-in {
    animation: fadeIn 0.3s ease-out forwards;
}

.option-button.active {
    background-color: #3182F6;
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    transform: scale(1.02);
}

.weapon-chip {
    transition: all 0.2s ease-in-out;
}

.weapon-chip.active {
    background-color: #3182F6;
    color: white;
    border-color: #3182F6;
}

.farming-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.farming-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}